in reply to Re: Re: Apache2 Frustrations
in thread Apache2 Frustrations

OK, I see your point.

Without having tried it myself (I lack the time now), it seems you can replace CGI.pm by Apache::Request.

The only change to your script is how you instantiate the request-object into a CGI-compatible object:

use Apache::RequestRec; sub handler { my $r=shift; my $req = Apache::RequestRec->new($r); ... }
$req will now act as a CGI-object and all well-known CGI-methods for getting and setting the GET and POST parameters (as they are implemented in Apache::RequestRec) can be used.

CountZero

"If you have four groups working on a compiler, you'll get a 4-pass compiler." - Conway's Law