summaryrefslogtreecommitdiff
path: root/sapi/phttpd
Commit message (Collapse)AuthorAgeFilesLines
* Happy New YearXinchen Hui2013-01-012-2/+2
|
* - Year++Felipe Pena2012-01-012-2/+2
|
* - Year++Felipe Pena2011-01-012-2/+2
|
* Remove a couple TSRMLS_FETCH() calls around ext/main/sapiKalle Sommer Nielsen2010-04-131-7/+1
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-032-2/+2
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-312-2/+2
|
* Add new empty child terminate sapi hook to the rest of the sapisRasmus Lerdorf2008-03-181-0/+1
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-312-2/+2
|
* MFH: - Changed AC_ARG_* options to PHP_ARG_* options.Jani Taskinen2007-07-111-12/+4
| | | | | | | | | | | | MFH: - Some cleanups here and there MFH: - Enabled PHP_CHECK_CONFIGURE_OPTIONS (checks for unknown configure MFH: options) # Note to Marcus: ext/dba/config.m4 needs to be "converted" to use # the PHP_ARG_* options. I did't touch it needs quite a lot of work to keep # it's current behaviour regarding "enabled-by-default" parts of it. # # Hint: By using the PHP_ARG_* options you have the "default" option.. ;)
* MFHfoobar2007-06-031-1/+1
|
* MFH:- Fixed bug #41576 (misbehaviour when using --without-apxs)foobar2007-06-031-12/+16
|
* MFH: Bump year.Sebastian Bergmann2007-01-012-2/+2
|
* bump year and license versionfoobar2006-01-012-6/+6
|
* - Bumber up yearfoobar2005-08-032-2/+2
|
* Add the new request_time sapi struct entry to all the sapis. Some of theseRasmus Lerdorf2004-12-201-0/+1
| | | | | | | may have ways of getting the request time without the extra syscall, but for now let's just make sure we don't crash and people will eventually fill these in where applicable.
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-081-2/+2
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-2/+2
|
* updating license information in the headers.James Cox2003-06-102-6/+6
|
* Bump year.Sebastian Bergmann2002-12-312-2/+2
|
* - Made the STANDARD_SAPI_MODULE_PROPERTIES be what it says it is.foobar2002-11-261-3/+0
|
* another startup initialization fix - only ISAPI and CGI SAPI's tested,Zeev Suraski2002-09-181-5/+1
| | | | | | minor compile buglets might occur in other SAPIs, but should be trivial to fix...
* Please welcome the new build system.Sascha Schumann2002-03-072-7/+1
| | | | | | | | | | If you encounter any problems, please make sure to email sas@php.net directly. An introduction can be found on http://schumann.cx/buildv5.txt
* Update headers.Sebastian Bergmann2001-12-112-4/+4
|
* Added missing cvs ids and unified configure messages.foobar2001-11-301-2/+4
|
* Undo Z_ subst for sapi and ext/yazJeroen van Wolffelaar2001-09-271-1/+1
|
* Back-substitute for Z_* macro's. If it breaks some extension (the script ↵Jeroen van Wolffelaar2001-09-251-1/+1
| | | | isn't optimal, it parses for example var->zval.value incorrect) please let me know.
* - Removed duplicate FETCH()Derick Rethans2001-09-091-1/+0
|
* more tsrm cleanupSascha Schumann2001-08-051-2/+1
|
* Remove more duplicate TSRMLS_FETCH() calls.Sebastian Bergmann2001-08-051-1/+0
|
* - TSRMLS_FETCH workZeev Suraski2001-08-051-4/+4
| | | | | - whitespace fixes
* Redesigned thread safety mechanism - nua nuaZeev Suraski2001-07-281-29/+22
|
* - Get rid of ELS_*(), and use TSRMLS_*() instead.Zeev Suraski2001-07-271-5/+5
| | | | | | | - 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...
* Add INSTALL_ROOT variable to specify install location.Wilfredo Sanchez2001-04-031-1/+1
|
* Renamed the AC_ prefixed macros defined in acinclude.m4 to PHP_* prefixes.foobar2001-03-271-1/+1
| | | | | # Heads up people! I tested this before committing but you never know..
* - Fix copyright notices with 2001Andi Gutmans2001-02-262-2/+2
|
* Many patches. I hope I remember them all:Zeev Suraski2001-01-021-3/+3
| | | | | | | | | - 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.
* - Make all places use MAXPATHLEN in the same way. It includes theAndi Gutmans2000-12-161-1/+1
| | | | | terminating NULL.
* 2nd step towards auto-creditsHartmut Holzgraefe2000-11-201-0/+2
|
* Update SAPI modules to interface with the new TSRM.Zeev Suraski2000-11-181-1/+1
| | | | | Enable thread-safety memory debugging in ISAPI when in debug mode
* Unify handling of aborted connectionsSascha Schumann2000-10-291-1/+3
|
* update my email.Thies C. Arntzen2000-10-293-3/+3
|
* Restore the headers_only test to the centralized SAPI startup. If ↵Zeev Suraski2000-09-081-5/+0
| | | | | | | necessary, it can be overriden in the activate() callback.
* Heads up! I have moved the headers_only and response_code checks out ofRasmus Lerdorf2000-08-021-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)
* Separate plain name returned by php_sapi_module() and pretty nameAndrei Zmievski2000-06-261-0/+1
| | | | | used for output.
* Move main.h to php_main.h.Sascha Schumann2000-06-051-1/+1
|
* Update the license with the new clause 6Zeev Suraski2000-05-182-4/+4
|
* Remove trailing empty linesSascha Schumann2000-05-011-4/+0
|
* Large test commit IVSascha Schumann2000-05-011-0/+1
|
* Large commit test IIISascha Schumann2000-05-011-0/+3
|
* Overall UNIX build system improvements:Sascha Schumann2000-04-301-6/+1
| | | | | | | | | * Makefile header is now completely dynamic * Absolute paths in (top_)?(src|build)dir and VPATH (fixes Tru64 support) * VPATH does not contain variables anymore (fixes UnixWare support)