Re: [PHP-DEV] [PATCH] sapi/nsapi/nsapi.c

2003-02-03 Thread Uwe Schindler
I worked this afternon on rewriting a lot of things in the module which now gives the php script almost the same variables like the apache sapi module (as provided). For comparison: same request on two different servers, one with apache other with iplanet: iplanet: _GET["huhu"] haha _SERVER["QU

Re: [PHP-DEV] [PATCH] sapi/nsapi/nsapi.c

2003-02-03 Thread Shane Caraveo
Excelent, The CGI vars are correct. One less sapi module to deal with :) Shane Uwe Schindler wrote: The variables you explain are surely there. But a lot of scripts depend on other headers, which the client sent. The SAPI module only creates Variables for a subset of them (HTTP_USER_AGENT). Bu

Re: [PHP-DEV] [PATCH] sapi/nsapi/nsapi.c

2003-02-03 Thread Uwe Schindler
The variables you explain are surely there. But a lot of scripts depend on other headers, which the client sent. The SAPI module only creates Variables for a subset of them (HTTP_USER_AGENT). But not for all like the other SAPI modules. So with this patch you get for example the missing HTTP_HOS

[PHP-DEV] [PATCH] sapi/nsapi/nsapi.c

2003-02-02 Thread Uwe Schindler
I submit a patch for the NSAPI SAPI module and hope that it fixes a lot of problems I have (and others as seen in the bug database). As a lot of variables which are needed by a lot of PHP scripts which use $_SERVER["..."] are not transferred correctly to the PHP script that runs in iPlanet Webs