in reply to Apache PerlAuthzHandler and HTML form POST vars

I think this is your problem

my $r = shift; ... $query = new CGI;

You're writing an PerlAuthzHandler, your code should only deal with Apache2::... objects directly

Replies are listed 'Best First'.
Re^2: Apache PerlAuthzHandler and HTML form POST vars ( no CGI)
by pha (Initiate) on Jan 19, 2015 at 16:54 UTC

    That was it exactly. Shamefully, it was not even used in the script. I am accessing but not changing anything. Simply deleting the line took care of it.

    Many, many thanks.