I recently loaded PHPnuke on my root. Everything in the NUKEphp app works from the admin and user area... except the forums. I have read line 370 from the raw file and I can't seem to place the error. I have a few lines here from the actual file. It seems like its calling on a .svn. ANY help would be fantastic. Here's the error:
PhpBB : Critical Error
Could not open .svn template config file
DEBUG MODE
Line : 370
File : /home/schawelc/public_html/includes/functions.php
and here's a few lines leading up to line 370 on the server side
$ThemeSel = get_theme();
if (file_exists("themes/$ThemeSel/forums/index_body.tpl")) {
$template_path = "themes/$ThemeSel/";
$template_name = "forums";
$template = new Template($template_path . $template_name, $board_config, $db);
} else {
$template_path = 'templates/' ;
$template_name = $row['template_name'] ;
$template = new Template($phpbb_root_path . $template_path . $template_name, $board_config, $db);
}
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", '', [/i]