|
Download a program called SmartFTP. It has an option for CHMOD and recursive directories.
Or: CHMOD -R 777 /path/to/your/gallery/files
Syntax of the chmod command is the following:
prompt> chmod [options] permissions file[s]
The word "chmod" should be entered all in lowercase letters. Options can be:
* -R, set permissions recursively
* -f, "forced" or silent mode
* -v, "verbose", show information for every file processed
* -c, show information only if changes are made to the file
Permissions could be one of the following:
* Octal numeric format, with a leading zero like "0644"
* Octal numeric format, without a leading zero like "644"
* Text form like "a+r", "u=rwx" or "o-w", you can use several comma separated text form permissions
File[s] can be either
* relative path to the file like "file.pl"
* absolute path to the file like "/var/spool/mail/paul"
* several space separated files like "file.pl /var/spool/mail/paul"
* file name mask like "*.html" or "*"
Last edited by Zachariah; July 6th, 2006 at 11:34 PM.
|