summaryrefslogtreecommitdiff
path: root/sapi
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'help'.helpSVN Migration2002-03-13127-23601/+0
|
* Sync with Apache2 Filter API change.Sebastian Bergmann2002-03-131-2/+2
|
* -passing arguments to CLI, see: php -hMarcus Boerger2002-03-112-41/+64
|
* Instructions for using FastCGI-PHP with ApacheBen Mansell2002-03-111-0/+53
|
* Improved documentation for FastCGI SAPI. Documents the environmentBen Mansell2002-03-111-0/+74
| | | | | variable tunings and the new command line usage.
* Add command line option to FastCGI SAPI to make it bind & listen to aBen Mansell2002-03-111-4/+34
| | | | | socket. This makes setting up 'remote' fastcgi much easier.
* Add a note regarding which version we supportSascha Schumann2002-03-111-2/+2
|
* Fix warning, hope this is okay.Sebastian Bergmann2002-03-111-1/+0
|
* woohoo, take some credit!Shane Caraveo2002-03-101-0/+2
|
* children should be zero by default, enable by setting PHP_FCGI_CHILDREN env var.Shane Caraveo2002-03-101-1/+1
|
* combine fastcgi capability with regular cgi binaryShane Caraveo2002-03-1016-13/+8253
| | | | | | | | | include fastcgi library for ease of windows builds NOTE: included fastcgi library is modified for thread safety, but fastcgi support in cgi_main.c is only written for single threaded serving. This does not present any issue for using fastcgi.
* Cleaned up previous commit.Edin Kadribasic2002-03-081-5/+2
| | | | | #Oops, commited older patch the first time :)
* @- Added -r option to the CLI version of PHP which executes a piece of PHPEdin Kadribasic2002-03-081-1/+16
| | | | | @ code directly from the commmand line. (Edin)
* Please welcome the new build system.Sascha Schumann2002-03-0735-190/+43
| | | | | | | | | | 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
* - Put them back (and do it right)Derick Rethans2002-03-061-0/+6
|
* - Remove unused variablesDerick Rethans2002-03-061-2/+0
|
* - Fix for bug #15572 (Patch by Ralf Nyrén <ralf.nyren@educ.umu.se>)Derick Rethans2002-03-041-1/+1
|
* Reduce operations in the ub_write loop.Sascha Schumann2002-03-041-7/+10
|
* Free status line, initialize number_vec, correctly account forSascha Schumann2002-03-041-9/+21
| | | | | the number of bytes in the document, avoid strcpy/strlen.
* Updated build instructionsAlex Waugh2002-03-032-12/+6
|
* add comment for IIS usersShane Caraveo2002-03-011-14/+15
| | | | | fix some whitespace
* This is much better. With FORCE_CGI_REDIRECT turned on by default for ↵Shane Caraveo2002-03-011-7/+14
| | | | | | | | | | | | | compilation, we can now define this in the ini file. So it can be turned on for apache, turned off for IIS which does not have a redirect issue. Alternately, a different 'REDIRECT_STATUS' environment var can be defined in case some web server out there needs it. new ini vars cgi.force_redirect 0|1 cgi.redirect_status_env ENV_VAR_NAME
* fix force redirect crash under multithreaded compileShane Caraveo2002-03-011-8/+22
| | | | | | | should be discused: fix redirect detection to only work with apache or netscape, where we know they set an environment variable regarding redirect. IIS has no security issue here. Don't know about other windows web servers.
* Use {NULL, NULL, NULL} to terminate function entry.Yasuo Ohgaki2002-02-282-2/+2
| | | | | # It does not fix any bugs, since {0} works also.
* Default name of CGI binary changed to php-cgi.Edin Kadribasic2002-02-281-1/+1
| | | | | | # Please note that this only applies when installing php with # make install. The binary is still built as "php" in top build dir.
* Maintain headers.Sebastian Bergmann2002-02-286-6/+6
|
* URLEncoder.encode(string) is deprecated in the Java 2 SDK 1.4.Sebastian Bergmann2002-02-271-4/+11
|
* make it more clear that --with-apache and --with-apxs only work with apache 1.x.jim winstead2002-02-251-4/+4
|
* Fixed functionality to read in server variables.Holger Zimmermann2002-02-232-40/+54
|
* - ReformattingDerick Rethans2002-02-201-43/+54
|
* Fixed environment hashing again.David Hedbor2002-02-191-80/+26
|
* Updated to new TSRM macrosAlex Waugh2002-02-171-35/+20
|
* - Make the errorcode 255. (Doing docs right away)Derick Rethans2002-02-152-4/+4
|
* - Let php_execute_script return 0 on failure and 1 on sucess, and changeDerick Rethans2002-02-143-3/+11
| | | | | SAPIs accordingly. (Andrei, Derick)
* Turned implicit_flush on.Edin Kadribasic2002-02-141-5/+4
| | | | | Cleaned up help text.
* Added README file for CLI SAPI.Edin Kadribasic2002-02-141-0/+15
|
* Fugbix typo.Sebastian Bergmann2002-02-111-1/+1
|
* now needs getoptShane Caraveo2002-02-022-0/+187
|
* an update to stresstestShane Caraveo2002-02-022-37/+128
|
* Remove obsolete CG(extended_info) = 0 calls, we already do this in ↵Sebastian Bergmann2002-02-024-5/+1
| | | | zend_set_default_compile_time_values().
* A fix for the bug number 13231 & 11699.Yasuo Ohgaki2002-01-311-3/+3
| | | | | Makes the roxen support compile. Patch by Lars Wilhelmsen <lars@sral.org>
* Enable extensions to specify that they are not supposed to beEdin Kadribasic2002-01-301-1/+0
| | | | | | built with the CLI SAPI. This is done by passing "nocli" as the 3rd parameter to PHP_EXTENSION macro.
* Fugbix typo. Update path to /lib/optional.Sebastian Bergmann2002-01-301-5/+5
|
* Add a note that this statement will never be reached.Jon Parise2002-01-272-2/+2
|
* adjust to ap_get_brigade() API changeDoug MacEachern2002-01-251-1/+1
|
* Added --disable-cli option.Edin Kadribasic2002-01-241-3/+18
|
* Give Edin Kadribasic his due credits.Sebastian Bergmann2002-01-231-3/+3
|
* No need to dupe this string in cli sapi (Bug #15181).Edin Kadribasic2002-01-231-1/+1
|
* Fixed bug #9041 and others in the same class (patch by pete.lee@ubs.com)Edin Kadribasic2002-01-201-1/+3
|
* adjust to ap_get_brigade and input filter api changesDoug MacEachern2002-01-201-3/+3
|