From:             [EMAIL PROTECTED]
Operating system: Linux / Solaris
PHP version:      4.0.4pl1
PHP Bug Type:     Output Control
Bug description:  User abort causes page to be dumped into error_log

With output buffering enabled, if the user presses the stop button in their web client 
on a page which is executing slowly, when the code completes the page results are 
written to the apache error_log.

Run the included script and hit the stop button before it completes. The page output 
(numbers) will be written to the error_log.

<?php
ob_start ();
for ($i = 0; $i < 50000; $i++) {
    echo "$i ";
}
?>

Happens on both Linux (RH7) and Solaris (2.7)



-- 
Edit Bug report at: http://bugs.php.net/?id=10499&edit=1



-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to