summaryrefslogtreecommitdiff
path: root/sapi/isapi/php4isapi.c
Commit message (Collapse)AuthorAgeFilesLines
* - Gaurd for problems in fault servers (fixes problem with Sambar 5.2)Derick Rethans2002-04-181-1/+1
|
* - Fix whitespace (guys, please try to stick with the php4 tree style as farZeev Suraski2002-03-191-1/+1
| | | | | | | as indentation/newlines go, and also as far as using {} even on if's that have single statements) - Fix Windows build
* Maintain headers.Sebastian Bergmann2002-02-281-1/+1
|
* Fix incompatibility with Windows .NET (IIS 6)Zeev Suraski2001-12-221-0/+1
| | | | | May also improve stability under other Windows versions
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* Fix build if PHP_ENABLE_SEH is not definedZeev Suraski2001-11-251-1/+1
|
* * fix module struct in rest of sapi modulesStig Bakken2001-10-121-0/+2
|
* Undo Z_ subst for sapi and ext/yazJeroen van Wolffelaar2001-09-271-1/+1
|
* Back-substitute for Z_* macro's. If it breaks some extension (the script ↵Jeroen van Wolffelaar2001-09-251-1/+1
| | | | isn't optimal, it parses for example var->zval.value incorrect) please let me know.
* Reverse patches that slipped in by mistake in a whitespace patch. TheyZeev Suraski2001-08-131-31/+34
| | | | | require some more work...
* WhitespaceZeev Suraski2001-08-111-34/+31
|
* Use zend_first_tryZeev Suraski2001-08-081-1/+1
|
* Adding missing TSRMLS_CCFrank M. Kromann2001-08-061-1/+1
|
* more tsrm cleanupSascha Schumann2001-08-051-2/+1
|
* - TSRMLS_FETCH workZeev Suraski2001-08-051-3/+3
| | | | | - whitespace fixes
* More TSRMLS_FETCH workZeev Suraski2001-07-311-6/+6
|
* Zend compatibility patchZeev Suraski2001-07-301-9/+5
|
* Redesigned thread safety mechanism - nua nuaZeev Suraski2001-07-281-44/+43
|
* - Get rid of ELS_*(), and use TSRMLS_*() instead.Zeev Suraski2001-07-271-29/+29
| | | | | | | - Move to the new ts_allocate_id() API This patch is *bound* to break some files, as I must have had typos somewhere. If you use any uncommon extension, please try to build it...
* Improved bailout mechanism, supports nested bailouts a-la try..catchZeev Suraski2001-07-211-86/+86
| | | | | Note: You may *not* return directly from a catch block
* Added support for Zeus SSL client certificate information.Ben Mansell2001-03-071-0/+61
| | | | | | | Added SERVER_SIGNATURE to the environment. Submitted by: daniel@zeus.com
* Thread hashtable was being initialized with a size of 1! Changed to 128 asBen Mansell2001-03-061-1/+5
| | | | | | | | a more sensible number. # Also could change the 'expected resources' parameter from 1, but I # haven't tested that bit yet ----------------------------------------------------------------------
* Added PHP_AUTH_USER, PHP_AUTH_PW and PHP_AUTH_TYPE environment variablesBen Mansell2001-02-271-0/+14
| | | | | | | for Zeus/ISAPI, so basic authenication works. Submitted by: daniel@zeus.com
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* Fixed non-threadsafe code: 'isapi_special_server_variables' was a staticBen Mansell2001-02-161-2/+1
| | | | | buffer, and not allocated per-connection. Bad bad bad!
* @ Support Zeus 3.3.8Ben Mansell2001-01-161-23/+51
| | | | | | | | | | | | | Added changes to environment variable manipulations, to support Zeus 3.3.8 and increase compatibility between Zeus/IIS/Apache. Now, URLs like http://foo.org/file.php/a/b/c/d work correctly. # While testing, it looks like IIS+ISAPI is mishandling URLs like the above. # The PATH_TRANSLATED given by ISAPI includes the /a/b/c/d bit of the URL, # so using this var to find the script file to open on disk will not work. # We now use SCRIPT_FILENAME if it is present (in Zeus 3.3.8) # IIS doesn't seem to set this variable, it might be necessary to mangle # SCRIPT_NAME and APPL_PHYSICAL_PATH together?
* define flag to turn off exception handlingShane Caraveo2001-01-071-2/+21
|
* Many patches. I hope I remember them all:Zeev Suraski2001-01-021-104/+154
| | | | | | | | | - Make sapi_module available to external modules (PHPAPI) - Make the php.ini path reported in phpinfo() always point to real full path of the php.ini file - Optimized the ISAPI module not to read unnecessary server variables and read necessary variables at most once.
* Fix Zeus' behaviour with URL, SCRIPT_NAME, SCRIPT_FILENAME, REQUEST_URIBen Mansell2000-12-151-4/+32
| | | | | | | | | environment variables PR: Submitted by: Reviewed by: Obtained from:
* (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
* 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
|
* (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.
* - Change spaces to tabAndi Gutmans2000-08-281-1/+1
|
* 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)
* 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
|
* Move main.h to php_main.h.Sascha Schumann2000-06-051-1/+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.
* author fixesZeev Suraski2000-04-191-2/+2
|