Created
July 12, 2017 16:32
Use wp-config.php to CHMOD file and folders
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define( ‘FS_CHMOD_DIR’, ( 0755 & ~ umask() ) ); | |
define( ‘FS_CHMOD_FILE’, ( 0644 & ~ umask() ) ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice script. Thanks for sharing. :-)
I would like to share a library I have coded with the same goal.
Example of usage:
Full documentation: https://github.com/MathiasReker/php-chmod