ID: 16734 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Open +Status: Closed Bug Type: Session related Operating System: Windows 2000 PHP Version: 4.1.2 New Comment:
This should be fixed in 4.2.0. (to be released today) Remember to replace ALL php4ts.dll files in your system with the one found in the release package. Previous Comments: ------------------------------------------------------------------------ [2002-04-22 13:33:32] [EMAIL PROTECTED] When running the following script with register_globals off or on, i get proper results (the counter increments) under my production server (freebsd 4.5, php 4.1.2). Under my devoplement box (Win 2k), I get nothing: <?php session_start(); if (!isset($_SESSION['count'])) { $_SESSION['count'] = 0; } else { $_SESSION['count']++; } echo $_SESSION['count']; ?> Under win2k the session file is created in the proper directory, but is not populated with the registered variables. The cookie is set on the client side. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=16734&edit=1