From 2c238763cb3a14478d1f9bf73e6da8b76af216ff Mon Sep 17 00:00:00 2001 From: Nabeel S Date: Mon, 9 Mar 2020 13:08:07 -0400 Subject: [PATCH] Disable using apc/opcache by default if found #625 (#629) --- modules/Installer/Config/config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/Installer/Config/config.php b/modules/Installer/Config/config.php index 227cd297..f18f27f5 100644 --- a/modules/Installer/Config/config.php +++ b/modules/Installer/Config/config.php @@ -9,8 +9,8 @@ return [ // Default driver to use when no driver is present 'default' => 'file', 'drivers' => [ - 'Zend OPcache' => 'opcache', - 'apc' => 'apc', + // 'Zend OPcache' => 'opcache', + // 'apc' => 'apc', ], ],