Quote:
Originally Posted by Zero Tolerance
For those that got the error:
Code:
alter table chat_store
add s_forroom int(15) not null default '0';
mysql error: Table 'XXXX.chat_store' doesn't exist
Run this query:
Code:
alter table TABLE_PREFIXvbchat_store
add s_forroom int(15) not null default '0';
(Change TABLE_PREFIX to your settings)
Then continue with the installation steps.
Remind me to test the install next time i release a new version =P
- Zero Tolerance
|
There is another error in the instructions:
Code:
while ($loggedin = $DB_site->fetch_array($forumusers))
{
$userid = $loggedin['userid'];
if (!$userid)
{ // Guest
$numberguest++;
$inforum["$loggedin[inforum]"]++;
}
else if (empty($userinfos["$userid"]) OR ($userinfos["$userid"]['lastactivity'] < $loggedin['lastactivity']))
{
$userinfos["$userid"] = $loggedin;
}
if(preg_match("/vBChat.php/",$loggedin['location']) && $loggedin['userid']){
$vbchat_users[$loggedin['userid']] = $loggedin;
}
}
I dont have that in index.php :P