chmod recursive folders only
Drupal default files and folders permission.
Folders:
find . -type d -exec chmod 755 -R '{}' \;
Files:
find . -type f -exec chmod 644 -R '{}' \;
Drupal default files and folders permission.
Folders:
find . -type d -exec chmod 755 -R '{}' \;
Files:
find . -type f -exec chmod 644 -R '{}' \;
Comments
29.12.2010 - 17:37
Directories with spaces in name
This will fail if a directory has a space in name.
Fix:
find . -type d -exec chmod 755 -R '{}' \;
29.12.2010 - 20:48
Updated!
Thanks, post is updated! :)
Post new comment