Re: Apache 2.2 and libapreq2 2.0.7 segfault

2006-03-29 Thread Philip M. Gollucci
Cory Omand wrote: On 3/29/06, Philip M. Gollucci <[EMAIL PROTECTED]> wrote: Cory Omand wrote: --with-mm-opts="INSTALLDIRS=vendor" wow, someone is using that other then me... Glad I added it :) I'm glad you added it too :) Can you double check and make sure everything is picking up the sa

Re: Apache 2.2 and libapreq2 2.0.7 segfault

2006-03-29 Thread Cory Omand
On 3/29/06, Philip M. Gollucci <[EMAIL PROTECTED]> wrote: > Cory Omand wrote: > > --with-mm-opts="INSTALLDIRS=vendor" > wow, someone is using that other then me... Glad I added it :) I'm glad you added it too :) > Can you double check and make sure everything is picking up the same > versions o

Re: Apache 2.2 and libapreq2 2.0.7 segfault

2006-03-29 Thread Cory Omand
On 3/29/06, Jonathan Vanasco <[EMAIL PROTECTED]> wrote: > > On Mar 29, 2006, at 7:06 PM, Cory Omand wrote: > > > Hi, > > > > I am having issues with Apache 2.2 and libapreq2 2.07. Even very > > simple tests which construct new Apache2::Request objects are > > resulting in segfaults. I have the fo

Re: Apache 2.2 and libapreq2 2.0.7 segfault

2006-03-29 Thread Philip M. Gollucci
Cory Omand wrote: --with-mm-opts="INSTALLDIRS=vendor" wow, someone is using that other then me... Glad I added it :) Can you double check and make sure everything is picking up the same versions of apr and apr-util. (Do you have any other's installed?) (preferably via ldd) If you run 'mak

Re: Apache 2.2 and libapreq2 2.0.7 segfault

2006-03-29 Thread Cory Omand
On 3/29/06, Philip M. Gollucci <[EMAIL PROTECTED]> wrote: > I hope this isn't whats causing it, but you're missing > > use Apache2::Const -compile qw(OK); > > I know we prefer the other way of new() so try doing this > my $apr = Apache2::Request->new($r) > > I don't recall if we support both (as yo

Re: Apache 2.2 and libapreq2 2.0.7 segfault

2006-03-29 Thread Jonathan Vanasco
On Mar 29, 2006, at 7:06 PM, Cory Omand wrote: Hi, I am having issues with Apache 2.2 and libapreq2 2.07. Even very simple tests which construct new Apache2::Request objects are resulting in segfaults. I have the following server setup: check to see if you're sending a bad cookie are you

Re: Apache 2.2 and libapreq2 2.0.7 segfault

2006-03-29 Thread Philip M. Gollucci
I hope this isn't whats causing it, but you're missing use Apache2::Const -compile qw(OK); I know we prefer the other way of new() so try doing this my $apr = Apache2::Request->new($r) I don't recall if we support both (as you can tell I've been out of it for a while). package SimpleHandler

Re: Apache 2.2 and libapreq2 2.0.7 segfault

2006-03-29 Thread Cory Omand
Hi, I am having issues with Apache 2.2 and libapreq2 2.07. Even very simple tests which construct new Apache2::Request objects are resulting in segfaults. I have the following server setup: Apache/2.2.0 (Unix) DAV/2 mod_apreq2-20051231/2.5.7 mod_perl/2.0.2 Perl/v5.8.8 This server uses the Apac

Re: [RFC PATCH BUG DBI] Apache::AuthDBI broken

2006-03-29 Thread Philip M. Gollucci
[EMAIL PROTECTED] wrote: The newest version of Apache::AuthDBI is broken. When used under Apache 1, it has compile-time errors introduced with Apache 2 compatability. This diff fixes that, and also some older problems: - fixes case sensitivity of usernames and passwords - fixes O(n) searc

Re: Location and AuthDBI

2006-03-29 Thread Christopher Hicks
On Sun, 26 Mar 2006, Christopher Hicks wrote: I've run into quite an oddity trying to get AuthDBI to work on a current CentOS box. [EMAIL PROTECTED] conf.d]# rpm -q httpd httpd-2.0.52-22.ent.centos4 [EMAIL PROTECTED] conf.d]# httpd -V Server version: Apache/2.0.5

[RFC PATCH BUG DBI] Apache::AuthDBI broken

2006-03-29 Thread pedersen
The newest version of Apache::AuthDBI is broken. When used under Apache 1, it has compile-time errors introduced with Apache 2 compatability. This diff fixes that, and also some older problems: - fixes case sensitivity of usernames and passwords - fixes O(n) search of database when using cas