diff options
| author | Anatol Belski <ab@php.net> | 2016-11-21 22:59:59 +0100 |
|---|---|---|
| committer | Anatol Belski <ab@php.net> | 2016-11-21 22:59:59 +0100 |
| commit | 5d95dcdaabbcaa85aab1cf0503241a973c64a487 (patch) | |
| tree | 9150489f8a204aee56cd738990a8381c18165a29 | |
| parent | 2b5344e7f79ab6bc1ad3fbb6c939319912696cc6 (diff) | |
| parent | 2f5e49bdeb145e7f866229d593ceeef80b6669fc (diff) | |
| download | php-git-5d95dcdaabbcaa85aab1cf0503241a973c64a487.tar.gz | |
Merge branch 'PHP-7.1'
* PHP-7.1:
update php.ini-* for bug #69090
update php.ini-* according to changes for bug #69090
| -rw-r--r-- | php.ini-development | 6 | ||||
| -rw-r--r-- | php.ini-production | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/php.ini-development b/php.ini-development index 66a6e86144..142001ee9b 100644 --- a/php.ini-development +++ b/php.ini-development @@ -1894,6 +1894,12 @@ ldap.max_links = -1 ; This should improve performance, but requires appropriate OS configuration. ;opcache.huge_code_pages=0 +; Validate cached file permissions. +; opcache.validate_permission=0 + +; Prevent name collisions in chroot'ed environment. +; opcache.validate_root=0 + [curl] ; A default value for the CURLOPT_CAINFO option. This is required to be an ; absolute path. diff --git a/php.ini-production b/php.ini-production index c3676ca560..0bfdc302d1 100644 --- a/php.ini-production +++ b/php.ini-production @@ -1894,6 +1894,12 @@ ldap.max_links = -1 ; This should improve performance, but requires appropriate OS configuration. ;opcache.huge_code_pages=1 +; Validate cached file permissions. +; opcache.validate_permission=0 + +; Prevent name collisions in chroot'ed environment. +; opcache.validate_root=0 + [curl] ; A default value for the CURLOPT_CAINFO option. This is required to be an ; absolute path. |
