ID: 37859 Updated by: [EMAIL PROTECTED] Reported By: peter at evident dot si -Status: Open +Status: Feedback Bug Type: Session related Operating System: Win XP PHP Version: 5.1.4 New Comment:
Does it happen with some more reliable browser than IE7 beta? Previous Comments: ------------------------------------------------------------------------ [2006-06-20 10:46:21] peter at evident dot si Description: ------------ I noticed that someone already reported this as a bug in May but it was not investigated and closed as bogus. As this definately is some strange issue between IE7 and PHP I am opening this again. It all comes down to the session: session_start(). Using simple example bellow and IE7 beta as client you will notice that apache server logs two client requests (original one and 5 sec duplicated one). Can't image what the relation is but this is the case. OS is Win XP running Apache 2 and PHP 5.1.2.2 No other browser client including IE6 or older causes this. Please look into this since it can cause serious problems. Reproduce code: --------------- I worked the problem down to the session_start() which is causing this. Please try this simple example: <?php session_start(); ?> <html> <body> <h1>Hello World!</h1> </body> </html> Using IE7 beta and PHP5.1.2.2 (Windows XP, Apache 2) makes a duplicated call 5 sec later (see apache logs). Removing session_start() makes no duplicates. Using any other browser including IE6 or previous makes no duplicates as well. Please look into this. There must be some strange connection between ie7 and php (5 or maybe others - didn't try) that makes session behave strangely. If you need any additional info I will gladly help. Expected result: ---------------- No fantom calls using IE7 / PHP. Actual result: -------------- With session_start() duplicated fantom calls are loged in apache logs. Without session_start() and any other browser then IE7 no duplicates. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=37859&edit=1