You can reset file permissions with the line:
find . -type f -exec chmod 644 {}; |
and folder permissions with:
find . -type d -exec chmod 755 {}; |
You can reset file permissions with the line:
find . -type f -exec chmod 644 {}; |
and folder permissions with:
find . -type d -exec chmod 755 {}; |