php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #3425 Can't access any ISAPI variables under PHP4B3
Submitted: 2000-02-08 03:17 UTC Modified: 2000-02-13 02:14 UTC
From: pmm at uninova dot pt Assigned:
Status: Closed Package: Scripting Engine problem
PHP Version: 4.0 Beta 3 OS: WINNT4SP5
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: pmm at uninova dot pt
New email:
PHP Version: OS:

 

 [2000-02-08 03:17 UTC] pmm at uninova dot pt
I'm using PHP4B3 as an ISAPI module under IIS4.

The following example:

<?php

  echo("-->".$ALL_HTTP."<--<BR>");
  echo("-->".$PATH_INFO."<--<BR>");
  echo("-->".$PATH_TRANSLATED."<--<BR>");
  echo("-->".$SCRIPT_NAME."<--<BR>");
  echo("-->".$SERVER_NAME."<--<BR>");

  echo("-->".$COMPUTERNAME."<--<BR>");

  phpinfo();
  
?>

produces:

--><--
--><--
--><--
--><--
--><--
-->PC-PMM<--

but all variables are set, as I can see in phpinfo(),
PATH_INFO=/index.php4
...

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2000-02-10 16:18 UTC] zeev at cvs dot php dot net
The ISAPI module doesn't define the ISAPI variables;  Rather, it parses ALL_HTTP and creates variables from it.  Mostly all of the interesing information in is the ALL_HTTP variable.
 [2000-02-13 02:14 UTC] zeev at cvs dot php dot net
On second thought (and upon a second look on the various ISAPI variables), I made them register themselves as Server variables as well.
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Thu Jul 03 20:01:34 2025 UTC