I would like to change my directories to 755 and files to 644 recursively and I think I need to run a command such as..
find * -type d -print0 | xargs -0 chmod 0755 # for directories
find . -type f -print0 | xargs -0 chmod 0644 # for files
or maybe
chmod -R u+rwX,go+rX,go-w /path
Anyway, I am not sure how to go about running this? I guess I could run filemanager in cpanel and select files/directories and hope I get them all, just thought this would be less prone to human error. Would I need to "telnet" in or something?
find * -type d -print0 | xargs -0 chmod 0755 # for directories
find . -type f -print0 | xargs -0 chmod 0644 # for files
or maybe
chmod -R u+rwX,go+rX,go-w /path
Anyway, I am not sure how to go about running this? I guess I could run filemanager in cpanel and select files/directories and hope I get them all, just thought this would be less prone to human error. Would I need to "telnet" in or something?