Remove APC support

This commit is contained in:
Zankaria
2024-03-07 14:32:23 +01:00
parent 0154e54f85
commit 2f88d0809f
6 changed files with 5 additions and 44 deletions

View File

@@ -876,11 +876,10 @@ if ($step == 0) {
),
array(
'category' => 'Misc',
'name' => 'Caching available (APC(u), Memcached or Redis)',
'result' => extension_loaded('apcu') || extension_loaded('apc') ||
extension_loaded('memcached') || extension_loaded('redis'),
'name' => 'Caching available (APCu, Memcached or Redis)',
'result' => extension_loaded('apcu') || extension_loaded('memcached') || extension_loaded('redis'),
'required' => false,
'message' => 'You will not be able to enable the additional caching system, designed to minimize SQL queries and significantly improve performance. <a href="http://php.net/manual/en/book.apc.php">APC</a> is the recommended method of caching, but <a href="http://www.php.net/manual/en/intro.memcached.php">Memcached</a> and <a href="http://pecl.php.net/package/redis">Redis</a> are also supported.'
'message' => 'You will not be able to enable the additional caching system, designed to minimize SQL queries and significantly improve performance. <a href="https://www.php.net/manual/en/book.apcu.php">APCu</a> is the recommended method of caching, but <a href="http://www.php.net/manual/en/intro.memcached.php">Memcached</a> and <a href="http://pecl.php.net/package/redis">Redis</a> are also supported.'
),
array(
'category' => 'Misc',