Here is the code that my script executes when there are no parms (max_post exceeded)...Don't know how I could make it any dumber. The emailwebadmin and dienice execute but still getting the "page cannot be displayed from the html portion. That code runs if I put it in a standalone module. Is there any type of disconnect happening here instigated by post_max?
#
# No input parms
#
else {
$cgierr = CGI::cgi_error();
if ( $cgierr ) {
print "Content-type:text/html\n\n";
print "<HTML><HEAD><TITLE>Error</TITLE></HEAD>";
print "<BODY>";
print "$cgierr\n";
print "</BODY>";
print "</HTML>";
#
# Send an email to the web admin
emailwebadmin ("A submitted RESUME is too large. The CGI error is: $cgierr");
}
else {
emailwebadmin ("No input parameters found!");
dienice ("jobappr.pl: No input parameters found! The Web administrator has been notified.");
exit();
}
}