in reply to Debugging Perl .cgi forms
- are you using CGI.pm?
- have you printed a proper HTTP header at the top of your output?
- have you successfully produced a "Hello World" page
to test your basic approach?
- have you included something like the following
near the top of your script to help you
trace your errors?
If none of this gets you closer to a solution, slim down your script to the minimum that still produces the error and post both the script and the output you get when you run from the command line.use CGI qw(:standard); use CGI::Carp; use CGI::Carp qw(fatalsToBrowser); local $SIG{__WARN__} = \&Carp::cluck;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Debugging Perl .cgi forms
by nysus (Parson) on Apr 01, 2001 at 06:38 UTC | |
by dvergin (Monsignor) on Apr 01, 2001 at 07:06 UTC | |
by nysus (Parson) on Apr 01, 2001 at 07:20 UTC | |
by tilly (Archbishop) on Apr 01, 2001 at 07:38 UTC | |
by nysus (Parson) on Apr 01, 2001 at 06:42 UTC |