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
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
18 + 28 = ?
Subscribe to this entry?

 
 [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 22:01:29 2024 UTC