Re: Child Exit error on MP2

2005-09-20 Thread Philip M. Gollucci
> my $r = shift; my $r_con = $r->connection; my $apr = APR::Request::Apache2->handle( $r_con ); =head2 handle APR::Request::Apache2->handle($r) Creates an APR::Request::Apache2 object. The argument C<< $r >> is an Apache2::RequestRec object (from mod_perl2). You're passing

Re: Child Exit error on MP2

2005-09-20 Thread Frank Wiles
On Tue, 20 Sep 2005 15:34:44 +0200 Tom Schindl <[EMAIL PROTECTED]> wrote: > APR::* is the prefered namespace/api for libapreq2. > APR::Request::Apache2->handle($r) is the right syntax as far as I > known. Well Apache2::Request is what is installed from libapreq2, but if you look into Apache2:

Re: Child Exit error on MP2

2005-09-20 Thread Tom Schindl
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Frank Wiles wrote: > On Mon, 19 Sep 2005 20:05:31 -0500 > Boysenberry Payne <[EMAIL PROTECTED]> wrote: > > >>When I get to the following line the debugger hangs: >> >>my $apr = APR::Request::Apache2->handle( $r ); > > > I believe that should be w

Re: Child Exit error on MP2

2005-09-20 Thread Frank Wiles
On Mon, 19 Sep 2005 20:05:31 -0500 Boysenberry Payne <[EMAIL PROTECTED]> wrote: > When I get to the following line the debugger hangs: > > my $apr = APR::Request::Apache2->handle( $r ); I believe that should be written like this: my $apr = Apache2::Request->new( $r_con ); Did you find

Re: Child Exit error on MP2

2005-09-19 Thread Boysenberry Payne
When I apachectl stop it breaks the httpd debug freeze and outputs the following: Carp::CODE(0x18f6968)(/opt/local/lib/perl5/5.8.7/Carp/Heavy.pm:122): 122: return @_ if ref($_[0]); # don't break references as exceptions DB<3> Carp::CODE(0x18f6968)(/opt/local/lib/perl5/5.8.7/Carp/Heavy.p

Re: Child Exit error on MP2

2005-09-19 Thread Boysenberry Payne
When I get to the following line the debugger hangs: my $apr = APR::Request::Apache2->handle( $r ); In the following situation: use Apache2::RequestRec (); use Apache2::RequestIO (); use Apache2::Const -compile => qw(OK REDIRECT); use strict; use diagnostics; use APR::Pool (); use Apache::DB (

Re: Child Exit error on MP2

2005-09-19 Thread Frank Wiles
On Mon, 19 Sep 2005 18:50:40 -0500 Boysenberry Payne <[EMAIL PROTECTED]> wrote: > I'm getting the following error: > [Mon Sep 19 18:45:48 2005] [notice] child pid 29371 exit signal Bus > error (10) > > How do I go about troubleshooting this in MP2. I'm just switching to > it and finally > afte

Child Exit error on MP2

2005-09-19 Thread Boysenberry Payne
I'm getting the following error: [Mon Sep 19 18:45:48 2005] [notice] child pid 29371 exit signal Bus error (10) How do I go about troubleshooting this in MP2. I'm just switching to it and finally after 3 days got libapreq installed, yeah... Is there a new and improved way to debug or anythi