gerard uolaquetalestem wrote:
(I have sent this mail from another address and it has not be received, so i re-send again)

Once i have installed the last windows version of modperl2, i try to transcript some
apache code of my httpd.conf into perl sections.

I have this block in my httpd.conf (i post two times)

-----------------------------------
<Location ~ ".*/log$">
[...]
$Location{'.*log$'} = {

You've lost '~' here. Use


$LocationMatch{'.*log$'} = {

instead. I'm not sure whether:

$Location{'~ .*log$'} = {

will work, give it a try.

and what i try now is this:
PerlModule Apache2
PerlModule Apache::PerlSections #(necessary? i've tried without)

You shouldn't need to. It loads automatically. Why do you get an error of not being able to find Apache::PerlSections?


PerlModule Apache::Status #(necessary? i've tried without)

Only if you need it. Please read the module manpage.


__________________________________________________________________
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


-- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html



Reply via email to