Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:145 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 57567 invoked from network); 22 Mar 2003 17:26:36 -0000 Received: from unknown (HELO joeysmith.com) (209.197.17.2) by pb1.pair.com with SMTP; 22 Mar 2003 17:26:36 -0000 Received: from joeysmith.com (joey@localhost [127.0.0.1]) by joeysmith.com (8.12.8/8.12.8/Debian-2) with ESMTP id h2MHQRit027626 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=FAIL) for ; Sat, 22 Mar 2003 10:26:27 -0700 Received: (from joey@localhost) by joeysmith.com (8.12.8/8.12.8/Debian-2) id h2MHQRAC027624 for internals@lists.php.net; Sat, 22 Mar 2003 10:26:27 -0700 Date: Sat, 22 Mar 2003 10:26:27 -0700 To: internals@lists.php.net Message-ID: <20030322172627.GA19764@joeysmith.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="huq684BweRXVnRxX" Content-Disposition: inline User-Agent: Mutt/1.5.3i Subject: Patch: Some undocumented php.ini directives From: joey@joeysmith.com (Joey Smith) --huq684BweRXVnRxX Content-Type: text/plain; charset=us-ascii Content-Disposition: inline I'm not sure what to do with these, but it annoys me that there are directives which don't even appear in php.ini-dist which can actually affect how PHP works. Here's some I've found, but I'm not sure what the policy is. Anyone have a problem with adding these after 4.3.2? Jani: These aren't new directives. They're already there, but no one knows it. ;) See attached for patch. --huq684BweRXVnRxX Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="php.ini-patch" Index: php.ini-dist =================================================================== RCS file: /repository/php4/php.ini-dist,v retrieving revision 1.186 diff -u -r1.186 php.ini-dist --- php.ini-dist 19 Mar 2003 16:53:02 -0000 1.186 +++ php.ini-dist 22 Mar 2003 17:21:53 -0000 @@ -951,6 +951,12 @@ ; Compatability mode with old versions of PHP 3.0. mssql.compatability_mode = Off +; Undocumented +;mssql.connect_timeout = 5 + +; Undocumented +;mssql.timeout = 60 + ; Valid range 0 - 2147483647. Default = 4096. ;mssql.textlimit = 4096 @@ -959,6 +965,9 @@ ; Limits the number of records in each batch. 0 = all records in one batch. ;mssql.batchsize = 0 + +; Undocumented +;mssql.datetimeconvert = On ; Use NT authentication when connecting to the server mssql.secure_connection = Off --huq684BweRXVnRxX--