RE: Strange behaviour of chdir in mapped drives

2003-06-30 Thread Tim Johnson
Anthony'; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: Strange behaviour of chdir in mapped drives That's exactly right. You will run into the same problem if you try running your scripts in the scheduler. -Original Message- From: Akens, Anthony [mailto:[EMAIL PROTECTED] S

RE: Strange behaviour of chdir in mapped drives

2003-06-30 Thread Akens, Anthony
EMAIL PROTECTED] Sent: Monday, June 30, 2003 9:47 AM To: 'Tim Johnson'; Akens, Anthony; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: Strange behaviour of chdir in mapped drives On the last point, does this happen even when using the Task Scheduler utility and running the script

RE: Strange behaviour of chdir in mapped drives

2003-06-30 Thread Smith Jeff D
D]; [EMAIL PROTECTED] Subject: RE: Strange behaviour of chdir in mapped drives Is the drive you're trying to access actually mapped for the user you're running the cgi-bin as? Remember, in windows drive mappings are a per-user thing, so while yes it will work when you run it at a co

RE: Strange behaviour of chdir in mapped drives

2003-06-30 Thread Tim Johnson
o use the unc path. \\server\share Tony -Original Message- From: beginner beginner [mailto:[EMAIL PROTECTED] Sent: Monday, June 30, 2003 8:57 AM To: [EMAIL PROTECTED] Subject: Re: Strange behaviour of chdir in mapped drives Hi, I have tried it through command line It is working When i u

RE: Strange behaviour of chdir in mapped drives

2003-06-30 Thread Akens, Anthony
ver\share Tony -Original Message- From: beginner beginner [mailto:[EMAIL PROTECTED] Sent: Monday, June 30, 2003 8:57 AM To: [EMAIL PROTECTED] Subject: Re: Strange behaviour of chdir in mapped drives Hi, I have tried it through command line It is working When i used the same code and pu

Re: Strange behaviour of chdir in mapped drives

2003-06-30 Thread Rob Dixon
Beginner Beginner wrote: > Hi, >I have tried it through command line It is working When i used the same code and > put the file in cgi-bin and try to run > through explorer it didn't worked > > $basedir= "I:/tech/work/web/Documents"; > chdir($basedir) or die $!; > $test=`dir /s /b *.*`; > pri

Re: Strange behaviour of chdir in mapped drives

2003-06-30 Thread beginner beginner
Hi, I have tried it through command line It is working When i used the same code and put the file in cgi-bin and try to run through explorer it didn't worked $basedir= "I:/tech/work/web/Documents"; chdir($basedir) or die $!; $test=`dir /s /b *.*`; print $test; If I simply replace I: with D:

Re: Strange behaviour of chdir in mapped drives

2003-06-30 Thread Jenda Krynicky
From: "Rob Dixon" <[EMAIL PROTECTED]> > Beginner Beginner wrote: > > Hi All, > > I wanted to search for *.html file on Server which I can > > mount in my Windows XP: > > e.g. I drive mapped to tech\work\web\documents. > > as I:\tech\work\web\documents > > now i try to go inside this

Re: Strange behaviour of chdir in mapped drives

2003-06-30 Thread Rob Dixon
Beginner Beginner wrote: > Hi All, > I wanted to search for *.html file on Server which I can mount in my Windows > XP: > e.g. I drive mapped to tech\work\web\documents. > as I:\tech\work\web\documents > now i try to go inside this directory > as > $basedir="I:/tech/work/web/documents"; >