Recursive permissions

WebFire

Perch
I have a client on a Unix account. I need to set recursive permissions on a folder that contains many folders and files. To do this by hand would take awhile.

What is the best way to accomplish this?
 
Can anyone help? I am sure I am not the first person who has ever desired this? Are we given shell access to our accounts?
 
SmartFTP has a good permissions manager for making such changes, but you can also requestthsi via ticket.
 
I use SmartFTP. I don't see the option for recursive permissions. Can you point me in the right direction?
 
There's several things you can do by executing shell commands in PHP or the like. Unfortunately PHP scripts run as httpd and you can't get a program running as your own user ID because httpd isn't in the same group (otherwise you could execute a program with setuid flag set).
Therefore the script method won't work in this case. You can use it to create symlinks though, for example ;)
 
Back
Top