На серверах, где установлена версия PHP >=5.3 WYSIWYG редактор JCE может показывать окно ошибки в файловом менеджере. Что-то типа:

PHP Error Message: WARNINGstrftime() [<a href=\'function.strftime\'>function.strftime</a>]: It is not safe to rely on the system\'s timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected \'Europe/Berlin\' for \'CET/1.0/no DST\' insteadError in line 73 of file /home/www/apache/servers/bizmama.ru/pages/plugins/editors/jce/libraries/classes/utils.php

Решение:

Открываем файл /plugins/editors/jce/libraries/classes/utils.php и в функции formatDate($date, $format="%d/%m/%Y, %H:%M") задаем в самом начале блока кода часовой пояс:

function formatDate($date, $format="%d/%m/%Y, %H:%M")
{
  date_default_timezone_set('Europe/Berlin');
  return strftime($format, $date);
}

Наверх