PsychoSpunk has asked for the wisdom of the Perl Monks concerning the following question:
After reading the relevant portions of the Eagle, I have become disappointed with the fact that it would appear that the path_info method is not working as most people would presume. Maybe I'm just not looking at it correctly.
From my httpd.conf:
Now one might think that if I made a request to http://192.168.0.1:8080/index.html that the $r->path_info would return "/index.html", and that's what one would truly expect. Only, it's not. Here, for all intents and purposes, is what my handler setup is like.<VirtualHost 192.168.0.1:8080> DocumentRoot "/usr/local/apache/sites/test/htdocs" PerlRequire conf/startup.pl PerlFreshRestart On PerlModule Apache::TTProc <Directory /> SetHandler perl-script PerlHandler Apache::TTProc </Directory> ErrorLog logs/test-error.log </VirtualHost>
ALL HAIL BRAK!!!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Apache/mod_perl woes...
by btrott (Parson) on Jan 31, 2001 at 05:01 UTC |