Hi all,
I am getting following error from CGI module after mod_perl 2.0.4 migration
, is there is any way resolve it ? . This issue occurs not all the time
My code is
sub handler
{
my ($req) = @_;
my $username;
my $remote_ip = $req->connection->remote_ip;
#
# Create a Session object.
#
my $cgi = CGI->new($req); ## This line cases the problem ()
}
Error Stack
Apache2::RequestIO::read: (104) Connection reset by peer at (eval 899) line
5
Line File Sub Called Arg
WntA
---- ---- ----------
-------
275 Debug.pm Debug::stack_trace Y N
5 (eval 899) Debug::__ANON__
Y N
599 CGI.pm CGI::read_from_client Y
N
360 CGI.pm CGI::init Y
N
55 Auth.pm CGI::new Y
N
0 -e
EPD::Auth::handler Y N
0 -e (eval)
N N
--Shibi Ns--