Re: $r->args troubles...

2000-04-12 Thread Jason Murphy
for everyone's help. PS. The only reason I say this on the mailing list is to get it in to the mailing list archives because I could not my solution there when I looked. From: "Doug MacEachern" <[EMAIL PROTECTED]> To: "Jason Murphy" <[EMAIL PROTECTED]> Cc: <

Re: $r->args troubles...

2000-04-11 Thread Doug MacEachern
On Fri, 7 Apr 2000, Jason Murphy wrote: > Can't locate object method "new" via package "Apache::Request" at > ./find_player.pl line 10. that would normally indicate your script is running under mod_cgi, not mod_perl. > my $r = new Apache::Request; <---Where the error appears in any case, you

Re: $r->args troubles...

2000-04-07 Thread Doug Kyle
It goes like this: my $r = Apache->request; my $apr = Apache::Request->new($r); -- Doug Kyle - Information Systems Grand Rapids Public Library "We're superheros man, we don't have time to be charming . . . we're public servants, not glamour boys" - The Tick. Jason Murphy wrote: > Dear Mod_Per

RE: $r->args troubles...

2000-04-07 Thread Geoffrey Young
you are calling Apache::Request->new incorrectly - see the docs :) > -Original Message- > From: Jason Murphy [mailto:[EMAIL PROTECTED]] > Sent: Friday, April 07, 2000 2:07 PM > To: [EMAIL PROTECTED] > Subject: $r->args troubles... > > > Dear Mod_Perl&#x

$r->args troubles...

2000-04-07 Thread Jason Murphy
Dear Mod_Perl'lers I hate to bug the list with this simple problem, but I am at my wits end. I have The Good Book (Aka: Apache Modules with Perl and C. Aka: The Eagle Book) but have some questions that are just killing me. I would like to do something like the program on page 104 - 110 and also