Dear, friends.
I am using WordPress on Ubuntu 18.04 via DigitalOcean Apps Marketplace. PHP7.4 + Apache2 .
While tried to upload an image via WordPress media library, i have an error : “The uploaded file could not be moved to wp-content/uploads/2020/05”
I have browse to some links and i tried this :
[https://devanswers.co/wordpress-upload-problem-uploaded-file-not-moved-to-wp-content-uploads/]
i typed ls -ld /var/www/html/wp-content/uploads/
And the result is drwxr-xr-x 5 www-data www-data 4096 Feb 11 04:13 /var/www/html/wp-content/uploads/
I need your help to fix this issue. Thank you.
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!
Hi @Technosatmedia,
This error is usually generated to invalid ownership or permissions. Most probably it’s permissions. To fix that, I’ll recommend running the following commands
find /path/to/website/wp-content -type f -exec chmod 644 {} \;
The above command will change every file’s permission to 644 which are the default. The next command will do the same for folders but with 755 permissions
find /path/to/website/wp-content -type d -exec chmod 755 {} \;
Lastly, to fix the ownership, run the following command in your droplet
chown -R www-data:www-data /path/to/website/wp-content
You should be able to upload files now without a problem.
Regards, KDSys
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.