ID: 15983
Updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
-Status: Closed
+Status: Open
Bug Type: Session related
Operating System: Debian/Linux mips platform
-PHP Version: 4.1.2
+PHP Version: 4.1.2 and 4.2.0
New Comment:
Just compiled 4.2.0 tried the new script. The error is stille there.
The session file in /tmp contains:
test|i:1;
But it displays 0 (Which is correct the first time).
Change the filesystem from ext3 to ext2 to make sure that was not the
problem. Updated the system with updated packages from debian.
Regards,
S�ren,
Previous Comments:
------------------------------------------------------------------------
[2002-04-24 18:19:03] [EMAIL PROTECTED]
Reopen if this script does not work for you with PHP 4.2.0:
<?php
session_start();
if(!isset($_SESSION['test'])) {
$_SESSION['test'] = 0;
}
echo $_SESSION['test']++;
?>
It works fine here..(reloading the page increases the count)
--Jani
------------------------------------------------------------------------
[2002-04-24 09:55:59] [EMAIL PROTECTED]
These two pages, s*1.php and s*2.php are called consecutively,
separately by the same browser with the SID in the cookie?
I thought sessions had to be accessed using a SID. At least, that is
the way I believe PHPLib does it, and PHP 4.x.x is supposed to be
exhibiting similar behavior, right?
If one script is including the other script, I don't know hwo that
would work.
------------------------------------------------------------------------
[2002-04-12 05:23:51] [EMAIL PROTECTED]
what about this workaround:
--- page #1 ---
session_start();
$_SESSION["test"] = "some value";
---------------
--- page #2 ---
session_start();
print $_SESSION["test"];
---------------
this works well for us.
/achim
------------------------------------------------------------------------
[2002-04-05 03:50:23] [EMAIL PROTECTED]
Even in PHP 4.2.0RC1 the bug is still there.
Nothing is changed.
Best regards,
Soeren,
------------------------------------------------------------------------
[2002-04-02 09:48:13] [EMAIL PROTECTED]
Could you try 4.2.0RC1?
Please visit http://qa.php.net/ for it.
------------------------------------------------------------------------
The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/15983
--
Edit this bug report at http://bugs.php.net/?id=15983&edit=1