mirror of
https://github.com/nextcloud/server.git
synced 2026-02-19 02:38:40 -05:00
Merge pull request #45242 from nextcloud/check-memcache-memcached
fix(setupCheck): Only warn when memcache present w/o memcached
This commit is contained in:
commit
99f89bb3de
1 changed files with 5 additions and 4 deletions
|
|
@ -53,15 +53,16 @@ class MemcacheConfigured implements ISetupCheck {
|
|||
$memcacheLocalClass = $this->config->getSystemValue('memcache.local', null);
|
||||
$caches = array_filter([$memcacheDistributedClass,$memcacheLockingClass,$memcacheLocalClass]);
|
||||
if (in_array(\OC\Memcache\Memcached::class, array_map(fn (string $class) => ltrim($class, '\\'), $caches))) {
|
||||
if (extension_loaded('memcache')) {
|
||||
// wrong PHP module is installed
|
||||
if (extension_loaded('memcache') && !extension_loaded('memcached')) {
|
||||
return SetupResult::warning(
|
||||
$this->l10n->t('Memcached is configured as distributed cache, but the wrong PHP module "memcache" is installed. \\OC\\Memcache\\Memcached only supports "memcached" and not "memcache".'),
|
||||
'https://code.google.com/p/memcached/wiki/PHPClientComparison'
|
||||
$this->l10n->t('Memcached is configured as distributed cache, but the wrong PHP module ("memcache") is installed. Please install the PHP module "memcached".')
|
||||
);
|
||||
}
|
||||
// required PHP module is missing
|
||||
if (!extension_loaded('memcached')) {
|
||||
return SetupResult::warning(
|
||||
$this->l10n->t('Memcached is configured as distributed cache, but the PHP module "memcached" is not installed.')
|
||||
$this->l10n->t('Memcached is configured as distributed cache, but the PHP module "memcached" is not installed. Please install the PHP module "memcached".')
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue