in reply to Re: Re: Beating the system
in thread Beating the system

Use CGI::Carp so that you can get the error message in the browser, if it's a Perl error:

use CGI::Carp qw(fatalsToBrowser);

Trying to debug a CGI without access to STDERR is needlessly difficult.

-sam