Показать сообщение отдельно
Armagedd0n вне форума      Старый Проблемы с форумом NukeBB #1  
Armagedd0n
Новенький
Регистрация: 19.06.2007
Сообщения: 2


Пожаловаться на это сообщениеОтветить с цитированием

Посмотреть профиль Отправить персональное сообщение для Armagedd0n Найти все сообщения от Armagedd0n Добавить Armagedd0n в список друзей  
19.06.2007, 21:01

Поставил PHPNuke 8.0 на сайт, всё работает кроме форума. Когда заходишь на форум под админом, он выдаёт ошибку файла functions.php в блоке
PHP код:
 if ( $template )
    {
        
$current_template_path $template_path $template_name;
                
$ThemeSel get_theme();
                if (
file_exists("themes/$ThemeSel/$template_name/index_body.tpl")) {
                    include(
$template_path $template_name '/' $template_name '.cfg');
                } else {
        @include(
$phpbb_root_path $template_path $template_name '/' $template_name '.cfg');
                }
        if ( !
defined('TEMPLATE_CONFIG') )
        {
            
message_die(CRITICAL_ERROR"Could not open $template_name template config file"''__LINE____FILE__);
        }

        
$img_lang = ( file_exists(@phpbb_realpath($phpbb_root_path $current_template_path '/images/lang_' $board_config['default_lang'])) ) ? $board_config['default_lang'] : 'english';

        while( list(
$key$value) = @each($images) )
        {
            if ( !
is_array($value) )
            {
                
$images[$key] = str_replace('{LANG}''lang_' $img_lang$value);
            }
        }
    } 

В строке
PHP код:
 message_die(CRITICAL_ERROR"Could not open $template_name template config file"''__LINE____FILE__); 


Подскажите, что я делаю не так! За что отвечает файл template? Я проверил, все файлы на месте. Заранее спасибо.