summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannes Magnusson <bjori@php.net>2008-12-27 20:54:48 +0000
committerHannes Magnusson <bjori@php.net>2008-12-27 20:54:48 +0000
commitb79a9e5d6c7eb2a2481c1aaecd7d5959fa3c9ca4 (patch)
tree25e03bf8d52ba668ca0efc4c3b77614645d2dcff
parent09687e0c6103442ed21f2698205cdbc90f8075a2 (diff)
downloadphp-git-b79a9e5d6c7eb2a2481c1aaecd7d5959fa3c9ca4.tar.gz
- Add missing INI entries (pdo_odbc, odbc/birdstep, sybase_ct)
- Remove entries from removed extension (ifx) [DOC] The sybase stuff is really confusing in the docs..
-rw-r--r--php.ini-dist73
-rw-r--r--php.ini-recommended73
2 files changed, 22 insertions, 124 deletions
diff --git a/php.ini-dist b/php.ini-dist
index 0dd7220327..b970d5e2d5 100644
--- a/php.ini-dist
+++ b/php.ini-dist
@@ -644,6 +644,10 @@ default_socket_timeout = 60
;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
@@ -694,6 +698,8 @@ odbc.defaultlrl = 4096
; of uodbc.defaultlrl and uodbc.defaultbinmode
odbc.defaultbinmode = 1
+;birdstep.max_links = -1
+
[MySQL]
; Allow or prevent persistent links.
mysql.allow_persistent = On
@@ -843,31 +849,6 @@ pgsql.ignore_notice = 0
; 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
@@ -884,6 +865,11 @@ sybct.min_server_severity = 10
; 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
@@ -891,43 +877,6 @@ bcmath.scale = 0
[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
diff --git a/php.ini-recommended b/php.ini-recommended
index ec30399c76..6f50eb6940 100644
--- a/php.ini-recommended
+++ b/php.ini-recommended
@@ -681,6 +681,10 @@ default_socket_timeout = 60
;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
@@ -731,6 +735,8 @@ odbc.defaultlrl = 4096
; of uodbc.defaultlrl and uodbc.defaultbinmode
odbc.defaultbinmode = 1
+;birdstep.max_links = -1
+
[MySQL]
; Allow or prevent persistent links.
mysql.allow_persistent = On
@@ -880,31 +886,6 @@ pgsql.ignore_notice = 0
; 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
@@ -921,6 +902,11 @@ sybct.min_server_severity = 10
; 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
@@ -928,43 +914,6 @@ bcmath.scale = 0
[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