|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2002-08-22 20:37 UTC] sniper@php.net
  [2002-09-21 02:03 UTC] sniper@php.net
 | |||||||||||||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 11:00:01 2025 UTC | 
The flush() fuction doesn't work when used with Session handling functions. I'm using Apache v1.3.26 Server, PHP v4.2.2 and Internet Explorer 6.0 Example: <?php session_start(); session_register("SESSION"); $count=0; for($i=0;$i<=5;$i++) { echo $count++."<BR>\n"; flush(); sleep(2); } ?> If you comment out the two session fuctions above, the flush() works properly! My configure line: './configure' '--with-apxs=/usr/local/apache/bin/apxs' '--with-xml' '--enable-bcmath' '--enable-calendar' '--with-curl' '--enable-ftp' '--with-gd=/usr' '--with-jpeg-dir=/usr/local' '--with-png-dir=/usr' '--with-imap' '--with-mcrypt' '--with-ming' '--enable-magic-quotes' '--with-mysql=/usr' '--with-pear' '--enable-safe-mode' '--enable-track-vars' '--with-ttf' '--enable-versioning' '--with-zlib' '--enable-trans-sid' '--with-gettext' '--with-kerberos' '--with-odbc' Hope someone could look into this.