summaryrefslogtreecommitdiff
path: root/sapi/isapi
Commit message (Collapse)AuthorAgeFilesLines
...
* (Zeus) Re-added some server variables that will be used.Ben Mansell2000-12-131-15/+17
| | | | | Also added DOCUMENT_ROOT, was missing before for non-Win32
* 2nd step towards auto-creditsHartmut Holzgraefe2000-11-201-0/+2
|
* Update SAPI modules to interface with the new TSRM.Zeev Suraski2000-11-181-1/+1
| | | | | Enable thread-safety memory debugging in ISAPI when in debug mode
* Unify handling of aborted connectionsSascha Schumann2000-10-291-1/+1
|
* i'll place the reg file in the win32 folderDaniel Beulshausen2000-10-221-5/+0
| | | | | cause it doesn't really fit in this folder
* (Zeus-specific) Don't GetServerVariable() for vars which Zeus doesn't useBen Mansell2000-09-191-20/+22
|
* Fixed bug which could truncate PHP_SELFBen Mansell2000-09-191-0/+1
|
* Restore the headers_only test to the centralized SAPI startup. If ↵Zeev Suraski2000-09-081-5/+0
| | | | | | | necessary, it can be overriden in the activate() callback.
* Fix ISAPI compilationZeev Suraski2000-09-041-3/+3
|
* - Defining TSRM_WIN32 in each and every dsp sucked. Revert this changeAndi Gutmans2000-09-021-3/+3
|
* - More Windows build fixesAndi Gutmans2000-09-021-3/+3
|
* - Change spaces to tabAndi Gutmans2000-08-281-1/+1
|
* changed the output directorys from the windowsbuildsDaniel Beulshausen2000-08-231-3/+3
|
* The status quo in PHP is that the current directory is initializedSascha Schumann2000-08-201-11/+0
| | | | | | | | | to the directory where the executing script is located. Since this needs to be implemented for all SAPI modules anyway, this change moves the functionality to php_execute_script() and gets rid of the per-module code.
* REQUEST_URI is a handy server variable, lets pass it onto ISAPI/PHPBen Mansell2000-08-181-0/+1
|
* (send_headers) Removed code freeing http_status_line, this is performedBen Mansell2000-08-171-3/+0
| | | | | | | | in sapi_send_headers() # Looks like a similar problem in sapi/pi3web/pi3web_sapi.c as well. # I can't test this though, so I'm being paranoid and not changing that code. # Could someone please check this?
* Fix zend_fiel_handle handling. Should fix URL includeStanislav Malyshev2000-08-131-0/+1
| | | | | and various opened_path inconsistencies.
* Fix a couple of bugs in the ISAPI module:Zeev Suraski2000-08-091-9/+8
| | | | | | - I think NTLM should work now - Fix the DOCUMENT_ROOT code
* Add DOCUMENT_ROOTZeev Suraski2000-08-071-0/+16
|
* Heads up! I have moved the headers_only and response_code checks out ofRasmus Lerdorf2000-08-021-0/+6
| | | | | | | | | | | | | | | SAPI and down into the individual SAPI modules. I have made the appropriate changes in all the SAPI modules, but please verify these. The reason for this change is that Apache sometimes will feed PHP a request_method of GET but have r->header_only set to true. This happens in an ErrorDocument redirect. In this same scenario we want to preserve the status code as well instead of just overwriting it with a 200 and losing this information. For now the other sapi modules act exactly as before since they probably do not make this distinction, and they may not even have a valid response code this early in the request. @ Fix HEAD request bug on an Apache ErrorDocument redirect and preserve @ the status code across the redirect as well. (Rasmus)
* Set version number on DLLsZeev Suraski2000-06-301-3/+3
|
* Separate plain name returned by php_sapi_module() and pretty nameAndrei Zmievski2000-06-261-2/+3
| | | | | used for output.
* C++ // comments are evil ...Hartmut Holzgraefe2000-06-161-2/+4
|
* Fix Windows .dsp'sZeev Suraski2000-06-111-3/+3
|
* Wipe out acconfig.h.in and rewrite some checks to use PHP_ARG_ENABLE.Sascha Schumann2000-06-081-1/+1
|
* Move main.h to php_main.h.Sascha Schumann2000-06-051-1/+1
|
* - Allow all functions that receive user-defined function callbacks to acceptZeev Suraski2000-06-031-3/+3
| | | | | | | | | an array that contains an object and a method name, in place of a function name, e.g. usort($array, array($obj, "ObjSort")) (I checked the code in array.c and basic_functions.c, other code which uses call_user_function() may still force the function_name argument to be of type IS_STRING, which prevents this feature from working - and is no longer necessary)
* Fixed check for Zeus under Solaris (/bin/sh doesn't understand '!')Ben Mansell2000-05-221-3/+1
|
* Update the license with the new clause 6Zeev Suraski2000-05-181-2/+2
|
* Define PHP_SELF properly with Zeus+ISAPIBen Mansell2000-05-151-0/+4
|
* Change reentrancy API to always use the php prefix.Sascha Schumann2000-05-041-2/+2
| | | | | | Check for the declaration of reentrant functions, so that we can use them in non-ZTS mode on all platforms.
* Remove trailing empty linesSascha Schumann2000-05-011-4/+0
|
* Large test commit IVSascha Schumann2000-05-011-0/+1
|
* Large commit test IIISascha Schumann2000-05-011-0/+3
|
* Overall UNIX build system improvements:Sascha Schumann2000-04-301-6/+1
| | | | | | | | | * Makefile header is now completely dynamic * Absolute paths in (top_)?(src|build)dir and VPATH (fixes Tru64 support) * VPATH does not contain variables anymore (fixes UnixWare support)
* author fixesZeev Suraski2000-04-191-2/+2
|
* Improve performance of the PHP_SELF registration under ISAPIZeev Suraski2000-04-191-2/+6
|
* Adding $PHP_SELF variable for compatibility with other platformsFrank M. Kromann2000-04-151-0/+2
|
* - Change PHP_ to V_ (directory & file functions)Andi Gutmans2000-04-151-1/+1
|
* @- Zeus Webserver support (version 3.3.6+) for ISAPIBen Mansell2000-04-121-7/+12
|
* prettyingColin Viebrock2000-04-071-3/+2
|
* The ISAPI module was incompatible with the CGI fix, which ruined POST'sZeev Suraski2000-04-051-2/+1
|
* - Hopefully got most of them. We also need a chdir_file function likeAndi Gutmans2000-03-301-1/+1
| | | | | for Apache.
* I suppose errors should be printed prior to endthreadShane Caraveo2000-03-191-1/+3
|
* do this only on win32Shane Caraveo2000-03-191-1/+8
|
* just a little more detail in exception reportShane Caraveo2000-03-191-5/+15
|
* - From CODING_STANDARDS:Zeev Suraski2000-02-261-1/+3
| | | | | | | | | | | [6] NEVER USE strncat(). If you're absolutely sure you know what you're doing, check its man page again, and only then, consider using it, and even then, try avoiding it. strncat() is your enemy! - Fix several SAPI services, get rid of the default_content_type (it's always composed of the mime type and charset now). - Win32 works again
* - Fix Win32 build in Release_TS* modesZeev Suraski2000-02-241-1/+1
|
* the pipe is breaking all the timeZeev Suraski2000-02-191-2/+2
|
* *** empty log message ***Zeev Suraski2000-02-191-1/+2
|