diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-01-15 16:45:19 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-01-18 09:40:43 +0100 |
commit | 5ad549a72f54ce36bc9cb78e4dbdea657cfd3adf (patch) | |
tree | adb2207f489e2d72a86e9ae70876cacf3f9ce852 /core/js/setupchecks.js | |
parent | a9ba1fe7e1bec82bd6c940743c7bacb6af4212ef (diff) | |
download | nextcloud-server-5ad549a72f54ce36bc9cb78e4dbdea657cfd3adf.tar.gz nextcloud-server-5ad549a72f54ce36bc9cb78e4dbdea657cfd3adf.zip |
Migrate memcached PHP module setup check to new API
Merged it with the other existing memcache setup check as it fits
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'core/js/setupchecks.js')
-rw-r--r-- | core/js/setupchecks.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index 67ebabe1ae6..cd7bdeea17f 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -188,14 +188,6 @@ type: OC.SetupChecks.MESSAGE_TYPE_ERROR }); } - if(!data.isCorrectMemcachedPHPModuleInstalled) { - messages.push({ - msg: t('core', 'Memcached is configured as distributed cache, but the wrong PHP module "memcache" is installed. \\OC\\Memcache\\Memcached only supports "memcached" and not "memcache". See the {linkstart}memcached wiki about both modules ↗{linkend}.') - .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="https://code.google.com/p/memcached/wiki/PHPClientComparison">') - .replace('{linkend}', '</a>'), - type: OC.SetupChecks.MESSAGE_TYPE_WARNING - }); - } if(!data.isSettimelimitAvailable) { messages.push({ msg: t('core', 'The PHP function "set_time_limit" is not available. This could result in scripts being halted mid-execution, breaking your installation. Enabling this function is strongly recommended.'), |