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
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: 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

Add a Patch

Pull Requests

Add a Pull Request

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-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 18 10:01:28 2024 UTC