Problems with Perl sections.

2000-07-01 Thread Michael J Schout
I'm having some issues with Perl sections. Basically what I have is a setup like this: httpd.conf: Perl my %handlers = ( '/foo' = { HANDLER = 'GKG::Foo', FILTER = 1 }, '/bar/foo' = { HANDLER = 'GKG::FooBar' } ); for my $i (keys %handlers) { my %conf =

Re: Problems with Perl sections.

2000-07-01 Thread Michael J Schout
Ok I think I might have figured this one out. If I treat the keys of %Location as regexps I sseem to get the desired results :). e.g.: '^/foo$', '^/bar/foo$' Maybe this shold be documented in the guide better? Mike

Two problems with Perl sections...

2000-05-03 Thread Robert S. Thau
Hi. I'm having two problems with Perl sections --- one resulting in a server coredump, and the other just odd. My test configuration is Apache/1.3.12 and mod_perl_1.23 built from distributed sources with: perl Makefile.PL DO_HTTPD=1 USE_APACI=1 EVERYTHING=1 PERL_TRACE=1 APACHE_PREFIX=/opt