summaryrefslogtreecommitdiff
path: root/sapi/apache/php_apache.c
Commit message (Collapse)AuthorAgeFilesLines
* Correctly import external data (#33292)Edin Kadribasic2006-04-261-0/+5
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* MFH: nuke php3 legacyfoobar2005-12-061-1/+1
|
* MFH: nuke php3 legacyfoobar2005-12-061-4/+4
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* Fix protoRasmus Lerdorf2004-12-041-1/+1
|
* Add apache_reset_timeout() function for Apache1. This is needed becauseRasmus Lerdorf2004-12-041-0/+15
| | | | | | | | | | | | | Apache1 only resets the write timer, which defaults to 300 seconds, on a successful write. That is, if the client has gone away and Apache attempts a write which fails it will set the conn->aborted flag but not reset the timeout. Assuming the PHP script is running in ignore_user_abort mode we ignore the aborted flag, but we'll still get blown out of the water 300 seconds after the failed write unless we periodically reset the timer. With set_time_limit(0), ignore_user_abort(true) and periodic apache_reset_timeout() calls we can theoretically run forever which is why I disabled this call in safe mode.
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-2/+2
|
* Nuke warningfoobar2003-09-091-1/+1
|
* fix typofoobar2003-09-091-1/+1
|
* Show the runtime version of Apache instead of compile time.foobar2003-09-091-1/+4
|
* Fixed format bugIlia Alshanetsky2003-08-281-1/+1
|
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* Eliminate some TSRMLS_FETCH() calls. Tested with Win32 build of SAPI/CGI and ↵Sebastian Bergmann2003-03-251-1/+1
| | | | SAPI/CLI on Win32.
* * email address changeStig Bakken2003-03-181-1/+1
|
* Renamed OnUpdateInt -> OnUpdateLong to prevent further misunderstandings.foobar2003-03-071-4/+4
| | | | | | # Intentionally left out any 'alias' for it, this way 3rd party extension # maintainers will really NOTICE the change.
* ARG_COUNT(ht) -> ZEND_NUM_ARGS().Ilia Alshanetsky2003-01-211-4/+4
|
* Removed pointless memory allocation checks.Ilia Alshanetsky2003-01-181-6/+2
|
* - Fix docrefsDerick Rethans2003-01-031-2/+2
|
* - Fix typo (patch by Joseph Tate)Derick Rethans2003-01-031-1/+1
|
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* Make the version code get the version from the current Apache, rather thenIlia Alshanetsky2002-12-271-1/+7
| | | | | the Apache PHP was compiled against.
* Added apache_get_version() & apache_get_modules() to Apache 1.X & ApacheIlia Alshanetsky2002-12-271-0/+33
| | | | | | | Hooks sapis. Made the module listing in Apache 2 not show the '.c' portion, to be consistent with Apache 1.X.
* php_error -> php_error_docrefMarcus Boerger2002-12-051-7/+7
|
* centralize #include "build-defs.h" and drop (sometimes inconsistent) otherSascha Schumann2002-10-241-2/+0
| | | | | instances
* fix phpinfo() output for better browser BCColin Viebrock2002-09-261-1/+1
|
* Change phpinfo() to use CSS styling instead of HTML code.Colin Viebrock2002-09-191-1/+1
| | | | | | | | | | It doesn't render as nicely as it used to on older browsers, but it does result in smaller files, and opens the door to using your own CSS to style it differently. There is a patch to Zend/zend_ini.c, but I don't have enough Karma, so Derick has the patch.
* Fix protoRasmus Lerdorf2002-08-131-1/+1
|
* Fix buildSascha Schumann2002-06-011-1/+1
|
* - Reapply netware patchAndi Gutmans2002-06-011-1/+1
|
* Put Netware header and comment back in. My CVS revision id got messedRasmus Lerdorf2002-06-011-0/+8
| | | | | up somehow.
* OopsRasmus Lerdorf2002-05-311-1/+1
|
* @ Renamed getallheaders() to apache_request_headers() and keptRasmus Lerdorf2002-05-311-14/+33
| | | | | | | | | @ getallheaders() as an alias to it. Also added apache_response_headers() @ which returns the current response headers from Apache. Renamed getallheaders() to apache_request_headers() and kept getallheaders() as an alias to it. Also added apache_response_headers() which returns the current response headers from Apache.
* Removed ugly code done as part of NetWare change, upon Andi's advice. Now, ↵Venkat Raghavan S2002-05-311-5/+1
| | | | the typecasting is done for all platforms.
* NetWare related changesVenkat Raghavan S2002-05-311-1/+14
|
* apache_child_terminate() returns status as boolHartmut Holzgraefe2002-04-231-4/+7
| | | | | proto fixes
* Part 4 of apache sapi build fixes:foobar2002-04-231-30/+6
| | | | | | - Fixed many conflicts caused by bogus includes, e.g the infamous XtOffset redefinition warning is gone now.
* Maintain headers.Sebastian Bergmann2002-02-281-1/+1
|
* proto fixHartmut Holzgraefe2001-12-151-1/+1
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* proto fixHartmut Holzgraefe2001-12-041-1/+1
|
* This made no sense before. Hide Authorization in getallheaders() butRasmus Lerdorf2001-10-211-1/+1
| | | | | | display it from phpinfo()? Ouch! @ Hide Authorization header from phpinfo() output in safe_mode (Rasmus)
* make it work againThies C. Arntzen2001-10-121-2/+10
|
* - Changed <br> to - in PHP_INFO output.Derick Rethans2001-10-091-2/+2
|
* Undo Z_ subst for sapi and ext/yazJeroen van Wolffelaar2001-09-271-10/+10
|
* Back-substitute for Z_* macro's. If it breaks some extension (the script ↵Jeroen van Wolffelaar2001-09-251-10/+10
| | | | isn't optimal, it parses for example var->zval.value incorrect) please let me know.
* new apache_setenv()Rasmus Lerdorf2001-09-221-0/+24
| | | | | | @- add apache_setenv() function for injecting variables into Apache's @ subprocess_env table.
* - Don't wrap lines... this is annoying while coding.Derick Rethans2001-09-091-2/+2
|
* TSRMLS fixesDaniel Beulshausen2001-08-141-3/+0
|
* more tsrm cleanupSascha Schumann2001-08-051-1/+0
|