Created
January 22, 2017 10:31
-
-
Save Tusko/9d78f87bb6129fb7e347ba6365646934 to your computer and use it in GitHub Desktop.
Wordpress permissions / Terminal commands
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
find . -type f -exec chmod 644 {} + | |
find . -type d -exec chmod 755 {} + | |
#fix for wp-config.php and index.php | |
find . -name "wp-config.php" -exec chmod 444 {} + |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment