http://qs1969.pair.com?node_id=643985


in reply to Commenting out carpout causes script to hang

Is it possible that CGI::Carp was the only thing making headers? I read in the docs:
Fatal errors will now be echoed to the browser as well as to the log. CGI::Carp arranges to send a minimal HTTP header to the browser...
which makes me suspect that you aren't sending headers in any other way. But that's just my best guess without running any code.

Phil

The Gantry Web Framework Book is now available.
  • Comment on Re: Commenting out carpout causes script to hang

Replies are listed 'Best First'.
Re^2: Commenting out carpout causes script to hang
by punch_card_don (Curate) on Oct 10, 2007 at 15:48 UTC
    Best guesses are what I'm looking for!

    But in this case

    print "Content-type: text/html\n\n";
    is the very next line in the script after what I posted above.
      Then my only other advice is to stop the script short at various points:
      print "got to here\n"; exit;
      Move it down until something goes wrong.

      Phil

      The Gantry Web Framework Book is now available.