php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #4935 Error on session_start()
Submitted: 2000-06-09 17:21 UTC Modified: 2000-07-26 20:22 UTC
From: mrtuzi at yahoo dot com Assigned:
Status: Closed Package: Session related
PHP Version: 4.0 Release Candidate 2 OS: Windows NT 4.0 build 1381 (sp6)
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: mrtuzi at yahoo dot com
New email:
PHP Version: OS:

 

 [2000-06-09 17:21 UTC] mrtuzi at yahoo dot com
session_test.php:
<?php
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] ";
?>

Using IIS4 & the precompiled PHP 4.0 binaries dated May 22 2000.
Using the isapi dll
Event viewer error message:

The HTTP server encountered an unhandled exception while processing the ISAPI Application '
php4isapi + 0x1127
wam!SE_TABLE::ReleaseExtension(class HSE_BASE *) + 0x526
wam!SE_TABLE::ReleaseExtension(class HSE_BASE *) + 0x1313
wam!SE_TABLE::ReleaseExtension(class HSE_BASE *) + 0x11A8
w3svc!IIS_SERVER_INSTANCE::QueryServerSize(void)const  + 0xC8
w3svc!PARAM_LIST::CanonList(void) + 0x2BE8
w3svc!HTTP_REQ_BASE::BuildURLMovedResponse(class BUFFER *,class STR *,unsigned long,int) + 0x377E
w3svc!HTTP_REQ_BASE::BuildURLMovedResponse(class BUFFER *,class STR *,unsigned long,int) + 0x36EE
w3svc!HTTP_REQ_BASE::TestConnection(void) + 0xA42
w3svc!ScanForTerminator(char const *) + 0x386
w3svc!HTTP_REQ_BASE::CheckForBasicAuthenticationHeader(char *) + 0x30FC
w3svc!HTTP_REQ_BASE::CheckForBasicAuthenticationHeader(char *) + 0x3094
ISATQ!_AtqPostCompletionStatus@8 + 0x645
ISATQ!_AtqPostCompletionStatus@8 + 0x862
KERNEL32!lstrcmpiW + 0xBE
'. 

Hope this helps.

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2000-07-26 20:22 UTC] zak@php.net
Please try a new release of PHP.  If the problem re-occurs, please submit a new bug report.
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Mon May 12 09:01:27 2025 UTC