in reply to CGI Error HTTP headers of doom
use CGI::Carp qw(fatalsToBrowser);
This will catch any runtime errors and redirect them so the browser can see them.
However, more likely it is a configuration error. Check with a very simple test script to see if it works, e.g.
print "Content-type: text/html\n\n"; print "<html><body>OK</body></html>";
if that fails, it is an IIS config problem.
|
|
---|