Do not use APCu when apc.enabled is Off.

This commit is contained in:
Andreas Fischer 2015-03-25 14:52:01 +01:00
parent e188f0e436
commit 630b7edc54
1 changed files with 2 additions and 0 deletions

View File

@ -12,6 +12,8 @@ class APCu extends APC {
static public function isAvailable() {
if (!extension_loaded('apcu')) {
return false;
} elseif (!ini_get('apc.enabled')) {
return false;
} elseif (!ini_get('apc.enable_cli') && \OC::$CLI) {
return false;
} elseif (version_compare(phpversion('apc'), '4.0.6') === -1) {