1 min read

[Solution] Changing File Permissions

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

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 {} \;


Wordpress Jan 3, 2019