mod_perl mod_jk

2003-01-12 Thread MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1)
Hi, I'm trying to use mod_perl (1.99-07) with mod_jk (1.2) and Apache (2.0.43). (and cannot move to 1.99-08 immediately) When I try starting apache with both mod_perl mod_jk enabled, I'm seeing the following error : $ sudo bin/apachectl start Syntax error on line 8 of

Configuring Apache witch Perl

2003-01-12 Thread Marek Turczyniak
Hi I try adding name virtual host from LDAP. here is code: ... foreach $entry ($mesg-all_entries) { my %config; $config{ 'servername' } = $entry-get_value('servername'); $config{ 'documentroot' } = $entry-get_value('documentroot'); push @mytab,\%config; }

Re: Configuring Apache witch Perl

2003-01-12 Thread Stas Bekman
Marek Turczyniak wrote: Hi I try adding name virtual host from LDAP. here is code: ... foreach $entry ($mesg-all_entries) { my %config; $config{ 'servername' } = $entry-get_value('servername'); $config{ 'documentroot' } = $entry-get_value('documentroot'); push

Re: mod_perl mod_jk

2003-01-12 Thread Stas Bekman
MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1) wrote: Hi, I'm trying to use mod_perl (1.99-07) with mod_jk (1.2) and Apache (2.0.43). (and cannot move to 1.99-08 immediately) When I try starting apache with both mod_perl mod_jk enabled, I'm seeing the following error : $ sudo bin/apachectl start

HEAD requests in Apache 2.0

2003-01-12 Thread Stas Bekman
Here is something new in Apache 2.0 that's worth your attention. Apache 2.0 automatically discards the response body for HEAD requests, so there is no more need to add logic to handle HEAD request unless you want to save the processing cycles. This was done in order to ensure that the response

Re: Unregister streamed output filters

2003-01-12 Thread Esteban Fernandez Stafford
On Sat, 11 Jan 2003, Stas Bekman wrote: Esteban Fernandez Stafford wrote: Hello all, is there a way to unregister a streamed filter? I have seen this in many (all?) apache (C programmed) filters; they are able of declining the filtering of a certain stream, for example, when they do

RE: mod_perl mod_jk

2003-01-12 Thread MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1)
I think I found the problem - it was because of a LoadModule directive that was defined in 1.99-07, but renamed to PerlLoadModule in 1.99-08. The reason why I ran into the problem of unable to load mod_jk, was because I was trying to load mod_jk after the mod_perl is loaded. What was happening is