php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #10499 User abort causes page to be dumped into error_log
Submitted: 2001-04-25 17:06 UTC Modified: 2001-08-19 04:16 UTC
From: dbenson at mancala dot com Assigned:
Status: Closed Package: Output Control
PHP Version: 4.0.4pl1 OS: Linux / Solaris
Private report: No CVE-ID: None
 [2001-04-25 17:06 UTC] dbenson at mancala dot com
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)

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-08-19 04:16 UTC] sniper@php.net
This is fixed. Try PHP 4.0.6.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Mar 29 01:01:28 2024 UTC