File tree Expand file tree Collapse file tree 4 files changed +18
-0
lines changed Expand file tree Collapse file tree 4 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 2
2
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3
3
?? ??? ????, PHP 7.4.0RC2
4
4
5
+ - Opcache:
6
+ . Add opcache.preload_user INI directive. (Dmitry)
7
+
5
8
- PDO_MySQL:
6
9
. Fixed bug #41997 (SP call yields additional empty result set). (cmb)
7
10
Original file line number Diff line number Diff line change @@ -652,6 +652,11 @@ PHP 7.4 UPGRADE NOTES
652
652
. New INI directive to include or exclude arguments from stack traces
653
653
generated for exceptions.
654
654
655
+ - opcache.preload_user
656
+ . New INI directive to specifiy the user account under which preloading code
657
+ is executed, if it was to be run as root otherwise (which is not allowed
658
+ for security reasons).
659
+
655
660
========================================
656
661
12. Windows Support
657
662
========================================
Original file line number Diff line number Diff line change @@ -1891,6 +1891,11 @@ ldap.max_links = -1
1891
1891
; http://php.net/opcache.preload
1892
1892
;opcache.preload=
1893
1893
1894
+ ; Preloading code as root is not allowed for security reasons. This directive
1895
+ ; facilitates to let the preloading to be run as another user.
1896
+ ; http://php.net/opcache.preload_user
1897
+ ;opcache.preload_user=
1898
+
1894
1899
; Prevents caching files that are less than this number of seconds old. It
1895
1900
; protects from caching of incompletely updated files. In case all file updates
1896
1901
; on your site are atomic, you may increase performance by setting it to "0".
Original file line number Diff line number Diff line change @@ -1893,6 +1893,11 @@ ldap.max_links = -1
1893
1893
; http://php.net/opcache.preload
1894
1894
;opcache.preload=
1895
1895
1896
+ ; Preloading code as root is not allowed for security reasons. This directive
1897
+ ; facilitates to let the preloading to be run as another user.
1898
+ ; http://php.net/opcache.preload_user
1899
+ ;opcache.preload_user=
1900
+
1896
1901
; Prevents caching files that are less than this number of seconds old. It
1897
1902
; protects from caching of incompletely updated files. In case all file updates
1898
1903
; on your site are atomic, you may increase performance by setting it to "0".
You can’t perform that action at this time.
0 commit comments