bjori Sat Dec 27 20:55:06 2008 UTC
Modified files: (Branch: PHP_5_3)
/php-src php.ini-recommended php.ini-dist
Log:
MFH: - Add missing INI entries (pdo_odbc, odbc/birdstep, sybase_ct)
MFH: - Remove entries from removed extension (ifx
http://cvs.php.net/viewvc.cgi/php-src/php.ini-recommended?r1=1.179.2.11.2.23.2.14&r2=1.179.2.11.2.23.2.15&diff_format=u
Index: php-src/php.ini-recommended
diff -u php-src/php.ini-recommended:1.179.2.11.2.23.2.14
php-src/php.ini-recommended:1.179.2.11.2.23.2.15
--- php-src/php.ini-recommended:1.179.2.11.2.23.2.14 Sat Dec 27 20:28:38 2008
+++ php-src/php.ini-recommended Sat Dec 27 20:55:06 2008
@@ -768,6 +768,10 @@
;stack size limit imposed by the Operating System).
;pcre.recursion_limit=100000
+[Pdo]
+; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
+;pdo_odbc.connection_pooling=strict
+
[Phar]
;phar.readonly = On
;phar.require_hash = On
@@ -824,6 +828,8 @@
; of uodbc.defaultlrl and uodbc.defaultbinmode
odbc.defaultbinmode = 1
+;birdstep.max_links = -1
+
[MySQL]
; Allow or prevent persistent links.
mysql.allow_persistent = On
@@ -973,31 +979,6 @@
; Unless pgsql.ignore_notice=0, module cannot log notice message.
pgsql.log_notice = 0
-[Sybase]
-; Allow or prevent persistent links.
-sybase.allow_persistent = On
-
-; Maximum number of persistent links. -1 means no limit.
-sybase.max_persistent = -1
-
-; Maximum number of links (persistent + non-persistent). -1 means no limit.
-sybase.max_links = -1
-
-;sybase.interface_file = "/usr/sybase/interfaces"
-
-; Minimum error severity to display.
-sybase.min_error_severity = 10
-
-; Minimum message severity to display.
-sybase.min_message_severity = 10
-
-; Compatibility mode with old versions of PHP 3.0.
-; If on, this will cause PHP to automatically assign types to results according
-; to their Sybase type, instead of treating them all as strings. This
-; compatibility mode will probably not stay around forever, so try applying
-; whatever necessary changes to your code, and turn it off.
-sybase.compatability_mode = Off
-
[Sybase-CT]
; Allow or prevent persistent links.
sybct.allow_persistent = On
@@ -1014,6 +995,11 @@
; Minimum client message severity to display.
sybct.min_client_severity = 10
+; Set per-context timeout
+;sybct.timeout=
+
+;sybct.packet_size
+
[bcmath]
; Number of decimal digits for all bcmath functions.
bcmath.scale = 0
@@ -1021,43 +1007,6 @@
[browscap]
;browscap = extra/browscap.ini
-[Informix]
-; Default host for ifx_connect() (doesn't apply in safe mode).
-ifx.default_host =
-
-; Default user for ifx_connect() (doesn't apply in safe mode).
-ifx.default_user =
-
-; Default password for ifx_connect() (doesn't apply in safe mode).
-ifx.default_password =
-
-; Allow or prevent persistent links.
-ifx.allow_persistent = On
-
-; Maximum number of persistent links. -1 means no limit.
-ifx.max_persistent = -1
-
-; Maximum number of links (persistent + non-persistent). -1 means no limit.
-ifx.max_links = -1
-
-; If on, select statements return the contents of a text blob instead of its
id.
-ifx.textasvarchar = 0
-
-; If on, select statements return the contents of a byte blob instead of its
id.
-ifx.byteasvarchar = 0
-
-; Trailing blanks are stripped from fixed-length char columns. May help the
-; life of Informix SE users.
-ifx.charasvarchar = 0
-
-; If on, the contents of text and byte blobs are dumped to a file instead of
-; keeping them in memory.
-ifx.blobinfile = 0
-
-; NULL's are returned as empty strings, unless this is set to 1. In that case,
-; NULL's are returned as string 'NULL'.
-ifx.nullformat = 0
-
[Session]
; Handler used to store/retrieve data.
session.save_handler = files
http://cvs.php.net/viewvc.cgi/php-src/php.ini-dist?r1=1.231.2.10.2.22.2.13&r2=1.231.2.10.2.22.2.14&diff_format=u
Index: php-src/php.ini-dist
diff -u php-src/php.ini-dist:1.231.2.10.2.22.2.13
php-src/php.ini-dist:1.231.2.10.2.22.2.14
--- php-src/php.ini-dist:1.231.2.10.2.22.2.13 Sat Dec 27 20:28:38 2008
+++ php-src/php.ini-dist Sat Dec 27 20:55:06 2008
@@ -716,6 +716,10 @@
;stack size limit imposed by the Operating System).
;pcre.recursion_limit=100000
+[Pdo]
+; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
+;pdo_odbc.connection_pooling=strict
+
[Phar]
;phar.readonly = On
;phar.require_hash = On
@@ -772,6 +776,8 @@
; of uodbc.defaultlrl and uodbc.defaultbinmode
odbc.defaultbinmode = 1
+;birdstep.max_links = -1
+
[MySQL]
; Allow or prevent persistent links.
mysql.allow_persistent = On
@@ -921,31 +927,6 @@
; Unless pgsql.ignore_notice=0, module cannot log notice message.
pgsql.log_notice = 0
-[Sybase]
-; Allow or prevent persistent links.
-sybase.allow_persistent = On
-
-; Maximum number of persistent links. -1 means no limit.
-sybase.max_persistent = -1
-
-; Maximum number of links (persistent + non-persistent). -1 means no limit.
-sybase.max_links = -1
-
-;sybase.interface_file = "/usr/sybase/interfaces"
-
-; Minimum error severity to display.
-sybase.min_error_severity = 10
-
-; Minimum message severity to display.
-sybase.min_message_severity = 10
-
-; Compatibility mode with old versions of PHP 3.0.
-; If on, this will cause PHP to automatically assign types to results according
-; to their Sybase type, instead of treating them all as strings. This
-; compatibility mode will probably not stay around forever, so try applying
-; whatever necessary changes to your code, and turn it off.
-sybase.compatability_mode = Off
-
[Sybase-CT]
; Allow or prevent persistent links.
sybct.allow_persistent = On
@@ -962,6 +943,11 @@
; Minimum client message severity to display.
sybct.min_client_severity = 10
+; Set per-context timeout
+;sybct.timeout=
+
+;sybct.packet_size
+
[bcmath]
; Number of decimal digits for all bcmath functions.
bcmath.scale = 0
@@ -969,43 +955,6 @@
[browscap]
;browscap = extra/browscap.ini
-[Informix]
-; Default host for ifx_connect() (doesn't apply in safe mode).
-ifx.default_host =
-
-; Default user for ifx_connect() (doesn't apply in safe mode).
-ifx.default_user =
-
-; Default password for ifx_connect() (doesn't apply in safe mode).
-ifx.default_password =
-
-; Allow or prevent persistent links.
-ifx.allow_persistent = On
-
-; Maximum number of persistent links. -1 means no limit.
-ifx.max_persistent = -1
-
-; Maximum number of links (persistent + non-persistent). -1 means no limit.
-ifx.max_links = -1
-
-; If on, select statements return the contents of a text blob instead of its
id.
-ifx.textasvarchar = 0
-
-; If on, select statements return the contents of a byte blob instead of its
id.
-ifx.byteasvarchar = 0
-
-; Trailing blanks are stripped from fixed-length char columns. May help the
-; life of Informix SE users.
-ifx.charasvarchar = 0
-
-; If on, the contents of text and byte blobs are dumped to a file instead of
-; keeping them in memory.
-ifx.blobinfile = 0
-
-; NULL's are returned as empty strings, unless this is set to 1. In that case,
-; NULL's are returned as string 'NULL'.
-ifx.nullformat = 0
-
[Session]
; Handler used to store/retrieve data.
session.save_handler = files
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php