Question

Wordpress Multisite using block-storage for /uploads

I have my Wordpress multisite installed in /var/www/example.com/u/ I created a block-storage called storage and it is mounted under /mnt/storage/, this contains a folder called /uploads. In my Wordpress wp-config.php file I have this define('UPLOADS', '../../../../mnt/storage/uploads'); Which means the new upload folder is /mnt/storage/uploads

The owner is www-data:www-data and permissions is 0755 for /storage

The problem is that all my sites uploaded images and videos are broken. I also tried to upload a new image on one of the sites, and I can see it being uploaded under sites and the correct site id. But the image is not shown in Wordpress, neither in the media library or when I attach it to the site. So I cannot view the image at all.

Isn’t it enough to change this setting in wp-config.php? Do I have to do anything else to make it work?


Submit an answer


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Bobby Iliev
Site Moderator
Site Moderator badge
October 4, 2019
Accepted Answer

Hello,

I would recommend first copying your current uploads folder to your new location:

cp -r /var/www/example.com/u/wp-content/uploads/* /mnt/storage/uploads

That way you would make sure that your existing images are also present in your new uploads directory.

Also, I would suggest keeping your new uploads folder within your document root. So either mount the block storage somehere in: /var/www/example.com/u/ or create a symlink for /mnt/storage/uploads to /var/www/example.com/u/uploads for example.

Here’s an example on how to create the symlink:

ln -s /mnt/storage/uploads /var/www/example.com/u/uploads

Then update the UPLOAD path in your wp-config file to /var/www/example.com/u/uploads. This way your images would be available via http.

Let me know how it goes. Regards, Bobby

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel