MyBB Community Forums

Full Version: I'm sorry, but you can't use this board until the administrator fixes the problem.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am getting the error message
Quote:I'm sorry, but you can't use this board until the administrator fixes the problem.

I am not able to do anything. Also, my friend got the errors listed below in the screenshot. Please help!

https://p.twimg.com/AiwQoY-CMAEHJcB.jpg:large
Starting from line 642,

$socialsites = array();
	foreach($sites as $site => $id)
	{
		if(!array_key_exists($site, $social_sites) || empty($id))
		{
			continue;
		}
		$socialsites[$site] = $id;
	}

should be,

if (is_array($socialsites))
{
    foreach ($sites as $site)
   if(!array_key_exists($site, $social_sites) || empty($id))
		{
			continue;
		}
		$socialsites[$site] = $id;
    }
}

----

^ didn't see that post.
Thanks guys, that worked. Smile

Also, when I go to my portal page, nothing shows up. I'm using ProPortal.
http://starsfalling.net
^ in admin panel you have to add required blocks & their permissions (which group members can see ..)
(2012-01-10, 05:04 AM)ranjani Wrote: [ -> ]^ in admin panel you have to add required blocks & their permissions (which group members can see ..)

I did....They were automatically there when I did it, I updated one of them, but nothing happened.