Приветствую, graf-8269!
Спасибо за ответ. Обновился до 5.5, а потом и до 5.6 но не помогло. Вот что стоит в файле
/**
* BUG FIX
*
* SWIFT-4667 : Duplicate 'log.cache' on SaaS domains.
*
* Comments : SWIFT::Get('InstallationHash') found to be empty & not being set, when the first time helpdesk gets executed in class.SWIFT.php
*/
$this->Settings = new SWIFT_Settings();
$_logFilePrefix = $this->GetLogFilePrefix();
$_logFileDate = date('d_M_Y', DATENOW);
$_logFileHash = substr(md5($_logFileDate . $this->Settings->GetKey('core', 'installationhash')), 0, 10);
$_logFileName = self::FILENAME_PREFIX;
if (!empty($_logFilePrefix)) {
$_logFileName .= $_logFilePrefix . '_';
}
$_logFileName .= $_logFileDate;
// Add the salted hash so that each file name is unique and cannot be guessed
$_logFileName .= '_' . $_logFileHash;
$_logFileName .= '.' . self::FILENAME_EXTENSION;
// Set the log file name
$this->SetLogFileName($_logFileName);
unset($this->Settings);
return true;
}