Ive realised when installing scripts changing the CHMOD can be kind of time consuming, is there a way that I can change serveral folders CHMOD setting at one time? thanks . Pr0x.
I use ace ftp http://software.visicommedia.com/en/products/aceftpfreeware/ with that you can highlight several files and apply the changes to them in one go. hope that may help.
If you have ssh access it is easy to run chmod command for all files at once. Simple example: you have the folder "test" which contains files you want to change permissions for. you need just to run "chmod -R 644 ./test" on this folder. All files and folder under test will be set to 644 permission. You can run more complicated command to set needed permissions for a certain type of files of folders only by using "find and grep" commands. Hope this helps