Re: [PHP-DEV] [PATCH] PHP_FCGI_TIMEOUT

2004-12-01 Thread Andi Gutmans
I must be missing something. Again, why shouldn't this be the job of whatever is running the FastCGI stuff? So what if it's a web frontend? It should be able to kill the mother implementation so that it also kills its children. At 08:27 AM 12/2/2004 +0100, Christer Holgersson wrote: If you are

Re: [PHP-DEV] [PATCH] PHP_FCGI_TIMEOUT

2004-12-01 Thread Christer Holgersson
If you are running the FastCGI version of PHP it will start up a number (default 8) of "child" PHP interpretors that will wait around indefinitely for work to do, and the "mother" FastCGI process will automatically restart any process that terminates (and automatically restart every child after

Re: [PHP-DEV] Re: [PHP-DOC] Re: [PHP-DEV] SimpleXML marked as EXPERIMENTAL

2004-12-01 Thread Marcus Boerger
Hello Friedhelm, Thursday, December 2, 2004, 2:18:08 AM, you wrote: > Hi, >> It was probably just overlooked? >> >> I'll remove EXPERIMENTAL status, unless someone speaks up. >> >> S >> >> Andi Gutmans wrote: >> >>> Hi, >>> >>> Is there a reason why SimpleXML is marked as experimental in the

Re: [PHP-DEV] [PATCH] PHP_FCGI_TIMEOUT

2004-12-01 Thread Andi Gutmans
I don't see why this patch is needed. It's the FastCGI implementation's job to do the right thing and terminate the processes according to some kind of strategy. The FCGI processes shouldn't self destruct. Andi At 07:11 PM 12/1/2004 +0100, Christer Holgersson wrote: Included is a patch that adds

[PHP-DEV] Re: [PHP-DOC] Re: [PHP-DEV] SimpleXML marked as EXPERIMENTAL

2004-12-01 Thread Friedhelm Betz
Hi, It was probably just overlooked? I'll remove EXPERIMENTAL status, unless someone speaks up. S Andi Gutmans wrote: Hi, Is there a reason why SimpleXML is marked as experimental in the PHP documentation? EXPERIMENTAL status was removed from the source tree a few months ago. Andi As long as we

Re: [PHP-DEV] Win32 bug in zend_strtod.c

2004-12-01 Thread Ilia Alshanetsky
Fixed, thanks for the report. Ilia Frank M. Kromann wrote: Hello Everyone, Line 100 in zend_strtod.c has a space after the \ at the end of the line. This breaks the win32 build. - Frank -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Win32 bug in zend_strtod.c

2004-12-01 Thread Frank M. Kromann
Hello Everyone, Line 100 in zend_strtod.c has a space after the \ at the end of the line. This breaks the win32 build. - Frank -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] [PATCH] PHP_FCGI_TIMEOUT

2004-12-01 Thread Christer Holgersson
Included is a patch that adds a PHP_FCGI_TIMEOUT that works somewhat akin to PHP_FCGI_MAX_REQUESTS. With PHP_FCGI_TIMEOUT set to 300 the whole fcgi process will terminate after 300 sec with no request to any of the worker children - great for those seldom used dynamically created fcgi scripts. Ch