Re: red hat mod_perl build problem

2005-04-04 Thread Tom Schindl
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I won't do that because when develping code on such an old code base like 1.99.09 many things have been corrected/changed beside security holes closed in apache 2, ... . And mod_perl is changing the next release will probably shift everything from A

Re: [mp1] Apache::AuthDBI segfaults under Fedora Core 1?

2005-04-04 Thread Stas Bekman
John Callender wrote: In moving some web sites from a server running Red Hat Linux release 7.3 (Valhalla) to one running Fedora Core release 1 (Yarrow), I'm finding that attempts to authenticate under mod_perl using Apache::AuthDBI, which were working normally on the RH 7.3 server, are producing

Re: Bug Report : problem with both_str_native_remove test and broken mod_perl.so

2005-04-04 Thread Stas Bekman
Fred Seibel wrote: 1. Problem Description: I cannot get a clean make test. the tests fail (but not consistently t/filter/both_str_native_remove.# Failed test 1 in t/filter/both_str_native_remove.t at line 22 # Failed test 2 in t/filter/both_str_native_remove.t at line 24 t/filter/both_st

[mp1] Apache::AuthDBI segfaults under Fedora Core 1?

2005-04-04 Thread John Callender
In moving some web sites from a server running Red Hat Linux release 7.3 (Valhalla) to one running Fedora Core release 1 (Yarrow), I'm finding that attempts to authenticate under mod_perl using Apache::AuthDBI, which were working normally on the RH 7.3 server, are producing segfaults on the FC1

Re: 2.0.0-RC4, FreeBSD-5.3, Apache2.pm not installed

2005-04-04 Thread Stas Bekman
James Lever wrote: Hi Stas (and et list), On 5 Apr 2005, at 2:50 AM, Stas Bekman wrote: James, as the next release won't have Apache2.pm anymore, it's probably a waste of time trying to resolve this issue. For now just copy in manually. If you want to figure it out anyway, check whether Apache2.

[MP2] Using Apache::AuthCookie with $r->prev when login is a redirect to https

2005-04-04 Thread Barry Hoggard
I have Apache::AuthCookie 3.06 working fine with just http under this setup: httpd-2.0.53 mod_perl-2.0.0-RC4 However, when I redirect to https for the login page, $r->prev is now empty, so I don't have these values for my form: $r->prev->uri $r->prev->args $r->prev->subprocess_env("AuthCookieRe

Re: 2.0.0-RC4, FreeBSD-5.3, Apache2.pm not installed

2005-04-04 Thread James Lever
Hi Stas (and et list), On 5 Apr 2005, at 2:50 AM, Stas Bekman wrote: James, as the next release won't have Apache2.pm anymore, it's probably a waste of time trying to resolve this issue. For now just copy in manually. If you want to figure it out anyway, check whether Apache2.pm ends up in blib

Re: Segmentation Fault

2005-04-04 Thread Dan Wilga
Just in case you haven't yet solved the problem, I wanted to let you know that I had a similar problem. It turns out that MySQL and mod_perl were linking to different versions of libdb (BerkeleyDB). The solution was to rebuild mod_php and mod_perl with the same version. Apache itself can also h

Bug Report : problem with both_str_native_remove test and broken mod_perl.so

2005-04-04 Thread Fred Seibel
1. Problem Description: I cannot get a clean make test. the tests fail (but not consistently t/filter/both_str_native_remove.# Failed test 1 in t/filter/both_str_native_remove.t at line 22 # Failed test 2 in t/filter/both_str_native_remove.t at line 24 t/filter/both_str_native_remove

Re: red hat mod_perl build problem

2005-04-04 Thread Tom Caldwell
Thanks for the reply, but I did some more digging and decided that having 2 versions of perl installed (improperly) on my system was probably the culprit. And since red hat provides a version of apache2 and modperl 2 with perl 5.8.0, I decided to just go with that, even though it is 1.5 years o

Re: 2.0.0-RC4, FreeBSD-5.3, Apache2.pm not installed

2005-04-04 Thread Stas Bekman
James Lever wrote: Hi All, I'm trying to install mod_perl 2.0.0-RC4 under FreeBSD-5.3 but although Apache2.pm is present in the libs/ hierarchy, it is not being installed as part of 'make install'. 2.0.0-RC3 (from the ports collection) seemed to work fine, but I am trying to get HTTunnel-0.0.5 u

Re: APR::BucketType bucket types?

2005-04-04 Thread Stas Bekman
Dintelmann, Peter wrote: I am looking for a list of the bucket types for APR::BucketType objects and their meanings. So far I have encountered the types "FLUSH", "EOC" (end of connection?) and "mod_perl SV bucket". It seems that bucket type (names) are only available as strings. When looking for

Re: red hat mod_perl build problem

2005-04-04 Thread Stas Bekman
Tom Caldwell wrote: I am having a problem install mod_perl on red hat 9 with apache 2.0.53 installed in dir /opt/apache2 (it runs). I executed >perl Makefile.PL with options MP_USE_DSO=1 and MP_AP_PREFIX=/opt/apache2 which ran successfully. Then I executed >make and got the following results: g

Apache::Request and utf8

2005-04-04 Thread Harmen
Hello, Apache::Request ignores character sets. So if you use an utf8 encoded form values returned by Apache::Request->param are not flagged as valid perl UTF8 strings. You need to filter them through Encode::decode(). That's surely, euhm, suboptimal. Did anybody find a nice way to fix/work aroun