What WordPress file permissions should I use?

Last modified: November 10, 2025

Ask Your Favorite AI

Copy the link to a markdown format of this article for ChatGPT, Claude, Gemini, or your favorite AI.

The file permissions for core WordPress files and directories are managed for you. They cannot be changed.

As your site’s wp-content folder is the only folder that has files consistently being modified, the contents of wp-content may need file permission changes, especially if you have moved files/folders to Pressable from a previous host.

Directories should have permission of 755, or rwxr-xr-x. Files should have permission of 644, or rw-r--r--. You can update these by accessing files via SFTP.

Via SSH, permissions can be changed with these two commands:

find * -type d -exec chmod 755 {} +

find * -type f -exec chmod 644 {} +

If you feel that you are having file permission issues, please contact Customer Success.