ID:               24394
 Comment by:       hos dot endre at dorsum dot hu
 Reported By:      hos dot endre at axelero dot hu
 Status:           Feedback
 Bug Type:         Session related
 Operating System: Win NT/XP
 PHP Version:      5CVS-2003-06-29 (dev)
 New Comment:

I've tryed the test script I provided yesterday on WinNT, Apache
1.3.12, PHP 5.0.0b1 with php4_apache.dll (configured as php5_module in
httpd.conf). Works well. This bug might be XP specific, or it might be
my own system's special. By the way, the XP was configued to use
php4_apache_hooks.dll, becase php4_apache.dll were missing from one of
the downloaded PHP distributions. I'm willing to figure out what the
hell going on with that stuff. I'll be back with further results.


Previous Comments:
------------------------------------------------------------------------

[2003-06-29 20:04:05] [EMAIL PROTECTED]

Does this script work any better:

<?php                                                                  
                              
session_start();                                                       
                       
if (!isset($_SESSION["count"])) {
    $_SESSION['count'] = 1;
} else {
    echo $_SESSION['count']++;
}
?>



------------------------------------------------------------------------

[2003-06-29 19:37:32] hos dot endre at axelero dot hu

Description:
------------
On request shutdown session file is created, but stay locked with zero
size. CPU have no load, and nothing happens. No crash. I've tried older
5CVS bins, and it seems to be an older bug. Serialization and anything
else works well for me. 5.0.0-Beta1 also contains this bug. Leaving out
session_start & session_register. :)

Reproduce code:
---------------
<?
session_start();
if (!isset($HTTP_SESSION_VARS["count"]))
{
    session_register("count");
    $count = &$HTTP_SESSION_VARS["count"];
    $count = 1;
} else
    $count = &$HTTP_SESSION_VARS["count"];
echo $count++;
?>


Expected result:
----------------
1, 2, 3... by refreshing the page.



------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=24394&edit=1

Reply via email to