Ezilon.com - Target Your Audience, be Seen in Your Region

Need some help (pretty serious prob)

You are viewing this site as a guest. Join our community to get your questions answered and share knowledge. Active members may advertise and ask for a website critique.

They have: 568 posts

Joined: Nov 1999

Has anyone ever used a program called FileMan from http://www.gossamer-threads.com ? Well, this program lets you create files in a directory that isn't chmoded 777.

I need to know a way to chmod that directory so I can create the files, i'm lost on this.

They have: 193 posts

Joined: Feb 2000

Try:

chmod(0777, $dir);

'

Also, if that dosn't work, modify the script where it makes the directory (mkdir) to be something like the following:

mkdir $dir, 0777;

'

Hope that helped.

Richard
richjb::420

richard@brevig.com

Everyone here has a website. It's just that not all are worth posting (Mine! Smiling).

They have: 568 posts

Joined: Nov 1999

thanks, it didn't work on my old server. must be the new one. Wink