MyBB Community Forums

Full Version: SBI V1.1 Online List Error
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Well i installed the Search Bot Identifier recently but now ive come across a problem which is when ask jeeves is online it doesnt count the bot as a guest on the index of Whos Online list heres two screenshots of the error:
:o That's a serious fault. But it's not how you think it is. Both the guest and the Ask Jeeves bot are counted as guests. The MSN bot isn't. You have to do this to solve your error: Open index.php and find:
elseif(eregi("66.163.170.193",$ip) || eregi("66.17.148.1",$ip) || eregi("64.152.75",$ip) || eregi("216.198.200.119",$ip) || eregi("216.39.51",$ip) ||eregi("216.39.50",$ip) || eregi("216.39.48",$ip) || eregi("212.187.227",$ip) || eregi("212.187.227",$ip) || eregi("212.187.213.17",$ip) || eregi("209.73.180",$ip) || eregi("209.73.174.25",$ip) || eregi("209.73.164",$ip) || eregi("209.73.162",$ip) || eregi("209.73.160",$ip) || eregi("209.247.40.246",$ip) || eregi("208.221.35.20",$ip) || eregi("208.221.32",$ip) || eregi("208.185.243.148",$ip) || eregi("205.229.83.18",$ip) || eregi("204.152.19",$ip) || eregi("204.123.9",$ip) || eregi("204.123.28",$ip) || eregi("204.123.2",$ip) || eregi("204.123.13",$ip) || eregi("194.51.33.72",$ip) || eregi("194.221.84",$ip) || eregi("194.201.146",$ip) || eregi("194.112.94.25",$ip) || eregi("128.177.244",$ip) || eregi("128.177.243",$ip))
       {
       $botname = "Ask Jeeves Bot";
And replace it with:
       elseif(eregi("65.214.44",$ip) || eregi("65.214.38",$ip) || eregi("65.214.36",$ip) || eregi("65.214.32",$ip) || eregi("65.192.195",$ip) ||eregi("64.55.148",$ip) || eregi("63.236.92.1",$ip) || eregi("216.34.121",$ip) || eregi("216.200.130",$ip) || eregi("216.143.191.131",$ip) || eregi("211.13.230.249",$ip) || eregi("209.67.252",$ip) || eregi("208.178.104.55",$ip) || eregi("207.204.132.23",$ip) || eregi("140.239.251.2",$ip) || eregi("140.239.126.13",$ip))
       {
       $botname = "Ask Jeeves Bot";
Ok fixed, thanks.