Skip to content

Instantly share code, notes, and snippets.

@shiftb
Created March 27, 2012 17:07
Show Gist options
  • Save shiftb/2218016 to your computer and use it in GitHub Desktop.
Save shiftb/2218016 to your computer and use it in GitHub Desktop.
Securing Wordpress file permissions
find /path/to/wordpress/ -type d -exec chmod 755 {} \;
find /path/to/wordpress/ -type f -exec chmod 644 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment