summaryrefslogtreecommitdiff
path: root/sapi/apache2handler/php_functions.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed bug #30446 - virtual() includes files out of sequence,Joe Orton2005-01-111-0/+5
| | | | | work around 2.0 subrequest/internal redirect issue.
* - always convert apr_time_t to time_t using apr_time_sec() to be future-proof.Joe Orton2004-10-231-3/+4
| | | | | | - print apr_time_t values using APR_TIME_T and apr_snprintf. - remove redundant add_property_long calls.
* - Nuke empty_string. It is a reminanent from the time where RETURN_FALSE()Andi Gutmans2004-07-191-5/+5
| | | | | | | | | | | | | | | used to return "" and not bool(false). It's not worth keeping it because STR_FREE() and zval_dtor() always have to check for it and it slows down the general case. In addition, it seems that empty_string has been abused quite a lot, and was used not only for setting zval's but generally in PHP code instead of "", which wasn't the intention. Last but not least, nuking empty_string should improve stability as I doubt every place correctly checked if they are not mistakenly erealloc()'ing it or calling efree() on it. NOTE: Some code is probably broken. Each extension maintainer should check and see that my changes are OK. Also, I haven't had time to touch PECL yet. Will try and do it tomorrow.
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-2/+2
|
* Compiler warning fix (patch by Joe Orton).Ilia Alshanetsky2003-11-111-1/+1
|
* Use the proper way to get the max requests per child.foobar2003-07-101-6/+4
|
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* - Fix typoDerick Rethans2003-05-261-1/+1
|
* Added missing initialization, which causes AP2 to crash on startup in ZTS.Ilia Alshanetsky2003-03-251-0/+3
|
* MFB and more. Fixed various win32 compilation issues. Also the sapiEdin Kadribasic2003-03-251-3/+7
| | | | | is now built as php4apach2.dll since the filter is being obsoleted.
* Eliminate some TSRMLS_FETCH() calls. Tested with Win32 build of SAPI/CGI and ↵Sebastian Bergmann2003-03-251-1/+1
| | | | SAPI/CLI on Win32.
* - This is not supposed to be 'pretty' name. (ref. bug #22853)foobar2003-03-251-1/+1
|
* OnUpdateInt -> OnUpdateLong.Ilia Alshanetsky2003-03-071-3/+3
|
* CS Fixes.Ilia Alshanetsky2003-03-071-10/+115
| | | | | | | Fixed a bug with 404 handling. Added more detailed Apache info for phpinfo(). Added the support for last_modified.
* Clean up apache2handler SAPI.Justin Erenkrantz2003-02-201-26/+16
| | | | | | | | | | Key improvements: - Be streamy - Re-enable virtual() support - Set content_type correctly - Remove unnecessary code and reintroduce some missing code - Change signature from PhP to PHP
* initial checkin of the apache2 SAPI using a handler instead of filters.Ian Holsman2003-02-111-0/+414
TBD: src highlighting better post handling