ID:               15573
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Analyzed
+Status:           Closed
 Bug Type:         Session related
 Operating System: debian woody (3.0)
 PHP Version:      4.1.1
 New Comment:

This bug has been fixed in CVS.

In case this was a PHP problem, snapshots of the sources are packaged
every three hours; this change will be in the next snapshot. You can
grab the snapshot at http://snaps.php.net/.
 
In case this was a documentation problem, the fix will show up soon at
http://www.php.net/manual/.

In case this was a PHP.net website problem, the change will show
up on the PHP.net site and on the mirror sites in short time.
 
Thank you for the report, and for helping us make PHP better.




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

[2002-03-06 02:54:14] [EMAIL PROTECTED]

Cause is known. We need to come up with how we treat FAILURE from
session save handler's read function to fix this issue.

FAILURE means failed to get valid data entry for the session
oi
FAILURE means fatal errror that can be network connection, database
query, etc.



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

[2002-02-15 11:43:44] [EMAIL PROTECTED]

Hi,
if I use mm as save handler. I have to click twice at the first time to
increment the counter. With files it works fine.

cheers,
Marcus.

<?php
ini_set('session.save_handler',mm);
session_start();
if (!isset($_SESSION['count'])) {
  $_SESSION['count'] = 0;
}else{
  $_SESSION['count']++;
}
echo $_SESSION['count'];
echo "<br><a href='$PHP_SELF'>click me</a>";
?>

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


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

Reply via email to