View Single Post
Old July 6th, 2006, 11:29 PM   #5 (permalink)
Zachariah
Registered User
Verified Customer
 
Zachariah's Avatar
 
Join Date: Nov 2005
Location: Canoga Park, CA
Posts: 3,243
Send a message via ICQ to Zachariah Send a message via AIM to Zachariah Send a message via MSN to Zachariah Send a message via Skype™ to Zachariah
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.
Zachariah is offline   Reply With Quote