ID: 15573
Updated by: [EMAIL PROTECTED]
-Summary: save_handler mm - doesn't create _SESSION[bar] at the
first-time
Reported By: [EMAIL PROTECTED]
-Status: Analyzed
+Status: Assigned
Bug Type: Session related
Operating System: debian woody (3.0)
PHP Version: 4.1.1
-Assigned To:
+Assigned To: yohgaki
New Comment:
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.
Previous Comments:
------------------------------------------------------------------------
[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