42 protected function checkService()
45 $applicationLogWritable = InstallUtil::isApplicationLogRuntimeWritable(INSTANCE_ROOT);
46 if ($applicationLogWritable)
48 $this->message = Zurmo::t(
'InstallModule',
'The application.log runtime file is writable.');
52 $this->message = Zurmo::t(
'InstallModule',
'The application.log runtime file is not writable.');
55 if (!extension_loaded(
'apc'))
57 $minScriptCacheDirectoryWritable = InstallUtil::isMinScriptCacheRuntimeDirectoryWritable(INSTANCE_ROOT);
58 if ($minScriptCacheDirectoryWritable)
60 $this->message .=
"\n" . Zurmo::t(
'InstallModule',
'The /minScript/cache runtime directory is writable.');
64 $this->message .=
"\n" . Zurmo::t(
'InstallModule',
'The /minScript/cache runtime directory is not writable.');
68 $debugExists = InstallUtil::doesDebugConfigExist(INSTANCE_ROOT);
71 $this->message .=
"\n" . Zurmo::t(
'InstallModule',
'The debug.php file is present.');
75 $this->message .=
"\n" . Zurmo::t(
'InstallModule',
'The debug.php file is not present.');