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 need to change that to:

my $r = Apache::Request->new(shift);
or
my $r = Apache::Request->new(Apache->request);


Reply via email to