зеркало из https://github.com/nextcloud/server.git
Merge pull request #6933 from seberm/master
Add check for apc.enabled option
This commit is contained in:
Коммит
6ee1250d27
|
@ -50,6 +50,8 @@ class APC extends Cache {
|
|||
static public function isAvailable() {
|
||||
if (!extension_loaded('apc')) {
|
||||
return false;
|
||||
} elseif (!ini_get('apc.enabled')) {
|
||||
return false;
|
||||
} elseif (!ini_get('apc.enable_cli') && \OC::$CLI) {
|
||||
return false;
|
||||
} else {
|
||||
|
|
Загрузка…
Ссылка в новой задаче