Skip to content

Instantly share code, notes, and snippets.

@cdolek
Created March 10, 2015 22:59
Show Gist options
  • Save cdolek/f8952920e53b3cf6ac57 to your computer and use it in GitHub Desktop.
Save cdolek/f8952920e53b3cf6ac57 to your computer and use it in GitHub Desktop.
wordpress set proper file and folder permissions
# 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