Hi Xenon,
I got a very rare error, it suddenly appears and it suddenly disappears (after pressing F5 in IE6):
Buffer Error
In line 487 is your piece of code:
Code:
if($cacheupdate) {
$forumbits=makeforumbit(intval($forumid), 1, $permissions);
if ($bbuserinfo['userid'] > 0 or ($ourtimenow - $bbuserinfo['lastvisit']) < $cookietimeout) {
// remove old cache from user and those which are older than 5 hours
$DB_site->query('DELETE FROM cache_forumhome WHERE userid=' . $bbuserinfo[userid] . iif($numbersmembers['lastpost']>(time()-3600*5), ' OR lastpost<'.(time()-3600*5),''));
$DB_site->query('INSERT INTO cache_forumhome (userid,lastpost,lastupdate,postcount,styleid,forumbits) VALUES (' . $bbuserinfo[userid] . ',' . $numbersmembers[lastpost] . ',' . time() . ',' . $counters[posts] . ',' . $bbuserinfo[styleid] . ',"' . addslashes(gzdeflate($forumbits,9)) . '")');
}
} else {
$forumbits=gzinflate($forumhomecache['forumbits']); // <<<< LINE 487
}
I have 2 members who reported me this error, and 5 minutes ago I got the same error (for the first time) for about 1 minute.
Do you have any advice ?
thanks,
Schorsch