ID: 20187 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Feedback +Status: No Feedback Bug Type: Reproducible crash Operating System: win2k /iis5 PHP Version: 4.2.3 New Comment:
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. Previous Comments: ------------------------------------------------------------------------ [2002-10-31 09:03:15] [EMAIL PROTECTED] Please try using this CVS snapshot: http://snaps.php.net/php4-latest.tar.gz For Windows: http://snaps.php.net/win32/php4-win32-latest.zip It still shouldn't cause Access Violation. Could you check it with snapshot? ------------------------------------------------------------------------ [2002-10-31 07:39:47] [EMAIL PROTECTED] sorry ! it's a misreading of the __sleep function. to solve the problem , you only just have to return an array in this function. However, i don't know why the server sen dme this message ------------------------------------------------------------------------ [2002-10-31 05:05:25] [EMAIL PROTECTED] i'm simply want to serialize a class wich contain a __sleep function and i've got this message : PHP has encountered an Access Violation at 019E7712 if i delete the __sleep function this message disappear. config : session_auto_start : off; the following script reproduce the problem : <?php require_once('config.inc.php'); class kuru_theme { var $Sql; var $Forum_List; function kuru_theme() {} function __sleep() { $this->Sql = 1; } } session_save_path($GLOBALS['SessionPath']); session_start(); list($action, $objet) = each($_GET); switch($action){ case('start'): $my_theme = new kuru_theme(); print '<a href="forum.php?list=1">essai</a>'; $_SESSION['forum'] = serialize($my_theme); break; case('list'): $my_theme = unserialize($_SESSION['forum']); break; } ?> ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=20187&edit=1
