summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2016-11-21 22:58:23 +0100
committerAnatol Belski <ab@php.net>2016-11-21 22:58:23 +0100
commit914ff56cff2b10ba5bd29cae75248d2ed123bc04 (patch)
tree832055d3882a2c5d433adac52746bc828de4540b
parentd83ed9b5880ab4eeff2096e8d174ac53d6ce70bb (diff)
downloadphp-git-914ff56cff2b10ba5bd29cae75248d2ed123bc04.tar.gz
update php.ini-* for bug #69090
-rw-r--r--php.ini-development6
-rw-r--r--php.ini-production6
2 files changed, 12 insertions, 0 deletions
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.