Set Permissions to 600 for all WordPress wp-config.php files
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
# where /usr/home/username/public_html contains all your wordpress installs | |
# to run for the current directory and lower: | |
# find . -name wp-config.php | xargs chmod 600 | |
find /usr/home/username/public_html -name wp-config.php | xargs chmod 600 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment