summaryrefslogtreecommitdiff
path: root/sapi/apache/mod_php5.c
Commit message (Collapse)AuthorAgeFilesLines
...
* MFH: Fixed bug #34905 (Digest authentication does not work with Apache 1).Ilia Alshanetsky2005-10-181-6/+6
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* Fixed bug #33723 (php_value overrides php_admin_value)Dmitry Stogov2005-08-011-3/+3
|
* Added a SG(server_context) NULL check to php_apache_getenv.Brian France2005-06-281-0/+4
| | | | | | This can get called when "<key> = ${<key>}:/foo" is used in a .ini file, but <key> has not be set yet. You will end up with a value of ":/foo", but at least it will not crash now.
* fix #29683 (headers_list() returns empty array)Antony Dovgal2005-06-201-3/+1
|
* Fix for bug #33057 - Don't send extraneous entity-headers on a 304 as perRasmus Lerdorf2005-05-191-3/+9
| | | | | RFC 2616 section 10.3.5
* added a server variable PHP_AUTH_DIGEST to support HTTP Digest Authentication.Rui Hirokawa2005-04-041-16/+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 SAPI hook to get the request time if provided by the web server,Rasmus Lerdorf2004-08-101-0/+9
| | | | | | otherwise call time(0) on the first call and store it so subsequent calls will get the same time. Hook support for Apache1/2 included.
* - 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.
* Security Fix broken! Destroyed Basic auth. Blame: meStefan Esser2004-07-141-1/+1
| | | | | 4.3.x not affected
* - Better stability during premature shutdown of request startupAndi Gutmans2004-07-101-7/+8
|
* MFB - see bug #25753 for detailsRasmus Lerdorf2004-01-281-0/+3
|
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-2/+2
|
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* MFB - fix a couple of missing closing folding tagsRasmus Lerdorf2003-06-031-0/+3
|
* Reverting my last patch because user reports it does not helpEdin Kadribasic2003-05-091-5/+5
| | | | | solve the problem. (bug #23504)
* Fixed MFB side effectEdin Kadribasic2003-05-081-1/+1
|
* MFBEdin Kadribasic2003-05-081-5/+5
|
* update php module name to php5, not php4.Sterling Hughes2003-03-291-0/+966
apache, apache2* and cli/cgi work. sapi module maintainers should fix up their sapis, as I don't run any servers with php outside of apache.