MyBB Community Forums

Full Version: Help im getting this error
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Fatal error: Call to undefined function: is_banned_ip() in /home/fhlinux183/t/tussaudtimes.co.uk/user/htdocs/forums/global.php on line 363

http://www.tussaudtimes.co.uk/forums

Please help
Did you add a modification to your forum? If so, which one? If not, then did you edit any file?
Yes i added the WYSIWYG Rich Text Editor but have now removed it
check it on inc/functions.php

maybe you delete a is_banned_ip() function...

how to resolve ;

copy and paste this code at functions.php


function is_banned_ip($ip_address)
{
	$banned_ips = get_banned_ips();
	foreach($banned_ips as $banned_ip)
	{
		if($banned_ip != "" && strpos($ip_address, $banned_ip) !== false)
		{
			return true;
		}
	}
	return false;	
}
nope it didnt work
I dont see this error while browsing your site..