MyBB Community Forums

Full Version: When Checking version
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
The following errors were encountered:
There was a problem communicating with the version server. Please try again in a few minutes.

How to fix that?
According to the code it means that MyBB server is unavailable (or fetch_remote_file() is disabled?).

$contents = fetch_remote_file("http://www.mybb.com/version_check.php");
if(!$contents)
{
	$page->output_inline_error($lang->error_communication);
	$page->output_footer();
	exit;
}

Does it happen all the time or it was just once?