sas             Mon Jul  5 07:40:29 2004 EDT

  Modified files:              (Branch: PHP_4_3)
    /php-src/sapi/cgi   cgi_main.c 
  Log:
  - 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.
  
  
http://cvs.php.net/diff.php/php-src/sapi/cgi/cgi_main.c?r1=1.190.2.60&r2=1.190.2.61&ty=u
Index: php-src/sapi/cgi/cgi_main.c
diff -u php-src/sapi/cgi/cgi_main.c:1.190.2.60 php-src/sapi/cgi/cgi_main.c:1.190.2.61
--- php-src/sapi/cgi/cgi_main.c:1.190.2.60      Wed Mar 31 12:01:45 2004
+++ php-src/sapi/cgi/cgi_main.c Mon Jul  5 07:40:28 2004
@@ -20,7 +20,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: cgi_main.c,v 1.190.2.60 2004/03/31 17:01:45 iliaa Exp $ */
+/* $Id: cgi_main.c,v 1.190.2.61 2004/07/05 11:40:28 sas Exp $ */
 
 #include "php.h"
 #include "php_globals.h"
@@ -98,7 +98,7 @@
 /**
  * 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

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to