Re: Getting param

2005-09-15 Thread Tom Schindl
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Boysenberry Payne wrote: > Now when I try to start apache using apachectl start I get: > > dyld: /usr/local/httpd/bin/httpd version mismatch for library: > /usr/local/httpd/lib/libexpat.0.dylib (compatibility version of user: > 6.0.0 greater than libr

Re: Getting param

2005-09-15 Thread Tom Schindl
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Joe Schaefer wrote: > Boysenberry Payne <[EMAIL PROTECTED]> writes: > > >>What is the difference between: >> >>APR::Request::Apache2 >>and >>Apache2::RequestRec > > > Apache2::RequestRec is the perl module representing httpd's request_rec > struct.

Re: Getting param

2005-09-14 Thread Boysenberry Payne
Now when I try to start apache using apachectl start I get: dyld: /usr/local/httpd/bin/httpd version mismatch for library: /usr/local/httpd/lib/libexpat.0.dylib (compatibility version of user: 6.0.0 greater than library's version: 2.0.0) /usr/local/httpd/bin/apachectl: line 100: Trace/B

Re: Getting param

2005-09-14 Thread Boysenberry Payne
The install for expat 1.95.8 and APR::Request went great. But now in my error_log I get the following: dyld: /usr/local/httpd/bin/httpd version mismatch for library: /usr/local/httpd/lib/libexpat.0.dylib (compatibility version of user: 6.0.0 greater than library's version: 2.0.0) It seems A

Re: Getting param

2005-09-14 Thread Boysenberry Payne
While trying to install APR::Request::Apache2 I got the following error(s): gcc -g -O2 -o .libs/test_cgi test_cgi.o /Users/boysie/.cpan/build/libapreq2-2.06-dev/library/.libs/ libapreq2.dylib -lexpat -L/Users/boysie/src/httpd-2.0.54/srclib/apr-util/xml/expat/lib /Users/boysie/src/httpd-

Re: Getting param

2005-09-14 Thread Frank Wiles
On Wed, 14 Sep 2005 16:30:52 -0500 Boysenberry Payne <[EMAIL PROTECTED]> wrote: > While trying to install APR::Request::Apache2 I got the following > error(s): > > gcc -g -O2 -o .libs/test_cgi test_cgi.o > /Users/boysie/.cpan/build/libapreq2-2.06-dev/library/.libs/ > libapreq2.dylib -lexpat

Re: Getting param

2005-09-14 Thread Boysenberry Payne
While trying to install APR::Request::Apache2 I got the following error(s): gcc -g -O2 -o .libs/test_cgi test_cgi.o /Users/boysie/.cpan/build/libapreq2-2.06-dev/library/.libs/ libapreq2.dylib -lexpat -L/Users/boysie/src/httpd-2.0.54/srclib/apr-util/xml/expat/lib /Users/boysie/src/httpd-

Re: Getting param

2005-09-14 Thread Joe Schaefer
Boysenberry Payne <[EMAIL PROTECTED]> writes: > What is the difference between: > > APR::Request::Apache2 > and > Apache2::RequestRec Apache2::RequestRec is the perl module representing httpd's request_rec struct. APR::Request::Apache2 is the perl module for interfacing with mod_apreq2, which is

Re: Getting param

2005-09-14 Thread Boysenberry Payne
What is the difference between: APR::Request::Apache2 and Apache2::RequestRec Thanks, Boysenberry boysenberrys.com | habitatlife.com | selfgnosis.com On Sep 14, 2005, at 1:41 PM, Philip M. Gollucci wrote: Philip M. Gollucci wrote: You want instead use APR::Reuest::Apache2 (); my $apr = APR::Re

Re: Getting param

2005-09-14 Thread Philip M. Gollucci
Philip M. Gollucci wrote: You want instead use APR::Reuest::Apache2 (); my $apr = APR::Reuest::Apache2->handle($r); my $FORM = $req->param; ## hashref implemented as a tied hash to an APR::Table my $param1_value = $FORM{param1} Note s/Reuest/Request/g Sorry! -- END ---

Re: Getting param

2005-09-14 Thread Philip M. Gollucci
Boysenberry Payne wrote: Yea, I got Apache2/MP2 installed and running on my OS X box. YAY! Now I'm rewriting my code and am getting the error: Excellent Can't locate object method "param" via package "Apache2::RequestRec" Thats because its not there :) You need libapreq http://httpd.apac

Getting param

2005-09-14 Thread Boysenberry Payne
Yea, I got Apache2/MP2 installed and running on my OS X box. Now I'm rewriting my code and am getting the error: Can't locate object method "param" via package "Apache2::RequestRec" Here is what I have: sub handle { my $r = shift; my $c = $r->connection; my $apr = Apache2::RequestRec->new( $r )