in reply to Cannot save to file with a CGI scipt
near the top of your code during development - it'll chuck your fatal errors (and your warnings if you put -w at the end of your shebang line) onto the browser where you can see 'em in real time.use CGI::Carp qw(fatalsToBrowser warningsToBrowser); print $cgi->header; warningsToBrowser(1);
|
|---|