Need some help (pretty serious prob)

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

[email protected]

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

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.