Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:42983 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 25426 invoked from network); 10 Feb 2009 09:49:37 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 10 Feb 2009 09:49:37 -0000 X-Host-Fingerprint: 84.140.251.52 p548CFB34.dip.t-dialin.net Received: from [84.140.251.52] ([84.140.251.52:6004] helo=localhost.localdomain) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id F8/51-12172-FAD41994 for ; Tue, 10 Feb 2009 04:49:36 -0500 Message-ID: To: internals@lists.php.net Date: Tue, 10 Feb 2009 10:49:32 +0100 User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1b3pre) Gecko/20081204 Thunderbird/3.0b1 MIME-Version: 1.0 References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Posted-By: 84.140.251.52 Subject: Re: RFC for new INI's From: karsten@typo3.org (Karsten Dambekalns) Hi Eric. On 10.02.2009 3:27 Uhr, Eric Stewart wrote: > A new RFC for PHP's proposed INI files have been added to the wiki. Below is > a direct link to the page. > http://wiki.php.net/rfc/newinis I love the settings for production, but I think you reversed the meaning of allow_call_time_pass_reference - if it is allowed no warning will be issued. So, to make your intention of ---- ; Default Value: On (Issue warnings) ; Development Value: On (Issue warnings) ; Production Value: Off (Suppress warnings) ---- work, you need to write that the other way around - 'Off' means 'issue warnings'... It is: Development Value: Off (Issue warnings) Production Value: On (Suppress warnings) In production session.bug_compat_42 is off, but according to the "summary" you want it to be on for development (so that warnings about it are shown, I assume). In the development php.ini the actual values for both settings are off, though. And I am not sure about register_argc_argv having different values in both files. I understand ot being off in production for speed reasons, but if it "just works" in development and "suddenly stops working" in production... But that's a minor issues. All in all like the proposed settings! Regards, Karsten