Re: Website organization for secure ASP, perl scriptig

2004-01-11 Thread Josh Chamas
Ted Byers wrote: OK, It looks like I have Apache setup and working correctly, including Perl, using mod-perl, and ASP. Now, I want to setup my website so that the scripts and the data they work on (that isn't taken from either a form or a database) live in directories outside htdocs (just as cgi-b

RE: Website organization for secure ASP, perl scriptig

2004-01-07 Thread Robert Friberg
Hi, Personally, I use absolute paths. I usually have a variable set to a base directory for easier maintainance. If your curious about what the current working directory actually is you can try this in a script: print "Working directory is " . `cmd /c cd`; Notice the backticks. The user