summaryrefslogtreecommitdiff
path: root/sapi
Commit message (Collapse)AuthorAgeFilesLines
* MFHArnaud Le Blanc2009-04-244-15/+15
|
* MFH: Inglés gramáticaHannes Magnusson2009-04-092-4/+4
|
* MFH: Fixed bug#47427 (-s outputs, not displays)Hannes Magnusson2009-04-092-4/+4
|
* - MFH: Fix ZTS buildFelipe Pena2009-04-081-5/+5
|
* MFH: Fixed bug #47893 (CLI aborts on non blocking stdout)Arnaud Le Blanc2009-04-071-1/+30
|
* MFH: Fixed compiler warningKalle Sommer Nielsen2009-03-301-1/+1
|
* MFH: Fix a sigsegv on server shutdown, add missing sapi_shutdown().Uwe Schindler2009-03-231-0/+6
|
* - disable it when ZTS is disabledPierre Joye2009-03-201-0/+1
|
* - fix buildPierre Joye2009-03-161-1/+1
|
* - revert last commit (tree was not updated)Pierre Joye2009-03-161-7/+5
|
* - fix vc6 buildPierre Joye2009-03-161-5/+7
|
* Adjust previous fix to avoid compiler warningsIlia Alshanetsky2009-03-071-6/+5
|
* Improved parameter handlingIlia Alshanetsky2009-03-071-8/+3
|
* make STDOUT function as STDERR, in case any module call print()George Wang2009-02-271-0/+3
|
* - MFH: fix build (use the same arginfo than the aliased func)Pierre Joye2009-02-021-1/+1
|
* MFH:Felipe Pena2009-01-301-56/+75
| | | | | | | - WS, CS - Added missing param. checking - Fixed type for 'l'
* Improved parameter parsingIlia Alshanetsky2009-01-271-11/+5
|
* MFH Fix apache2handler under Apache 2.3.0-alphaScott MacVicar2009-01-191-0/+8
|
* MFH: Fix #47149. Remove check for script_filename = path_translated, as this ↵David Soria Parra2009-01-191-2/+1
| | | | the actual value that we get from apache.
* revert last commit, sizeof does not work in preprocessor :(Uwe Schindler2009-01-111-7/+0
|
* MFH: add sanity check for time_t size of win32Uwe Schindler2009-01-111-1/+8
|
* Disable dl() in CGI and FastCGI modesDmitry Stogov2009-01-111-1/+3
|
* MFH: Fixed bug #47042 (PHP cgi sapi is removing SCRIPT_FILENAME for non apache).David Soria Parra2009-01-091-1/+3
|
* MFH: Corrected fix for bug #46844 to only trigger on the 1st line of CLIIlia Alshanetsky2009-01-091-0/+21
| | | | | opened files.
* MFH: the #ifdef was never working. If Sun extends its NSAPI to support ↵Uwe Schindler2009-01-061-8/+0
| | | | subrequests, much of this code must be rewritten. Because of that it is better to have a clean start. This commit does not change behaviour.
* MFB: Improved parameter handlingIlia Alshanetsky2009-01-054-16/+12
|
* - fix buildPierre Joye2009-01-041-0/+1
|
* - MFH Catch exceptions in cli -aMarcus Boerger2009-01-021-1/+1
|
* Nuke unused variablesHannes Magnusson2008-12-311-0/+2
|
* MFHMarcus Boerger2008-12-313-0/+37
| | | | | | | - Changed dl() to be disabled by default. Enabled only when explicitly registered by the SAPI layer. Enabled only with CLI, CGI and EMBED. (Dmitry) [DOC]
* - MFH Fix testMarcus Boerger2008-12-311-15/+15
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-3143-47/+47
|
* MFH fix #46005Stanislav Malyshev2008-12-172-0/+7
|
* - WSPierre Joye2008-12-111-54/+54
|
* - wsPierre Joye2008-12-111-28/+28
|
* MFH: Fixed bug #46782 (fastcgi.c parse error)Matt Wilmas2008-12-071-6/+6
|
* remove unneeded includes (not needed since NSAPI 3.0, wich is very old). ↵Uwe Schindler2008-12-011-6/+0
| | | | This is needed for cleanup of the windows build.
* MFH: support stat cache of webserver (like apache does)Uwe Schindler2008-11-291-1/+8
|
* MFH: Some nsapi.h specific ifdefs unified & correctedUwe Schindler2008-11-291-4/+2
|
* MFH: remove one stat call and replace by cached oneUwe Schindler2008-11-291-6/+3
|
* MFH:Uwe Schindler2008-11-291-29/+94
| | | | | | - Implement the changes needed for http://news.php.net/php.cvs/54228 - Additionally implement flushing in NSAPI and fix some small things
* MFB: init server context before config variables are processedStanislav Malyshev2008-11-291-2/+2
|
* Fixed bug #46366 (bad cwd with / as pathinfo)Dmitry Stogov2008-11-281-0/+3
|
* MFH: Fixed endless loop in cli when ignore_user_abort is onArnaud Le Blanc2008-11-251-3/+2
|
* MFB: fix php_value application order for ApacheStanislav Malyshev2008-11-242-10/+30
|
* new parameter-parsing apiAlexey Zakhlestin2008-11-181-170/+145
|
* - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-11-177-51/+0
|
* Updated header_handler in apache2filter and apache_hooksArnaud Le Blanc2008-11-132-44/+78
|
* Added header_remove() (chsc at peytz dotdk, Arnaud)Arnaud Le Blanc2008-11-134-52/+242
| | | | | | | | | | | | | | | | | | | | | | | | | [DOC] proto void header_remove([string header_name]) Removes an HTTP header previously set using header() The header_name parameter is optionnal, all headers are removed if it is not set [SAPIs] The header_handler callback in sapi_module_struct has been changed, it now take a new argument. When it is set to SAPI_HEADER_DELETE, sapi_header->header is the name of an header, header_handler has to delete it. When it is set to SAPI_HEADER_DELETE_ALL, header_handler has to delete all headers. When sapi_header_op_enum is SAPI_HEADER_ADD or _REPLACE, sapi_header->header is in the form "Name: value", header_handler has to add or replace the given header. In all cases, header_handler must not free sapi_header or sapi_header->header. SAPI_HEADER_ADD must be returned if the header has been added or replaced, or 0 in other cases.
* Fix for bug #46525Rasmus Lerdorf2008-11-081-0/+1
|