Last active
November 20, 2018 17:50
-
-
Save dougkeeling/e5f50dc7a6aec97a6c623ac844bf4f8b to your computer and use it in GitHub Desktop.
[Set default WP file permissions] Run commands within the root Wordpress folder. #wordpress
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
sudo find . -type f -exec chmod 664 {} + | |
sudo find . -type d -exec chmod 775 {} + | |
sudo chmod 660 wp-config.php |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment