Skip to content
Snippets Groups Projects
Commit 2a6b2a45 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Stat page show no cache when there is, if user was using apc.

parent b11ef37c
No related branches found
No related tags found
No related merge requests found
...@@ -85,18 +85,35 @@ print '</br>'; ...@@ -85,18 +85,35 @@ print '</br>';
// OPCode cache // OPCode cache
print '<br>'; print '<br>';
print '<strong>'.$langs->trans("OPCodeCache").'</strong>: '; print '<strong>'.$langs->trans("OPCodeCache").'</strong>: ';
$test1=function_exists('xcache_info'); $foundcache=0;
if ($test1) $test=function_exists('xcache_info');
if (! $foundcache && $test)
{ {
$foundcache++;
print img_picto('','tick.png').' '.$langs->trans("XCacheInstalled"); print img_picto('','tick.png').' '.$langs->trans("XCacheInstalled");
print ' '.$langs->trans("MoreInformation").' <a href="'.DOL_URL_ROOT.'/admin/system/xcache.php'.'">Xcache admin page</a>'; print ' '.$langs->trans("MoreInformation").' <a href="'.DOL_URL_ROOT.'/admin/system/xcache.php'.'">Xcache admin page</a>';
} }
$test=function_exists('eaccelerator_info');
if (! $foundcache && $test)
{
$foundcache++;
print img_picto('','tick.png').' '.$langs->trans("EAcceleratorInstalled");
}
$test=function_exists('apc_cache_info');
if (! $foundcache && $test)
{
//var_dump(apc_cache_info());
if (ini_get('apc.enabled'))
{
$foundcache++;
print img_picto('','tick.png').' '.$langs->trans("APCInstalled");
}
else else
{ {
$test2=function_exists('eaccelerator_info'); print img_picto('','warning').' '.$langs->trans("APCCacheInstalledButDisabled");
if ($test2) print img_picto('','tick.png').' '.$langs->trans("EAcceleratorInstalled"); }
else print $langs->trans("NoOPCodeCacheFound");
} }
if (! $foundcache) print $langs->trans("NoOPCodeCacheFound");
print '<br>'; print '<br>';
// HTTPCacheStaticResources // HTTPCacheStaticResources
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment