RE: [PHP] exec / mkdir question

2002-08-12 Thread vic
riginal Message- From: Simon Ritchie [mailto:[EMAIL PROTECTED]] Sent: Monday, August 12, 2002 2:50 PM To: [EMAIL PROTECTED] Subject: RE: [PHP] exec / mkdir question > > i'm using the following code to create a directory :- > > > > $temp = exec("mkdir $path"); &

RE: [PHP] exec / mkdir question

2002-08-12 Thread Brian V Bonini
Just curious, any reason you don't use the mkdir function/ mkdir ("/path/to/my/dir", 0700); -Brian > -Original Message- > From: Simon Ritchie [mailto:[EMAIL PROTECTED]] > Sent: Monday, August 12, 2002 2:50 PM > To: [EMAIL PROTECTED] > Subject: R

RE: [PHP] exec / mkdir question

2002-08-12 Thread Simon Ritchie
> > i'm using the following code to create a directory :- > > > > $temp = exec("mkdir $path"); > > > > it doesn't work... > > > > i've validated the $path var which is correct. i suspect it is a > > permissions issue. > > > > what should i look for to resolve this? > > Try using the mkdir functi

RE: [PHP] exec / mkdir question

2002-08-12 Thread Daniel Kushner
t: Monday, August 12, 2002 11:29 AM > To: [EMAIL PROTECTED] > Subject: [PHP] exec / mkdir question > > > i'm using the following code to create a directory :- > > $temp = exec("mkdir $path"); > > it doesn't work... > > i've validated the

[PHP] exec / mkdir question

2002-08-12 Thread Javier Montserat
i'm using the following code to create a directory :- $temp = exec("mkdir $path"); it doesn't work... i've validated the $path var which is correct. i suspect it is a permissions issue. what should i look for to resolve this? thanks, javier __