Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:43173 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 71893 invoked from network); 26 Feb 2009 12:29:19 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 26 Feb 2009 12:29:19 -0000 Authentication-Results: pb1.pair.com smtp.mail=rquadling@googlemail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=rquadling@googlemail.com; sender-id=pass; domainkeys=bad Received-SPF: pass (pb1.pair.com: domain googlemail.com designates 209.85.218.180 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: rquadling@googlemail.com X-Host-Fingerprint: 209.85.218.180 mail-bw0-f180.google.com Received: from [209.85.218.180] ([209.85.218.180:63404] helo=mail-bw0-f180.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 5F/D4-44668-D1B86A94 for ; Thu, 26 Feb 2009 07:29:18 -0500 Received: by bwz28 with SMTP id 28so547529bwz.23 for ; Thu, 26 Feb 2009 04:29:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:reply-to:in-reply-to :references:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=+6JMz1CwHBseOVjRBoogEASBk8OuC1lCIu9OonNAqr4=; b=EesINhA+CXBd/0sXzhARGtKmi894sy+pOvTSQtckT/pF6dVH8IMVvDITS9HqRw2dzg q5FygFsnpZcmEGvpuyHR6tYikex7c3YmVAMMiXLDncU0N2CnY9sYV6f14qREY0SfaTbM ga6DRS5rcVCwnY4MPhZhk6Ggrt3jY7lgzdIos= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:reply-to:in-reply-to:references:date:message-id :subject:from:to:cc:content-type:content-transfer-encoding; b=HAZnK5EHgylfsVgML+JU54n2lgQmVTPES7khwrgb6El9sA4UmmNfUwWucxaiKJhopL Yra9HFrVEZOpCtr8L7ezZuQMxBsUtugffOpUJgu9pue0mM65kzkWZMoKclSSGD1LgaP7 0Sp+huPBKw/qAM2UbooI+u+gtQNH0ebhbWsds= MIME-Version: 1.0 Received: by 10.223.126.145 with SMTP id c17mr895301fas.16.1235651354570; Thu, 26 Feb 2009 04:29:14 -0800 (PST) Reply-To: RQuadling@googlemail.com In-Reply-To: <10845a340902250422t4732ca94y36b56c882712bc20@mail.gmail.com> References: <10845a340902250422t4732ca94y36b56c882712bc20@mail.gmail.com> Date: Thu, 26 Feb 2009 12:29:14 +0000 Message-ID: <10845a340902260429qc26be2aw2af26252c157cc5c@mail.gmail.com> To: Eric Stewart Cc: internals@lists.php.net Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [PHP-DEV] New INIs, Round Three From: rquadling@googlemail.com (Richard Quadling) 2009/2/25 Richard Quadling : > 2009/2/22 Eric Stewart : >> I made the following changes to the new INIs based on feedback mostly fr= om >> this list. Here are the changes. >> 1. Changed production value of error_reporting to E_ALL & ~E_DEPRECATED. >> >> 2. extension_dir is now commented in both INIs. >> >> 3. enable_dl is now set to Off in both INIs. This was not added to the Q= uick >> Reference section as PHP NEWS has this value now changed to Off as of 5.= 3. >> >> 4. Changed doc references that had us2.php.net to www.php.net. >> >> 5. Changed point 6 in the About php.ini section from: >> >> ; 6. Windows directory (C:\windows or C:\winnt), or --with-config-file-p= ath >> ; compile time option. >> >> to: >> >> ; 6. The directory from the --with-config-file-path compile time option,= or >> the >> ; Windows directory (C:\windows or C:\winnt) >> >> 6. Changed comments about Dynamic Extensions to include the addition of >> paths. The new comment regarding this now reads: >> >> ; If you wish to have an extension loaded automatically, use the followi= ng >> ; syntax: >> ; >> ; =C2=A0 extension=3Dmodulename.extension >> ; >> ; For example, on Windows: >> ; >> ; =C2=A0 extension=3Dmsql.dll >> ; >> ; ... or under UNIX: >> ; >> ; =C2=A0 extension=3Dmsql.so >> ; >> ; ... or with a path: >> ; >> ; =C2=A0 extension=3D/path/to/extension/msql.so >> ; >> ; If you only provide the name of the extension, PHP will look for it in >> it's >> ; default extension directory. >> >> 7. A few small grammatical and spelling mistakes have been fixed. >> >> 8. On a vote of 10 to 1. The production INI value for >> allow_call_time_pass_reference is now set to Off (Issue Warnings). >> >> That's all the changes made this round. You can view the revised version= s >> at: >> http://wiki.php.net/rfc/newinis >> >> Please let me know if there are any other adjustments we need to make. F= rom >> the looks of things, I think we are getting close to moving this RFC fro= m >> Active to Accepted. So let me know what you think. >> >> Eric Lee Stewart >> Should extension inter-dependency of extensions be shown in the INI file. For example, mbstring must be loaded before exif and mailparse, and bz2 before bcompiler, as well as pdo before the pdo_xxxx ; extension =3D php_mbstring.dll ; extension =3D php_exif.dll ; Requires php_mbstring.dll to be loaded before this extension ; extension =3D php_mailparse.dll ; Requires php_mbstring.dll to be loaded before this extension ; extension =3D php_bz2.dll ; extension =3D php_bcompiler.dll ; Requires php_bz2.dll to be loaded before this extension Also, some extensions require external libraries ... ; extension =3D php_ibm_db2.dll ; Requires external libraries ; extension =3D php_ifx.dll ; Requires external libraries ; extension =3D php_ingres2.dll ; Requires external libraries ; extension =3D php_maxdb.dll ; Requires external libraries ; extension =3D php_mcve.dll ; Requires external libraries ; extension =3D php_netools.dll ; Requires external libraries ; extension =3D php_oci8.dll ; Requires external libraries ; extension =3D php_openssl.dll ; Requires external libraries ; extension =3D php_oracle.dll ; Requires external libraries ; extension =3D php_pdo_ibm.dll ; Requires external libraries ; extension =3D php_pdo_informix.dll ; Requires external libraries ; extension =3D php_pdo_oci.dll ; Requires external libraries ; extension =3D php_pdo_oci8.dll ; Requires external libraries ; extension =3D php_pdo_pgsql.dll ; Requires external libraries ; extension =3D php_pdo_sqlite_external.dll ; Requires external libraries ; extension =3D php_pgsql.dll ; Requires external libraries ; extension =3D php_ssh2.dll ; Requires external libraries ; extension =3D php_sybase_ct.dll ; Requires external libraries ; extension =3D php_iisfunc.dll ; Requires external services ; extension =3D php_sam.dll ; Requires external services Whilst PHP4 is still present, there are some extensions which are available, but not for PHP5+ ; extension =3D php_db.dll ; Not available for PHP5+ ; extension =3D php_domxml.dll ; Not available for PHP5+ Richard. --=20 ----- Richard Quadling Zend Certified Engineer : http://zend.com/zce.php?c=3DZEND002498&r=3D213474= 731 "Standing on the shoulders of some very clever giants!"