RE: [PHP-CVS] cvs: php-src / php.ini-dist php.ini-recommended /main main.c

2006-12-21 Thread Dmitry Stogov
Thanks Matt. I don't like to read a lot of comments an documentation. :) Dmitry. -Original Message- From: Matt Wilmas [mailto:[EMAIL PROTECTED] Sent: Thursday, December 21, 2006 12:38 PM To: Dmitry Stogov; php-cvs@lists.php.net Subject: Re: [PHP-CVS] cvs: php-src / php.ini-dist

RE: [PHP-CVS] cvs: php-src / php.ini-dist php.ini-recommended

2005-12-30 Thread Ford, Mike
-Original Message- From: Jani Taskinen [mailto:[EMAIL PROTECTED] Sent: Fri 30/12/2005 12:20 sniperFri Dec 30 12:20:39 2005 EDT Modified files: /php-src php.ini-dist php.ini-recommended Log: typofixes

Re: [PHP-CVS] cvs: php-src / php.ini-dist php.ini-recommended

2005-12-30 Thread Andi Gutmans
At 04:20 AM 12/30/2005, Jani Taskinen wrote: -; which should be instantiated. +; which should be instanciated. Hey, You introduced a typo. The previous version was fine. Andi -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-CVS] cvs: php-src / php.ini-dist php.ini-recommended

2005-12-30 Thread Jani Taskinen
Never trust bug reports. :) --Jani On Fri, 30 Dec 2005, Ford, Mike wrote: -Original Message- From: Jani Taskinen [mailto:[EMAIL PROTECTED] Sent: Fri 30/12/2005 12:20 sniper Fri Dec 30 12:20:39 2005 EDT Modified files: /php-srcphp.ini-dist

Re: [PHP-CVS] cvs: php-src / php.ini-dist php.ini-recommended /sapi/cgi cgi_main.c

2005-04-28 Thread Joe Orton
On Thu, Apr 28, 2005 at 01:14:26PM -, Jani Taskinen wrote: @@ -482,9 +482,14 @@ static void sapi_cgi_log_message(char *message) { #if PHP_FASTCGI + int logging = 1; TSRMLS_FETCH(); - if (!FCGX_IsCGI()) { + if (cfg_get_long(fastcgi.logging, logging) == FAILURE) {

Re: [PHP-CVS] cvs: php-src / php.ini-dist php.ini-recommended /sapi/cgi cgi_main.c

2005-04-28 Thread Jani Taskinen
On Thu, 28 Apr 2005, Joe Orton wrote: On Thu, Apr 28, 2005 at 01:14:26PM -, Jani Taskinen wrote: @@ -482,9 +482,14 @@ static void sapi_cgi_log_message(char *message) { #if PHP_FASTCGI + int logging = 1; TSRMLS_FETCH(); - if (!FCGX_IsCGI()) { + if

Re: [PHP-CVS] cvs: php-src / php.ini-dist php.ini-recommended

2003-12-18 Thread Jani Taskinen
Why do you add ini options for extension that doesn't exist in php-src ?? And there's no need to add those anyway, document them in the manual.. --Jani On Thu, 18 Dec 2003, John Coggeshall wrote: john Wed Dec 17 21:06:01 2003 EDT Modified files:

Re: [PHP-CVS] cvs: php-src / php.ini-dist php.ini-recommended

2003-12-18 Thread Rasmus Lerdorf
We probably should move towards the config-file-path mechanism I added a while back. Instead of simply specifying a php.ini file (or in addition to if we so choose) byt default we should do a --with-config-file-path=/etc/php (exact default path to be argued over in numerous threads for years to

Re: [PHP-CVS] cvs: php-src / php.ini-dist php.ini-recommended

2003-12-18 Thread John Coggeshall
Actually, it does exist in php-src. Wez added the symlink to it and it is in the B3 tarball. John On Thu, 2003-12-18 at 03:27, Jani Taskinen wrote: Why do you add ini options for extension that doesn't exist in php-src ?? And there's no need to add those anyway, document them in

Re: [PHP-CVS] cvs: php-src / php.ini-dist php.ini-recommended

2003-12-18 Thread Jani Taskinen
Wouldn't it be a good idea to add a NEWS entry about this new extension? --Jani On Thu, 18 Dec 2003, John Coggeshall wrote: Actually, it does exist in php-src. Wez added the symlink to it and it is in the B3 tarball. John On Thu, 2003-12-18 at 03:27, Jani Taskinen