in reply to Twisted Logic Filling My Logs, w/o Rendering Form

it's hard to tell. does your script
use warnings;
and
use CGI::Carp qw/fatalsToBrowser/;
? maybe they will give you a hint.
--------------------------------
masses are the opiate for religion.

Replies are listed 'Best First'.
Re^2: Twisted Logic Filling My Logs, w/o Rendering Form
by hesco (Deacon) on May 08, 2008 at 03:42 UTC
    Yes, the cgi script itself starts off:

    #!/usr/bin/perl -T use strict; use warnings; use Data::Dumper;
    and liberally sprinkles in print STDERR debug statements. My issue is apparently not a fatal crash, but an endless loop. Its processing each household without rendering the webform for it, after the first one, of course.

    My $self->_render_online_household_form() method is set to return the html for the form, to the $dashboard->_process_list_of_households() method, which also returns the html form to the cgi script which called it. The cgi script is supposed to print that $html if its defined.

    My two modules written to drive this application are also begun with:

    use strict; use warnings;
    Its an old habit by now.

    -- Hugh

    if( $lal && $lol ) { $life++; }