Хак позволяет сделать шаблон для ошибки 404 в CMS DataLife Engine на вашем сайте.
В файле "engine/modules/functions.php" ищем:
function msgbox($title, $text) {
global $tpl;
Заменяем на:
function msgbox($title, $text) {
global $tpl, $lang;
if( in_array('HTTP/1.0 404 Not Found', headers_list()) || $text == $lang['news_err_27'] ) {
$tplName = '404.html';
}else{
$tplName = 'info.tpl';
}
Делаем отдельную страницу /index.php?do=404 для ошибки 404 на DataLife Engine.
Готово!