Re: 'make test' fails to start server.

2004-02-01 Thread konsu
thanks for the quick response. > Great. Not mp2, but Apache-Test (which is included in the mp2 distro). So the > patch does solve the problem? i did not try to apply the patch (i do not know of any tool to do it), i changed the files manually to output a valid "Listen" directive. here is the out

Re: 'make test' fails to start server.

2004-02-01 Thread Stas Bekman
konsu wrote: hello, the cause of the problem was the "Listen" directive in autogenerated httpd.conf that is incompatible with IPv6. the Apache-Test/ToDo file mentions this problem and there is a patch available. but the fix is not yet in the mod_perl2 distribution apparently... Great. Not mp2, but

Re: libwww-perl & mod-perl

2004-02-01 Thread Stas Bekman
Aeden Jameson wrote: Hi: Can the current libwww-perl 5.76 module be used with apache 2.0? It wasn't in the ported list provided by the mod-perl 2.0 documentation at apache.org. LWP has nothing to do with mod_perl, as it doesn't interact with the Apache server via its API, but via the HTTP pro

Re: Apache + mod_proxy + mod_perl + dynamic header information

2004-02-01 Thread Stas Bekman
[EMAIL PROTECTED] wrote: [...] 3. Is LWP required for solve my problem? Not if you use Apache::Filter::HTTPHeadersFixup and mod_proxy I believe. But it shouldn't take too long to figure out whether my suggestion will work or not. LWP or its equivalent will be your fallback solution, I'd think. I

Re: 'make test' fails to start server.

2004-02-01 Thread konsu
hello, the cause of the problem was the "Listen" directive in autogenerated httpd.conf that is incompatible with IPv6. the Apache-Test/ToDo file mentions this problem and there is a patch available. but the fix is not yet in the mod_perl2 distribution apparently... tests ran ok, except for one of

Re: SDBM_File issues?

2004-02-01 Thread Ged Haywood
Hi Perrin, On 1 Feb 2004, Perrin Harkins wrote: > On Fri, 2004-01-30 at 19:52, Ged Haywood wrote: > > Another one: is mod_ssl involved anywhere? > > It is. > > > NOTE: The --enable-rule=SSL_SDBM option > > As far as I can tell from httpd -V, that option was not used ... > I may end up just wri

Re: SDBM_File issues?

2004-02-01 Thread Perrin Harkins
On Fri, 2004-01-30 at 19:52, Ged Haywood wrote: > Another one: is mod_ssl involved anywhere? It is. > From mod_ssl-2.8.16-1.3.29/INSTALL > > NOTE: The --enable-rule=SSL_SDBM option enabled the use of the > built-in SDBM library instead of a custom defined or vendor > supplied DBM lib

Re: SDBM_File issues?

2004-02-01 Thread Perrin Harkins
On Fri, 2004-01-30 at 20:04, Stas Bekman wrote: > Aha. So it's not direct SDBM_File. Can you first test with SDBM_File itself, > so that we may be can point the fat finger at MLDBM::Sync? It's not MLDBM::Sync. I get the exact same results when using SDBM_File. Also, the error is thrown when MLD

Re: Apache + mod_proxy + mod_perl + dynamic header information

2004-02-01 Thread Perrin Harkins
On Sun, 2004-02-01 at 08:14, [EMAIL PROTECTED] wrote: > Thanks for your answer but I have additional question: > 1. I have two possibilities to get XXX value: > - from database via SQL query > - from Radius system via LDAP guery You'll find a lot more information and help for using a datab

Re: [mp2] $r->status does not accept a valid parameter

2004-02-01 Thread suburbanantihero
Thanks guys, the $r->env->status(Apache::HTTP_MULTI_STATUS); works great. I've got this other thing I'm hung up on. A response to an OPTIONS method should not return a content type. Apache by default does not return one for this method. I can't seem to find a way to disable sending a content-ty

Re: [mp2] $r->status does not accept a valid parameter

2004-02-01 Thread Geoffrey Young
> Regardless of the failed attempts to change status, > > my $l = length($xml_data); > $obj->apache_handle->set_content_length($l); > $obj->apache_handle->content_type('text/xml'); > $obj->apache_handle->print($xml_data); > return Apache::HTTP_MULTI_STATUS; > > wou

libwww-perl & mod-perl

2004-02-01 Thread Aeden Jameson
Hi: Can the current libwww-perl 5.76 module be used with apache 2.0? It wasn't in the ported list provided by the mod-perl 2.0 documentation at apache.org. Cheers, Aeden -- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html List etiq

Re: [mp2] $r->status does not accept a valid parameter

2004-02-01 Thread Joe Schaefer
<[EMAIL PROTECTED]> writes: [...] > $r->status(Apache::HTTP_MULTI_STATUS); > or > $r->status(207); > > always results in the following > > Usage: Apache::Request::status(sv) at API/Modes.pm > line 235. $r->status is read-only for Apache::Request objects; you either want $r->env->status(207)

Re: Apache + mod_proxy + mod_perl + dynamic header information

2004-02-01 Thread stingray
Hi! Thanks for your answer but I have additional question: 1. I have two possibilities to get XXX value: - from database via SQL query - from Radius system via LDAP guery As far as mod_perl is concerned what method would be the best? (more flexible, faster and easier to integrate) 2. A lot