As mentioned before A-T doesn't handle properly absolute Include paths, 
consider:

httpd.conf
----------
...
Include "/home/httpd/2.0/perl/tutorial.conf"

% t/TEST -conf
setting ulimit to allow core files
ulimit -c unlimited; t/TEST -conf
configuration file /home/stas/httpd/prefork/"/home/httpd/2.0/perl/tutorial.conf" does not exist
cleaning out current configuration
reconfiguration done


besides the fact that /home/httpd/2.0/perl/tutorial.conf does exist, the code is not aware that optional quotes can be used when it tries to concat it to the ServerRoot dir. so we probably need to do:

 $path =~ s/^\s*["']?|["']?\s*$//g;

__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com



Reply via email to