summaryrefslogtreecommitdiff
path: root/sapi
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tagBEFORE_NEW_OUTPUT_APISVN Migration2006-06-027-2533/+0
| | | | 'BEFORE_NEW_OUTPUT_API'.
* - call ap_set_content_type() only once, else each time we call it,Michael Wallner2006-05-282-6/+15
| | | | | configured output filters for that content type will be added
* Fixed bug #37496 (FastCGI output buffer overrun)Dmitry Stogov2006-05-251-2/+5
|
* Fixed bug #37256 (php-fastcgi dosen't handle connection abort)Dmitry Stogov2006-05-241-1/+1
|
* Fixed bug #37341 ($_SERVER in included file is shortened to two entries, if ↵Dmitry Stogov2006-05-241-2/+6
| | | | $_ENV gets used).
* Fixed bug #37496 (FastCGI output buffer overrun)Dmitry Stogov2006-05-221-15/+27
|
* fix typoAntony Dovgal2006-05-221-1/+1
|
* - Removed source compatibility with libfcgiDmitry Stogov2006-05-153-228/+155
| | | | | | | | - Optimized access to FastCGI environment using HashTable instead of linear sear ch - Allowed PHP_FCGI_MAX_REQUESTS=0 to disable PHP die - Allowed PHP_FCGI_CHILDREN=0 to disable PHP spawn workers
* We might want to consider moving this to a long throughout the sapi code,Rasmus Lerdorf2006-05-131-1/+1
| | | | | but for now switch to a signed int.
* Fixed bug #37306 (max_execution_time = max_input_time).Dmitry Stogov2006-05-111-2/+2
|
* MFB input filter hook for getenv()Rasmus Lerdorf2006-05-101-1/+5
|
* MFB: Fixed bug #37376 (fastcgi.c compile fail with gcc 2.95.4).Ilia Alshanetsky2006-05-091-5/+7
|
* MFB: Enable parallel build against Apache 2.2 libs and headersEdin Kadribasic2006-05-071-0/+17
|
* Fixed bug #37313 (sigemptyset() used without including <signal.h>). (jdolecek)Dmitry Stogov2006-05-051-1/+1
|
* plug leakAntony Dovgal2006-05-031-0/+1
|
* Fixed bug #37205 (incompatibility with mod_fastcgi)Dmitry Stogov2006-05-032-20/+6
|
* Fixed incompatibility with isapi_fcgi.dllDmitry Stogov2006-05-031-0/+4
|
* Remove hiding of authorization headers completely because safe mode canceledUwe Schindler2006-04-291-18/+14
|
* More ZSTR() fixesFrank M. Kromann2006-04-291-1/+1
|
* Proper fix for bug #37205Dmitry Stogov2006-04-272-0/+14
|
* Revert wrong fixDmitry Stogov2006-04-261-6/+4
|
* Fixed bug #37205 (Serving binary content/images fails with "comm with server ↵Dmitry Stogov2006-04-261-4/+22
| | | | aborted" FastCGI err)
* MFB: Correctly import external data (#33292)Edin Kadribasic2006-04-261-0/+5
|
* Fixed compilation on SolarisDmitry Stogov2006-04-241-0/+4
|
* MFBAndrei Zmievski2006-04-231-1/+1
|
* Fix Win32 build. NULL_ZSTR was converted to ZSTR(NULL_ZSTR)Frank M. Kromann2006-04-221-1/+1
|
* Fixed SUN_LEN calculationDmitry Stogov2006-04-181-2/+1
|
* Fixed memory leaksDmitry Stogov2006-04-181-0/+4
|
* CGI anf FastCGI assume $_SERVER and $_ENV have the same values,Dmitry Stogov2006-04-071-0/+11
| | | | | so we don't need construct the same arrays twich and may just copy it
* Removed unnecessary copyingDmitry Stogov2006-04-071-4/+4
|
* Removed extra space in the Content-Type header for logosIlia Alshanetsky2006-04-021-2/+1
| | | | | Simplified stderr error reporting in apache sapi.
* MTH: Allowed '-b' with UNIX socketsDmitry Stogov2006-03-231-1/+14
|
* MFB: fix php_apache_sapi_header_handler() modifying sapi_headerMichael Wallner2006-03-192-2/+6
|
* Fix compiler errors by using NULL_ZSTR where zstr is expected.Andrei Zmievski2006-03-171-1/+1
| | | | | | # I guess we need to use NULL_ZSTR instead of NULL when passing NULL to # functions that expect zstr parameter.
* Unicode support for dl() patch.Dmitry Stogov2006-03-173-10/+23
|
* Optimized FastCGI SAPI check. Check for ini options only once.Dmitry Stogov2006-03-171-21/+25
|
* Disabled dl(). Now it is enabled only when a SAPI layer registers it ↵Dmitry Stogov2006-03-163-5/+10
| | | | explicitly. Only CLI, CGI and EMBED do this.
* - remove magic_quotes_gpc, magic_quotes_runtime, magic_quotes_sybasePierre Joye2006-03-081-4/+0
| | | | | | | (calling ini_set('magic_....') returns 0|false - get_magic_quotes_gpc, get_magic_quotes_runtime are kept but always return false - set_magic_quotes_runtime raises an E_CORE_ERROR
* Fix for RISC OSAlex Waugh2006-03-071-0/+1
|
* Improve DOCUMENT_ROOT settingAlex Waugh2006-03-071-3/+6
|
* Nuke safe_mode from sapi/*Ilia Alshanetsky2006-03-076-35/+17
| | | | | # only main/ remains at this point, this is the next step
* - remove register_globals support (aka "Kill the f***ing thing" :)Pierre Joye2006-03-073-12/+2
|
* Unicode support: zstr unionDmitry Stogov2006-03-016-21/+21
|
* - List --rf/--rc/--re only with enabled reflectionJohannes Schlüter2006-02-211-0/+2
|
* - Fix build with readline-supportJohannes Schlüter2006-02-211-7/+7
|
* Portable unicode string API:Dmitry Stogov2006-02-211-3/+3
| | | | | | | | - use the same type (int) for zval.value.usr.len and zval.value.str.len - use union "zstr" as char*/UChar* mixture instead of void* - Z_UNISTR() and Z_UNILEN() no longer check for Z_TYPE() - nuke int32_t from ZE (not finisned)
* MF51: fix memory leak and possible invalid readsAntony Dovgal2006-02-151-4/+8
|
* fix #36400 (Custom 5xx error does not return correct HTTP response error code)Antony Dovgal2006-02-151-1/+20
|
* Made server wide switch for unicode on/off (according to PDM).Dmitry Stogov2006-02-132-66/+62
|
* MFB51 Fix build on win32Frank M. Kromann2006-02-041-2/+5
|