"Michael L. Artz" <[EMAIL PROTECTED]> writes:
> For some reason, CGI.pm (2.93) does not seem to parse POST data within a
> PerlAuthenHandler. For example, the following:
>
> sub handler {
> my $r = shift;
> my $q = new CGI($r);
> my @params = $q->param;
> $r->server->log->error("handler params are " . join "::", @params);
> return Apache::OK;
> }
[...]
> Apache/2.0.44 (Gentoo/Linux) mod_perl/1.99_09 Perl/v5.8.0 CGI.pm/2.93
Attempting to read POST data before the content-handler is called
is unsafe with httpd-2. You'll probably have to wait for
Apache::Request to be ported over in order to do something like that.
--
Joe Schaefer