Is their an easy way in CPanel to set permisions for all of the files in a folder at once. I tried setting the folder but that doesn't affect the individual files. There are several hundred .txt files so it will take a long time one by one. I've always previously been on Windows servers so I am still adjusting. Cheers
with ssh... chmod -R 664 folder/ -R is recursive meaning it will follow through folders If want everything inside a directory and all subs you can use chmod -R 664 * The asterisk is ALL. chmod -R 644 *.php This will chmod all .php files. Also 664 is just a chmod example of course you may want 775 or 777 or whatnot. Make sure all folders are at least 755 or else apache can't open them. As for Cpanel...not that I am aware of.
Blarg!!!! It's an easy way to kill a server. I did chmod -R 666 / and my server crashed! I was in a site directory and I think it did the whole server, and then it had a kernal attack.