Skip to content

Commit e44deba

Browse files
committed
Fix #64526: Add missing mysqlnd.* parameters to php.ini-*
1 parent c2d6ffb commit e44deba

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
@@ -2,6 +2,9 @@ PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
33
?? ??? 2016, PHP 5.6.29
44

5+
- Mysqlnd:
6+
. Fixed bug #64526 (Add missing mysqlnd.* parameters to php.ini-*). (cmb)
7+
58
- Opcache:
69
. Fixed bug #73402 (Opcache segfault when using class constant to call a
710
method). (Laruence)

php.ini-development

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1250,6 +1250,19 @@ mysqlnd.collect_statistics = On
12501250
; http://php.net/mysqlnd.collect_memory_statistics
12511251
mysqlnd.collect_memory_statistics = On
12521252

1253+
; Records communication from all extensions using mysqlnd to the specified log
1254+
; file.
1255+
; http://php.net/mysqlnd.debug
1256+
;mysqlnd.debug =
1257+
1258+
; Defines which queries will be logged.
1259+
; http://php.net/mysqlnd.log_mask
1260+
;mysqlnd.log_mask = 0
1261+
1262+
; Default size of the mysqlnd memory pool, which is used by result sets.
1263+
; http://php.net/mysqlnd.mempool_default_size
1264+
;mysqlnd.mempool_default_size = 16000
1265+
12531266
; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
12541267
; http://php.net/mysqlnd.net_cmd_buffer_size
12551268
;mysqlnd.net_cmd_buffer_size = 2048
@@ -1259,6 +1272,15 @@ mysqlnd.collect_memory_statistics = On
12591272
; http://php.net/mysqlnd.net_read_buffer_size
12601273
;mysqlnd.net_read_buffer_size = 32768
12611274

1275+
; Timeout for network requests in seconds.
1276+
; http://php.net/mysqlnd.net_read_timeout
1277+
;mysqlnd.net_read_timeout = 31536000
1278+
1279+
; SHA-256 Authentication Plugin related. File with the MySQL server public RSA
1280+
; key.
1281+
; http://php.net/mysqlnd.sha256_server_public_key
1282+
;mysqlnd.sha256_server_public_key =
1283+
12621284
[OCI8]
12631285

12641286
; Connection: Enables privileged connections using external

php.ini-production

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1250,6 +1250,19 @@ mysqlnd.collect_statistics = On
12501250
; http://php.net/mysqlnd.collect_memory_statistics
12511251
mysqlnd.collect_memory_statistics = Off
12521252

1253+
; Records communication from all extensions using mysqlnd to the specified log
1254+
; file.
1255+
; http://php.net/mysqlnd.debug
1256+
;mysqlnd.debug =
1257+
1258+
; Defines which queries will be logged.
1259+
; http://php.net/mysqlnd.log_mask
1260+
;mysqlnd.log_mask = 0
1261+
1262+
; Default size of the mysqlnd memory pool, which is used by result sets.
1263+
; http://php.net/mysqlnd.mempool_default_size
1264+
;mysqlnd.mempool_default_size = 16000
1265+
12531266
; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
12541267
; http://php.net/mysqlnd.net_cmd_buffer_size
12551268
;mysqlnd.net_cmd_buffer_size = 2048
@@ -1259,6 +1272,15 @@ mysqlnd.collect_memory_statistics = Off
12591272
; http://php.net/mysqlnd.net_read_buffer_size
12601273
;mysqlnd.net_read_buffer_size = 32768
12611274

1275+
; Timeout for network requests in seconds.
1276+
; http://php.net/mysqlnd.net_read_timeout
1277+
;mysqlnd.net_read_timeout = 31536000
1278+
1279+
; SHA-256 Authentication Plugin related. File with the MySQL server public RSA
1280+
; key.
1281+
; http://php.net/mysqlnd.sha256_server_public_key
1282+
;mysqlnd.sha256_server_public_key =
1283+
12621284
[OCI8]
12631285

12641286
; Connection: Enables privileged connections using external

0 commit comments

Comments
 (0)