summaryrefslogtreecommitdiff
path: root/sapi/apache_hooks/mod_php5.c
Commit message (Collapse)AuthorAgeFilesLines
* Replaces php5 with php7, without whitespace changes.Florian MARGAINE2014-09-201-1493/+0
|
* Merge branch 'PHP-5.6'Xinchen Hui2014-01-031-1/+1
|\
| * Bump yearXinchen Hui2014-01-031-1/+1
| |
* | Pass the TSRMLS parameters to the sapi flush hook, this shaves off a few ↵Kalle Sommer Nielsen2013-12-181-1/+1
|/ | | | TSRMLS_FETCH() calls in our various SAPIs
* Merge branch 'pull-request/341'Stanislav Malyshev2013-06-101-1/+1
| | | | | * pull-request/341: (23 commits) typofixes
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* Fixed bug #60206 (possible integer overflow in content_length)Xinchen Hui2011-11-031-1/+1
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* 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
* * implement new output API, fixing some bugs and implementing some feature Michael Wallner2010-05-311-1/+1
| | | | | | | | | | | 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.
* Removed register_globalsKalle Sommer Nielsen2010-04-211-3/+0
|
* Remove a couple TSRMLS_FETCH() calls around ext/main/sapiKalle Sommer Nielsen2010-04-131-10/+10
|
* - Reverted r296062 and r296065Jani Taskinen2010-03-121-107/+111
|
* MFH: Improved / fixed output buffering (Michael Wallner)Jani Taskinen2010-03-111-111/+107
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* Updated header_handler in apache2filter and apache_hooksArnaud Le Blanc2008-11-131-21/+40
|
* Add new empty child terminate sapi hook to the rest of the sapisRasmus Lerdorf2008-03-181-0/+1
|
* - Rewrite scanner to be based on re2c instead of flexMarcus Boerger2008-03-161-8/+0
| | | | | | | | | The full patch is available as: http://php.net/~helly/php-re2c-5.3-20080316.diff.txt This is against php-re2c repository version 98 An older patch against version 97 is available under: http://php.net/~helly/php-re2c-97-20080316.diff.txt
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* Make MEMORY_LIMIT and ZEND_USE_MALLOC_MM to be always enabled. They don't ↵Dmitry Stogov2006-12-201-9/+3
| | | | make any significant slowdown, but incrise maintainability a lot. Note that the setting of memory_limit wasn't changes (neither in main/main.c nor in php.ini) and it still set to 16M.
* Added "PHPINIDir" Apache directive to apache and apache_hooks SAPIsDmitry Stogov2006-08-031-0/+13
|
* Changed memory_get_usage() and memory_get_peak_usage(). Optional boolean ↵Dmitry Stogov2006-07-251-1/+1
| | | | argument allows get memory size allocated by emalloc() (by default) or real size of memory allocated from system.
* New memory managerDmitry Stogov2006-07-181-2/+1
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* fix #29683 (headers_list() returns empty array)Antony Dovgal2005-06-201-3/+1
|
* No c++ comments in C codefoobar2005-04-191-1/+1
|
* added a server variable PHP_AUTH_DIGEST to support HTTP Digest Authentication.Rui Hirokawa2005-04-041-17/+19
|
* Fix for bug #32263Rasmus Lerdorf2005-03-141-0/+1
| | | | | | | | | This adds proto_num to request_info. It is defaulted to HTTP 1.0 (1000) such that it has a valid value even if the underlying sapi doesn't set it correctly. It is then used to determine if a 302 or a 303 should be sent on a Location redirect. Any non GET/HEAD HTTP 1.1 redirect will get a 303 instead of a 302 to be compatible with the HTTP spec.
* 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.
* - Nuke empty_string. It is a reminanent from the time where RETURN_FALSE()Andi Gutmans2004-07-191-1/+1
| | | | | | | | | | | | | | | 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.
* same bug.Stefan Esser2004-07-141-1/+1
|
* - Better stability during premature shutdown of request startupAndi Gutmans2004-07-101-7/+8
|
* Fix applies to apache_hooks sapi as well. See bug #25753 for details.Rasmus Lerdorf2004-01-281-0/+3
|
* - Renamed all *php4* files to *php5*, changed all php4/PHP4 to php5/PHP5foobar2004-01-171-0/+1474