in reply to mod_perl2 module

if this is on a windows machine, put the following as the first executable line of code, which flushes buffers properly
$| = 1;
the hardest line to type correctly is: stty erase ^H

Replies are listed 'Best First'.
Re^2: mod_perl2 module
by chromatic (Archbishop) on Apr 02, 2006 at 17:18 UTC

    I downvoted this answer. Why do you think the OP had a buffering problem?

Re^2: mod_perl2 module
by jonsmith1982 (Beadle) on Apr 02, 2006 at 12:48 UTC
    i have tried $| = 1; and print "<font >© 2006 All Rights Reserved.</font>"; still doesnt display.

    it is a windows machine.
      found a cure for my problem

      END $p->print($q->h1('hey')); $p->print (<<'END');


      the print function within Apache2::RequestIO (); allows me to use CGI.pm functions.