This is a discussion on Re: Question about open() - modperl ; On Feb 6, 2008 10:06 PM, Mag Gam wrote: > Currently, when I open a file I have to use the > absolute path (/var/www/appname/top.inc). Is it possible for me to use just > 'top.inc'? You can either use DocumentRoot ...
On Feb 6, 2008 10:06 PM, Mag Gamwrote:
> Currently, when I open a file I have to use the
> absolute path (/var/www/appname/top.inc). Is it possible for me to use just
> 'top.inc'?
You can either use DocumentRoot
(http://perl.apache.org/docs/2.0/api/...document_root_)
or use ModPerl::RegistryPreFork which will chdir to the directory your
script is in just like a normal CGI script does. That would let you
use files relative to the script.
- Perrin