Quote:
Originally Posted by Mr. Brian
Yes. No doubt!
BTW, I noticed whenever I'm trying to check/repair my db, I got this line:-
[code]soccerwi_soccerforum.soccerwi_soccerforumsession
error : The handler for the table doesn't support check[/b]
Any ideal why I got this?
thanks
|
If you're using a prefix, this the header template code to use (vB 3.0.3).....
PHP Code:
if (strpos($_SERVER['PHP_SELF'], 'index.php') == false) {
$datecut = TIMENOW - $vboptions['cookietimeout'];
$headerguests=$DB_site->query_first("SELECT COUNT(*) AS count FROM " . TABLE_PREFIX . "session WHERE " . TABLE_PREFIX . "session.userid=0 AND " . TABLE_PREFIX . "session.lastactivity>$datecut");
$headerusers=$DB_site->query_first("SELECT COUNT(DISTINCT(userid)) AS count FROM " . TABLE_PREFIX . "session WHERE " . TABLE_PREFIX . "session.userid>0 AND " . TABLE_PREFIX . "session.lastactivity>$datecut");
$headerguests=$headerguests[count];
$headerusers=$headerusers[count];
$totalonline=$headerguests+$headerusers;
}
Chris