Quote:
Originally Posted by Sonikku
I got a problem. It was working very well but once someone registered, I get this error.
Fatal error: Call to undefined function: useragentcheck() in /home/thesonic/public_html/forum/quickstats.php on line 153
I tried replacing the original quickstats.php, but that didn't help either.
Edit: Err.. and now it works. o.o; What's with the hack? It takes time to gather information after something's been posted/register etc?
|
You need to have the UserAgentCheck 1.00 hack installed. If you don't have or don't want that hack, then just remove these lines from quickstats.php:
PHP Code:
$loggedins=$DB_site->query("SELECT session.useragent FROM session WHERE userid=0 AND session.lastactivity>$datecut");
$numberwebrobots=0;
$loggedinrobots="";
while ($loggedin=$DB_site->fetch_array($loggedins)) {
$checkagent = $loggedin['useragent'];
$webrobot = useragentcheck($checkagent, 1);
if ($webrobot) {
$numberwebrobots++;
if (!(preg_match("/$webrobot/i", $loggedinrobots) )) $loggedinrobots .= $webrobot . ", ";
}
}
if (!empty($loggedinrobots)) $loggedinrobots = "(" . substr($loggedinrobots, 0, -2) .")";
$numberguest = ($numberguest - $numberwebrobots);
Then find this line:
PHP Code:
$DB_site->free_result($loggedins);
And after it, add this line:
PHP Code:
$numberguest = intval($numberguest);
Lastly, find and remove these lines from the quickstats template:
PHP Code:
<tr>
<td bgcolor="{secondaltcolor}"><smallfont><b>Web Robots Online</b></smallfont></td>
<td bgcolor="{secondaltcolor}" align="right"><smallfont>$numberwebrobots</smallfont></td>
</tr>