Just a quick reminder on how to change file and folder permissions in ssh. These settings are suitable for most sites.
For directions:
find /dir_name -type d -exec chmod 755 {} \;
For files:
find /dir_name -type f -exec chmod 644 {} \;
Just a quick reminder on how to change file and folder permissions in ssh. These settings are suitable for most sites.
For directions:
find /dir_name -type d -exec chmod 755 {} \;
For files:
find /dir_name -type f -exec chmod 644 {} \;
Leave a Reply