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

Okay: The subjected problem was solved by un-double-quoting the
session.save_path and remove the backslash from the end of line.
Anyway, until this the engine was able to create the file. After that I
had to get familiar with the new php_dom exension, which I think is
great, but not documented yet. So then comes a serialization problem:
objects in my project held reference to each other, and the
last-time-workin-good serialization crashed on this extra. Right now I
solved the problem by unbuilding theese references before
serialization, and rebuilding them on wakeup. Now I can test the ZE2
editions new features, thank you for the help!

Also, here is a sample script that doesn't work for me:

<?

class a
{
        var $b;

        function a()
        {
                $this->b = new b;
        }

        function setupb()
        {
                $this->b->setupa($this);
        }
}

class b
{
        var $a;

        function setupa($a)
        {
                $this->a = $a;
        }
}

$a = new a;
$a->setupb();
echo "<pre>This workx!\r\n";
echo serialize($a);

?>


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

[2003-07-04 02:13:24] [EMAIL PROTECTED]

No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Open". Thank you.

(DO NOT use "Add Comment" on your own bug report!)


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

[2003-06-30 04:18:01] hos dot endre at dorsum dot hu

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.

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

[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