| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Use zend_first_try | Zeev Suraski | 2001-08-08 | 1 | -1/+1 | |
| | | ||||||
| * | more tsrm cleanup | Sascha Schumann | 2001-08-05 | 1 | -2/+1 | |
| | | ||||||
| * | further tsrm cleanup | Sascha Schumann | 2001-08-05 | 1 | -2/+1 | |
| | | ||||||
| * | Remove more duplicate TSRMLS_FETCH() calls. | Sebastian Bergmann | 2001-08-05 | 1 | -2/+0 | |
| | | ||||||
| * | More TSRMLS_FETCH work. Got it under 400 now. | Zeev Suraski | 2001-07-31 | 1 | -1/+1 | |
| | | ||||||
| * | More TSRMLS_FETCH work | Zeev Suraski | 2001-07-31 | 1 | -5/+5 | |
| | | ||||||
| * | Zend compatibility patch | Zeev Suraski | 2001-07-30 | 1 | -1/+1 | |
| | | ||||||
| * | Redesigned thread safety mechanism - nua nua | Zeev Suraski | 2001-07-28 | 1 | -18/+17 | |
| | | ||||||
| * | - Get rid of ELS_*(), and use TSRMLS_*() instead. | Zeev Suraski | 2001-07-27 | 1 | -6/+6 | |
| | | | | | | | | - 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..catch | Zeev Suraski | 2001-07-21 | 1 | -54/+56 | |
| | | | | | | Note: You may *not* return directly from a catch block | |||||
| * | Updated | Holger Zimmermann | 2001-07-21 | 1 | -2/+2 | |
| | | ||||||
| * | Updated | Holger Zimmermann | 2001-07-20 | 1 | -1/+1 | |
| | | ||||||
| * | Updated | Holger Zimmermann | 2001-07-20 | 1 | -1/+1 | |
| | | ||||||
| * | Updated PHP mode, fixed indent mode, added syntax check mode | Holger Zimmermann | 2001-07-20 | 2 | -19/+39 | |
| | | ||||||
| * | add/fix pi3web dsp | Daniel Beulshausen | 2001-04-28 | 1 | -1513/+47 | |
| | | ||||||
| * | Contribute the MSVC project file. Someone could add this to the php4ts ↵ | Holger Zimmermann | 2001-04-08 | 1 | -0/+1602 | |
| | | | | | workspace. | |||||
| * | Reorganized the #define's in the header. | Holger Zimmermann | 2001-04-08 | 2 | -31/+31 | |
| | | ||||||
| * | Updated copyright agreement regarding move of Pi3Web to sourceforge. | Holger Zimmermann | 2001-04-08 | 1 | -2/+3 | |
| | | ||||||
| * | Add INSTALL_ROOT variable to specify install location. | Wilfredo Sanchez | 2001-04-03 | 1 | -1/+1 | |
| | | ||||||
| * | Renamed the AC_ prefixed macros defined in acinclude.m4 to PHP_* prefixes. | foobar | 2001-03-27 | 1 | -4/+4 | |
| | | | | | | # Heads up people! I tested this before committing but you never know.. | |||||
| * | - Fix copyright notices with 2001 | Andi Gutmans | 2001-02-26 | 1 | -1/+1 | |
| | | ||||||
| * | Many patches. I hope I remember them all: | Zeev Suraski | 2001-01-02 | 1 | -6/+6 | |
| | | | | | | | | | | - 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. | |||||
| * | Minor update regarding new phpinfo table format. Moved pi3web_sapi.h to the ↵ | Holger Zimmermann | 2000-12-28 | 2 | -2/+93 | |
| | | | | | | | | | | | sapi module. PR: Submitted by: Reviewed by: Obtained from: Pi3Web | |||||
| * | 2nd step towards auto-credits | Hartmut Holzgraefe | 2000-11-20 | 1 | -0/+2 | |
| | | ||||||
| * | Update SAPI modules to interface with the new TSRM. | Zeev Suraski | 2000-11-18 | 1 | -1/+1 | |
| | | | | | | Enable thread-safety memory debugging in ISAPI when in debug mode | |||||
| * | Unify handling of aborted connections | Sascha Schumann | 2000-10-29 | 1 | -0/+3 | |
| | | ||||||
| * | Restore the headers_only test to the centralized SAPI startup. If ↵ | Zeev Suraski | 2000-09-08 | 1 | -5/+0 | |
| | | | | | | | | necessary, it can be overriden in the activate() callback. | |||||
| * | Set file_handle.opened_path to NULL | Sascha Schumann | 2000-08-22 | 1 | -0/+1 | |
| | | ||||||
| * | Fix build | Zeev Suraski | 2000-08-20 | 1 | -2/+2 | |
| | | ||||||
| * | The status quo in PHP is that the current directory is initialized | Sascha Schumann | 2000-08-20 | 1 | -13/+2 | |
| | | | | | | | | | | 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. | |||||
| * | Heads up! I have moved the headers_only and response_code checks out of | Rasmus Lerdorf | 2000-08-02 | 1 | -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) | |||||
| * | various version 2.0 and 2.01 licenses -> 2.02 | David Croft | 2000-07-24 | 1 | -5/+3 | |
| | | ||||||
| * | Separate plain name returned by php_sapi_module() and pretty name | Andrei Zmievski | 2000-06-26 | 1 | -1/+2 | |
| | | | | | | used for output. | |||||
| * | Changed strtok_r to php_strtok_r | Holger Zimmermann | 2000-06-18 | 1 | -2/+2 | |
| | | ||||||
| * | Cosmetic cleanups | Sascha Schumann | 2000-06-18 | 1 | -12/+8 | |
| | | ||||||
| * | Readd pi3web_sapi.c and reset flags. | Sascha Schumann | 2000-06-18 | 1 | -0/+461 | |
| | | ||||||
| * | Added Pi3Web support | Holger Zimmermann | 2000-06-17 | 4 | -0/+83 | |
