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 the

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 written like

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

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 a

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

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 after 3 days

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