Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: How to debug CGI scripts?

by sfink (Deacon)
on Aug 26, 2006 at 17:37 UTC ( [id://569820]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    if ($cgi->param('CHECKPOINT')) {
        local *STATE;
    ...
        $cgi->save(*STATE);
        close STATE;
      }
    
  2. or download this
      my $cgi;
      if ($ENV{'CHECKPOINT'}) {
    ...
      } else {
        $cgi = CGI->new();
      }
    
  3. or download this
      CHECKPOINT=1 perl -d MyScript.cgi
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://569820]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (8)
As of 2024-03-28 15:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found