[Solution] Changing File Permissions

Log in as root and place yourself at the root of your site directory

# Add group www-data 
chown www-data:www-data -R wp-content/uploads/

# set permission 755
find . -type d -exec chmod 755 {} \;

# set permission 644
find . -type f -exec chmod 644 {} \;


Leave a Reply

Your email address will not be published. Required fields are marked *