MyBB Community Forums

Full Version: Portal
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Whenever i go to my portal it says "$forumdir is invalid!"

http://rsexposed.info/portal.php (Look)
Have you tried re-downloading MyBB 1.4, then re-uploading the portal.php file?
You seem to have added something somehwere... plugin, maybe??
At the top of portal.php, there is:

// set the path to your forums directory here (without trailing slash)
$forumdir = "./";

// end editing

$change_dir = "./";

if(!@chdir($forumdir) && !empty($forumdir))
{
	if(@is_dir($forumdir))
	{
		$change_dir = $forumdir;
	}
	else
	{
		die("\$forumdir is invalid!");
	}
}

Make sure the $forumdir is set to the correct path to your forums, and don't touch $change_dir.