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);
- $r->args troubles... Jason Murphy
- Re: $r->args troubles... Doug Kyle
- Re: $r->args troubles... Doug MacEachern
- Re: $r->args troubles... Jason Murphy
- mod_perl virtual web hosting Gagan Prakash
- Re: mod_perl virtual web hosting Ron Pero
- Re: mod_perl virtual web hosting Gunther Birznieks
- Re: mod_perl virtual web hosting Jesse Wolfe
- Re: mod_perl virtual web hosting Tom Brown
- Re: mod_perl virtual web hosti... Jesse Wolfe
- Re: mod_perl virtual web h... Tom Brown
- Re: mod_perl virtual web h... Gunther Birznieks
- Re: mod_perl virtual web hosti... Leslie Mikesell