Created
March 10, 2015 22:59
-
-
Save cdolek/f8952920e53b3cf6ac57 to your computer and use it in GitHub Desktop.
wordpress set proper file and folder permissions
This file contains hidden or 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 all files forward this directory and set 644 | |
sudo find . -type f -exec chmod 644 {} + | |
# find all directories forward and set 755 | |
sudo find . -type d -exec chmod 755 {} + |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment