in reply to Files on a Win2000 server
One brute-force way of determining what is there is to upload a test CGI that does
The will tell you where the script thinks it is when executing, and what else is there. You may find that you need to either chdir() or use an absolute path to open data files that reside elsewhere.use Cwd; print "Content-type: text/plain\n\n"; print getcwd(), "\n\n"; opendir(DIR, ".") or die ".: $!"; print join("\n", readdir(DIR)), "\n"; closedir(DIR);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Files on a Win2000 server
by Anonymous Monk on Feb 25, 2002 at 02:14 UTC |