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
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: dbenson at mancala dot com
New email:
PHP Version: OS:

 

 [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

Pull Requests

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: Sun Oct 06 19:01:27 2024 UTC