From 914ff56cff2b10ba5bd29cae75248d2ed123bc04 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Mon, 21 Nov 2016 22:58:23 +0100 Subject: [PATCH] update php.ini-* for bug #69090 --- php.ini-development | 6 ++++++ php.ini-production | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/php.ini-development b/php.ini-development index e8800fc905..74b7f11baf 100644 --- a/php.ini-development +++ b/php.ini-development @@ -1883,6 +1883,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 03254ad8c1..60571aae72 100644 --- a/php.ini-production +++ b/php.ini-production @@ -1883,6 +1883,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. -- 2.50.1