Return to Snippet

Revision: 52272
at October 18, 2011 13:39 by klovera


Initial Code
find . -type f -exec chmod 644 {} \;
find . -type d -exec chmod 755 {} \;

Initial URL


Initial Description
When modifying file permissions it is sometimes necessary to go back to the drawing board and set back to the default permissions. The following command can be used via ssh and takes a couple seconds vs trying to do this via ftp file by file (which can take a very long time depending on the size of your website). Change to the directory you want changed, then run the following. It will set permission for all files to 644 and all directories to 755. This works for pretty much any Linux server.

Initial Title
Restore file & folder default permissions

Initial Tags


Initial Language
Bash