summaryrefslogtreecommitdiff
path: root/sapi/cgi/fastcgi.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed bug #39020 (PHP in FastCGI server mode crashes)Dmitry Stogov2006-10-161-3/+20
|
* Fix for bug #38757 (MultiPart Form Uploads fail with FastCGI)Dmitry Stogov2006-09-131-1/+1
|
* Don't try to do safe connection close in case of FastCGI protocol errorDmitry Stogov2006-09-111-3/+5
|
* Fixed "signed/unsigned mismatch" warning.Dmitry Stogov2006-09-041-1/+1
|
* MFH: sa_len compile fix for IRIXIlia Alshanetsky2006-08-201-5/+5
| | | | | # Patch by Sascha
* Removed warningDmitry Stogov2006-06-131-1/+1
|
* Fixed bug #37496 (FastCGI output buffer overrun)Dmitry Stogov2006-05-251-2/+5
|
* 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-151-96/+63
| | | | | | | - Optimized access to FastCGI environment using HashTable instead of linear search - Allowed PHP_FCGI_MAX_REQUESTS=0 to disable PHP die - Allowed PHP_FCGI_CHILDREN=0 to disable PHP spawn workers
* Fixed bug #37376 (fastcgi.c compile fail with gcc 2.95.4).Ilia Alshanetsky2006-05-091-5/+7
|
* Fixed bug #37313 (sigemptyset() used without including <signal.h>). (jdolecek)Dmitry Stogov2006-05-051-1/+1
|
* Fixed bug #37205 (incompatibility with mod_fastcgi)Dmitry Stogov2006-05-031-17/+4
|
* Fixed incompatibility with isapi_fcgi.dllDmitry Stogov2006-05-031-0/+4
|
* Proper fix for bug #37205Dmitry Stogov2006-04-271-0/+13
|
* 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)
* iFixed compilation on SolarisDmitry Stogov2006-04-241-0/+4
|
* Fixed SUN_LEN calculationDmitry Stogov2006-04-181-2/+1
|
* - Warning fixes by StephMarcus Boerger2006-02-261-1/+1
|
* Fix build on win32Frank M. Kromann2006-02-041-2/+5
|
* Fixed bug #36158 (SIGTERM is not handled correctly when running as a FastCGI ↵Dmitry Stogov2006-02-031-2/+8
| | | | server)
* Reimplement FastCGI interfaceDmitry Stogov2006-02-021-0/+908
Due to licensing restrictions that actually don't allow anybody to use the libfcgi code without prior approval from Open Market, which is impossible to obtain - we decided to reimplement this interface from scratch. The result is actually slightly faster, and more importantly, clear of any copyright issues.