mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 08:23:12 +01:00
check if APC(u) is enabled and not only if extension is available
This commit is contained in:
parent
6390696ee6
commit
119bed9a08
@ -50,8 +50,9 @@ class egw_cache_apc extends egw_cache_provider_check implements egw_cache_provid
|
||||
*/
|
||||
public static function available()
|
||||
{
|
||||
$available = false;
|
||||
if (function_exists('apc_fetch') && (PHP_SAPI != 'cli' || ini_get('apc.enable_cli')))
|
||||
$available = (bool)ini_get('apc.enabled');
|
||||
|
||||
if ($available && function_exists('apc_fetch') && (PHP_SAPI != 'cli' || ini_get('apc.enable_cli')))
|
||||
{
|
||||
$size = ini_get('apc.shm_size');
|
||||
// ancent APC (3.1.3) in Debian 6/Squezze has size in MB without a unit
|
||||
|
Loading…
Reference in New Issue
Block a user