By abderbij
i can’t upload images in wordpress after updating theme i can upload images on wordpress only when i give access to the whole document root. sudo chown -R www-data /var/www/html with the older theme it works fine. i already had this issue and i fix by
sudo chmod g+w /var/www/html/wp-content sudo chmod -R g+w /var/www/html/wp-content/themes sudo chmod -R g+w /var/www/html/wp-content/plugins sudo chmod -R g+w /var/www/html/wp-content/uploads
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 @abderbij
You’re chmod’ing with group rights, but you haven’t set the group with chown.
Run this to set user and group recursively on the web directory:
sudo chown -R www-data:www-data /var/www/html
yes exactly , please let me know how to make uploads dir owned by apache . thanks for your time!
i was updating wp just like what is mentioned here : https://www.digitalocean.com/community/tutorials/how-to-install-wordpress-with-lamp-on-ubuntu-16-04
When an update becomes available, log back into your server as your sudo user. Temporarily give the web server process access to the whole document root:
sudo chown -R www-data /var/www/html Now, go back the WordPress administration panel and apply the update.
When you are finished, lock the permissions down again for security:
sudo chown -R sammy /var/www/html This should only be necessary when applying upgrades to WordPress itself.
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.