ID: 16982 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Open +Status: Bogus Bug Type: Session related Operating System: FreeBSD 4.4 PHP Version: 4.2.0 New Comment:
The bug system is not the appropriate forum for asking support questions. For a list of a range of more appropriate places to ask for help using PHP, please visit http://www.php.net/support.php Turn off trans-sid feature. Previous Comments: ------------------------------------------------------------------------ [2002-05-02 22:14:41] [EMAIL PROTECTED] As said in the summary, starting a session turns on some strange output-buffering, wich cannot be overrided per flush(). This happens since 4.2.0 and is still in the latest snapshot, until 4.1.2 it was okay. Sample-Scipt: <?php session_start(); session_write_close(); set_time_limit (0); $i = 0; for(;;) { $time = time(); $newtime = date("H:i:s", $time); printf("($newtime) - $i <br>"); $i++; flush(); usleep(200000); } ?> To me, this is VERY important, because it makes session-based webchats nearly unusuable. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=16982&edit=1
