Skip to content

Commit 583a273

Browse files
committed
Merge branch 'PHP-5.6' into PHP-7.0
2 parents 74b3e80 + e44deba commit 583a273

File tree

3 files changed

+47
-0
lines changed

3 files changed

+47
-0
lines changed

NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ PHP NEWS
1717
This may be enabled again using envirionment variable USE_ZEND_DTRACE=1.
1818
(Dmitry)
1919

20+
- Mysqlnd:
21+
. Fixed bug #64526 (Add missing mysqlnd.* parameters to php.ini-*). (cmb)
22+
2023
- ODBC:
2124
. Fixed bug #73448 (odbc_errormsg returns trash, always 513 bytes).
2225
(Anatol)

php.ini-development

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1184,6 +1184,19 @@ mysqlnd.collect_statistics = On
11841184
; http://php.net/mysqlnd.collect_memory_statistics
11851185
mysqlnd.collect_memory_statistics = On
11861186

1187+
; Records communication from all extensions using mysqlnd to the specified log
1188+
; file.
1189+
; http://php.net/mysqlnd.debug
1190+
;mysqlnd.debug =
1191+
1192+
; Defines which queries will be logged.
1193+
; http://php.net/mysqlnd.log_mask
1194+
;mysqlnd.log_mask = 0
1195+
1196+
; Default size of the mysqlnd memory pool, which is used by result sets.
1197+
; http://php.net/mysqlnd.mempool_default_size
1198+
;mysqlnd.mempool_default_size = 16000
1199+
11871200
; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
11881201
; http://php.net/mysqlnd.net_cmd_buffer_size
11891202
;mysqlnd.net_cmd_buffer_size = 2048
@@ -1193,6 +1206,15 @@ mysqlnd.collect_memory_statistics = On
11931206
; http://php.net/mysqlnd.net_read_buffer_size
11941207
;mysqlnd.net_read_buffer_size = 32768
11951208

1209+
; Timeout for network requests in seconds.
1210+
; http://php.net/mysqlnd.net_read_timeout
1211+
;mysqlnd.net_read_timeout = 31536000
1212+
1213+
; SHA-256 Authentication Plugin related. File with the MySQL server public RSA
1214+
; key.
1215+
; http://php.net/mysqlnd.sha256_server_public_key
1216+
;mysqlnd.sha256_server_public_key =
1217+
11961218
[OCI8]
11971219

11981220
; Connection: Enables privileged connections using external

php.ini-production

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1184,6 +1184,19 @@ mysqlnd.collect_statistics = On
11841184
; http://php.net/mysqlnd.collect_memory_statistics
11851185
mysqlnd.collect_memory_statistics = Off
11861186

1187+
; Records communication from all extensions using mysqlnd to the specified log
1188+
; file.
1189+
; http://php.net/mysqlnd.debug
1190+
;mysqlnd.debug =
1191+
1192+
; Defines which queries will be logged.
1193+
; http://php.net/mysqlnd.log_mask
1194+
;mysqlnd.log_mask = 0
1195+
1196+
; Default size of the mysqlnd memory pool, which is used by result sets.
1197+
; http://php.net/mysqlnd.mempool_default_size
1198+
;mysqlnd.mempool_default_size = 16000
1199+
11871200
; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
11881201
; http://php.net/mysqlnd.net_cmd_buffer_size
11891202
;mysqlnd.net_cmd_buffer_size = 2048
@@ -1193,6 +1206,15 @@ mysqlnd.collect_memory_statistics = Off
11931206
; http://php.net/mysqlnd.net_read_buffer_size
11941207
;mysqlnd.net_read_buffer_size = 32768
11951208

1209+
; Timeout for network requests in seconds.
1210+
; http://php.net/mysqlnd.net_read_timeout
1211+
;mysqlnd.net_read_timeout = 31536000
1212+
1213+
; SHA-256 Authentication Plugin related. File with the MySQL server public RSA
1214+
; key.
1215+
; http://php.net/mysqlnd.sha256_server_public_key
1216+
;mysqlnd.sha256_server_public_key =
1217+
11961218
[OCI8]
11971219

11981220
; Connection: Enables privileged connections using external

0 commit comments

Comments
 (0)