Народ, помогите по MOD'у https://www.phpbb.com/community/viewtopic.php?t=985195. Установил это дополнение. Все меню доступны, всё редактируется, но при отправке открывается пустая страница. В строке адреса forum/adm/index.php?i=email_html&sid=8ca45a725e12eb8088645a8e9e5dbf78&mode=email
Кэш чистил через удаление файлов. Встроенный меседжер тоже перестал работать.
Подскажите где что смотреть?
В логе администратора только уведомление об установке этого мода. Лог ошибок в админке пустой (чистил пару дней назад). Лог ошибок apache содержит вот такие строки:
- Код: Выделить всё
[:error] [pid 29239] [client 192.168.1.5:53] PHP Parse error: syntax error, unexpected 'class' (T_CLASS), expecting function (T_FUNCTION) in /var/w/aqua/forum/includes/functions_messenger.php on line 672, referer: http://site.ru/forum/adm/index.php?sid=8ca45a725e12eb8088645a8e9e5dbf78&i=email_html&mode=email
Кусок кода:
- Код: Выделить всё
/**
* constructor
*/
function queue()
{
global $phpEx, $phpbb_root_path;
$this->data = array();
672 строка $this->cache_file = "{$phpbb_root_path}cache/queue.$phpEx";
// Determine EOL character (\n for UNIX, \r\n for Windows and \r for Mac)
$this->eol = (!defined('PHP_EOL')) ? (($eol = strtolower(substr(PHP_OS, 0, 3))) == 'win') ? "\r\n" : (($eol == 'mac') ? "\r" : "\n") : PHP_EOL;
$this->eol = (!$this->eol) ? "\n" : $this->eol;
}