View Single Post
Old 10-23-2016, 10:05 AM  
anexsia
Confirmed User
 
anexsia's Avatar
 
Industry Role:
Join Date: May 2010
Posts: 5,735
Wordpress folders should be 755 and files should be 644.

https://codex.wordpress.org/Changing_File_Permissions
https://codex.wordpress.org/Hardening_WordPress

On command-line you can use:

find /path/to/your/wordpress/install/ -type d -exec chmod 755 {} \;

find /path/to/your/wordpress/install/ -type f -exec chmod 644 {} \;
anexsia is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote