By jockebq
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?
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!
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
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.