php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #4498 unhandled exception
Submitted: 2000-05-18 13:01 UTC Modified: 2000-07-26 00:09 UTC
From: guido at comlog dot nl Assigned:
Status: Closed Package: Session related
PHP Version: 4.0 Release Candidate 2 OS: NT4.0 SP5 WKS & SRV
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: guido at comlog dot nl
New email:
PHP Version: OS:

 

 [2000-05-18 13:01 UTC] guido at comlog dot nl
The HTTP server encountered an unhandled exception while processing the ISAPI Application 'E:\php4\php4isapi.dll'. 

I called the following script:
session_start();
session_register("SESSION");

if (! isset($SESSION)) {
	$SESSION["count"] = 0;
	echo "<li>Counter initialized, please reload this page to see it increment";
} else {
	echo "<li>Waking up session $PHPSESSID";
	$SESSION["count"]++;
}
echo "<li>The counter is now $SESSION[count] ";

phpinfo() works fine. Any call to session functions fail.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2000-07-26 00:09 UTC] zak@php.net
Please try the most recent release of PHP.  If the problem occurs, please submit a new bug report. Also, the ISAPI version is not as robust as the CGI version.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 16:01:28 2024 UTC