Gossamer Forum
Quote Reply
chmod
Is it possible to change the chmod of several directories at once on a server? it would be too big task to do it manually.

Unix running WHM & CPanel.

Thanks
Quote Reply
Re: [Alba] chmod In reply to
Best bet may be from command line via SSH (Secure Shell). The following (albeit untested) should work:

chmod 755 `find -d -print`

- change 755 to desired permission value
- chmods only directory and nested subdirectories in current directory (not files)

----
Cheers,

Dan
Founder and CEO

LionsGate Creative
GoodPassRobot
Magelln
Quote Reply
Re: [dan] chmod In reply to
Thanks, I'll try it once I find out how to get shell access to my server.