From: Sascha Schumann Date: Mon, 5 Jul 2004 11:40:28 +0000 (+0000) Subject: - revert to proper behaviour. The environment variable PHP_FCGI_CHILDREN X-Git-Tag: php-4.3.9RC1~58 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d8e1afab0b1c10643efc89a00835fbdc1177573b;p=php - revert to proper behaviour. The environment variable PHP_FCGI_CHILDREN must be explicitly set to != 0 to make the fastcgi-enabled binary act as a standalone fcgi server. --- diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c index 5b1315b90e..d929c83f43 100644 --- a/sapi/cgi/cgi_main.c +++ b/sapi/cgi/cgi_main.c @@ -98,7 +98,7 @@ static void (*php_php_import_environment_variables)(zval *array_ptr TSRMLS_DC); /** * Number of child processes that will get created to service requests */ -static int children = 8; +static int children = 0; /** * Set to non-zero if we are the parent process