Easymod has made all the nessasary file chamged without problem, but when i run install/install_uploadpic.php to complete the setup i get this error message :-
Warning: require(./../mkportal/conf_mk.php) [function.require]: failed to open stream: No such file or directory in /homepages/3/d201243663/htdocs/bcfr1/forum/includes/template.php on line 137
line 137 is :- require $MK_PATH."../mkportal/conf_mk.php";
copy of complete code changes made to this file by by mkportal :-
// modificato da mkportal
global $ForumOut, $Checkmkout, $gen_simple_header;
if ($handle == "smiliesbody" || $handle == "reviewbody" || $_GET['mode'] == "searchuser" || $gen_simple_header) {
$Checkmkout = 1;
}
$MK_PATH = "./";
if (defined('IN_ADMIN')) {
$MK_PATH = "../";
}
require $MK_PATH."../mkportal/conf_mk.php";
if ( !defined('IN_ADMIN') && $FORUM_VIEW == 1) {
ob_start();
eval($this->compiled_code[$handle]);
$ForumOut .= ob_get_contents();
ob_end_clean();
} else {
eval($this->compiled_code[$handle]);
}
// fine modificato
Could anyone please advise how i can get around this ?