summaryrefslogtreecommitdiff
path: root/sapi/cgi
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Good catch CoverityRasmus Lerdorf2011-08-071-0/+1
| | |
* | | - remove magic quotes support, functions are kept (see the NEWS entry for ↵Pierre Joye2011-07-221-5/+0
| | | | | | | | | | | | the details) for BC reasons but do not allow to set enable MQ
* | | - Fixed crash in fastcgi (related to zend signals changes)Felipe Pena2011-06-051-1/+2
|/ /
* | Added checks for malformated FastCGI requests (Edgar Frank)Dmitry Stogov2011-01-191-6/+6
| |
* | - Year++Felipe Pena2011-01-013-5/+5
| |
* | - Implemented FR #53271, FR #52410 (Building multiple PHP binary SAPIs and ↵Jani Taskinen2010-11-132-19/+22
| | | | | | | | | | | | | | one SAPI module the same time) # Bug #53271, Bug #52410
* | Reverted wrong patchDmitry Stogov2010-09-201-1/+1
| |
* | Fix incompatible types, we need to use a char here for recv()Kalle Sommer Nielsen2010-09-191-1/+1
| |
* | - unused, double declaredPierre Joye2010-09-151-1/+1
| |
* | Fixed bug #46723 (FastCGI persistent connection is incredibly slow due to ↵Dmitry Stogov2010-09-061-19/+49
| | | | | | | | TCP ack delay).
* | - Fixed compiler warning (missing return statement)Felipe Pena2010-09-011-0/+2
| |
* | Reduced overhead of FastCGI using near-perfect hash function and ↵Dmitry Stogov2010-09-013-161/+269
| | | | | | | | predcalculated hash values.
* | invalid lengthDmitry Stogov2010-09-011-1/+1
| |
* | Don't check FCGI_WEB_SERVER_ADDRS for UNIX socketsDmitry Stogov2010-08-271-7/+9
| |
* | Added apache compatible functions (apache_child_terminate, getallheaders, ↵Dmitry Stogov2010-08-273-1/+202
| | | | | | | | apache_request_headers, apache_response_headers) to FastCGI SAPI
* | Don't try to read the rest of malformed FCGI requests, close immediately. It ↵Dmitry Stogov2010-08-251-4/+6
| | | | | | | | saves one recv() call for proper FCGI request.
* | wsDmitry Stogov2010-08-251-34/+34
| |
* | Nuke compiler warning, wrong fix that shouldn't have been in the previously ↵Kalle Sommer Nielsen2010-08-181-1/+1
| | | | | | | | commit
* | Pass the TSRMS pointers to sapi_module_struct.log_message, this saves some ↵Kalle Sommer Nielsen2010-08-181-3/+1
| | | | | | | | TSRMLS_FETCH() calls in a few of our SAPI's
* | Use the TSRMLS_DC/TSRMLS_CC macros instead of TSRMLS_FETCH()Kalle Sommer Nielsen2010-08-183-12/+10
| |
* | Fixed ZTS buildDmitry Stogov2010-08-181-1/+3
| |
* | improved performance of FastCGI request parsingDmitry Stogov2010-08-183-116/+294
| |
* | typoDmitry Stogov2010-07-201-1/+1
| |
* | Use zend_stream API to open main PHP script in CGI/FastCGI. This allows to ↵Dmitry Stogov2010-07-071-15/+67
| | | | | | | | override the open function by opcode caches and eliminate the actual open syscall.
* | reduced request processing overheadDmitry Stogov2010-07-053-24/+24
| |
* | - MF5.3: Reverted fix for bug #48930 (due binary compatibility breakage)Felipe Pena2010-06-301-2/+0
| | | | | | | | | | # To commit a new common fix
* | - Improved initializationFelipe Pena2010-06-271-1/+1
| |
* | - Fixed bug #48930 (__COMPILER_HALT_OFFSET__ incorrect in PHP >= 5.3)Felipe Pena2010-06-271-0/+2
| |
* | fix micro-memleaks (happened once per process)Antony Dovgal2010-06-081-0/+3
| |
* | * implement new output API, fixing some bugs and implementing some feature Michael Wallner2010-05-311-8/+5
| | | | | | | | | | | | | | | | | | | | | | requests--let's see what I can dig out of the bugtracker for NEWS-- and while crossing the road: * implemented new zlib API * fixed up ext/tidy (what was "s&" in zend_parse_parameters() supposed to do?) Thanks to Jani and Felipe for pioneering.
* | - Fix #51688, ini per dir crashes when invalid document root are givenPierre Joye2010-04-301-0/+3
|/
* - Reverted r296062 and r296065Jani Taskinen2010-03-121-14/+23
|
* MFH: Improved / fixed output buffering (Michael Wallner)Jani Taskinen2010-03-111-23/+14
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-033-5/+5
|
* fix minor leak in CGI sapi (happened once per child) Antony Dovgal2009-12-231-0/+3
|
* Fixed bug #50168 (FastCGI fails with wrong error on HEAD request to ↵Dmitry Stogov2009-11-301-10/+15
| | | | non-existant file)
* fix crash on empty doc_rootAntony Dovgal2009-10-201-1/+1
|
* improve fix for #49767 and #47627 - make PHP report Stanislav Malyshev2009-10-161-1/+1
| | | | | "no script" on 404 again
* - #48779, fix another use case where / usage may differPierre Joye2009-10-151-4/+0
|
* - #48779, improve fix, drop usage of _tolower and use zend_strtolowerPierre Joye2009-10-121-2/+2
|
* - Fixed build and comment-styleFelipe Pena2009-10-091-4/+4
|
* - changed ini file directives [PATH=](on Win32) and [HOST=](on all) to be ↵Garrett Serack2009-10-091-2/+22
| | | | case insensitive (garretts)
* - Simplified a bit and fixed possible memory corruption and definate leak.Jani Taskinen2009-09-101-23/+6
|
* - Drop unused varFelipe Pena2009-09-051-1/+0
|
* - Fixed bug #49182 (PHP CGI always outputs the shebang line)Jani Taskinen2009-09-051-0/+24
|
* - fix buildPierre Joye2009-08-261-2/+2
|
* Fixed variable clobberingIlia Alshanetsky2009-08-261-5/+5
|
* - Fix this again :)Jani Taskinen2009-07-251-1/+3
|
* - Fix testJani Taskinen2009-07-251-1/+1
|
* - #48624 .user.ini never gets parsedPierre Joye2009-06-221-1/+1
|