Re: Apache::Request->new($r) does NOT work, why?

2000-04-30 Thread Tobias Hoellrich
At 02:04 PM 4/30/00 -0400, Sam Carleton wrote: >Tobias, > >The new is blowing up on me. This is the error message: > >null: Can't locate object method "new" via package "Apache::Request" Try installing it :-) $ perl -MCPAN -e shell cpan> install Apache::Request Tobias PS: Pl

Apache::Request->new($r) does NOT work, why?

2000-04-30 Thread Sam Carleton
Tobias Hoellrich wrote: > Almost :-) Apache cannot be used for multipart/form-data, gotta use > Apache::Request instead. Change the start of the handler to : > > sub handler { > my $r = shift; > my $apr = Apache::Request->new($r) Tobias, The new is blowing up on me