WordPress files & folders permissions

To set up the correct WordPress files & folders permissions you need to run these two commands in your terminal/command prompt in the root folder for your WP project:

find . -type d -exec chmod 755 {} \;  # Change directory permissions rwxr-xr-x
find . -type f -exec chmod 644 {} \;  # Change file permissions rw-r–r–

Comments

Leave a Reply