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
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:
36 - 32 = ?
Subscribe to this entry?

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