Hi,
I have written a script to wait 800 seconds and then send a html content
type header
and a line of text.
The server I am using is apache 1.3 with mod_perl 1.x
I run this script and the log files show the incrementing numbers in the
for loop, but
whats weird is that the browser seems to still be "downloading" you know
that little icon seems to be spinning
and I see no output not and html header of any line of text.
--
my $max = 60 * 8;
for( my $i = 0; $i < $max; $i++)
{
my $j = $i + 1;
warn("iteration: " . $j);
sleep(1);
}
require in;
in::ct();
print("successfully rendered on dev");
exit();
--
any ideas on why the browser is not receiving or the webserver is not
sending this content?
Anybody need any clarifications?
Tyler