diff --git a/setup/index.php b/setup/index.php index 289440f7f1..1fca62c9e4 100644 --- a/setup/index.php +++ b/setup/index.php @@ -113,7 +113,7 @@ function GetUploadTmpDir() } return $sPath; } - + /** * Helper function to check if the current version of PHP * is compatible with the application @@ -290,6 +290,13 @@ function CheckPHPVersion(SetupWebPage $oP) $oP->log_info("memory_limit is $iMemoryLimit, ok."); } } + + // Special case for APC + if (extension_loaded('apc')) + { + $sAPCVersion = phpversion('apc'); + $aOk[] = "APC detected (version $sAPCVersion). The APC cache will be used to speed-up iTop."; + } if (!$bResult) {