Correct permission for wp directory-WordPress admin

What is the correct permission to assign to WordPress wp-admin directory? 644 or 755?

Author: Gustavo Mesquita, 2016-10-10

1 answers

By default Wordpress assigns the permission 755 and in its documentation the recommendation is that you do not need to change the settings it assigns as default.

What You need to worry about is that you should leave the default 644 to the wp-config.php or if you prefer a more guaranteed security you can leave in the 600 (test to see if it will not give any problem in its installation).

Also leave 644 for the .htacess or 604 (some plugins may need at least 644.

Another important point is not to leave permissions 777 as it leaves fully writable, where it can be a port for hackers and malicious files.

Check out the official documentation:

- changing file permissions

- shielding or WordPress

 1
Author: Wendell, 2016-10-10 12:17:34