Hello evergreen,
My answer is not Perl related but my troubleshooting approach on this would be to capture a tcpdump (LinuxOS) if you are running on (WindowsOS) wireshark. By doing so you will see the package arriving and you will explicitly see what is the reply/error back.
Update: From the documentation Apache2::Request/param this should give more data:
$req->args_status(1); # set error state for query-string parser ok $req->param_status == 1; $foo = $req->param("foo"); ok $foo == 1; eval { @foo = $req->param("foo") }; ok $@->isa("Apache2::Request::Error"); undef $@; eval { my $not_found = $req->param("non-existent-param") }; ok $@->isa("Apache2::Request::Error"); $req->args_status(0); # reset query-string parser state to "success"
Hope this helps, BR.
In reply to Re: Apache2::Request Internal apreq error
by thanos1983
in thread Apache2::Request Internal apreq error
by evergreen
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |