Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Please help me with my FATAL ERROR
joemad
New
Anyone know how to fix this error?
I deleted the LUM_IpHistory table from my database and now I'm getting this error on the home page...
"A fatal, non-recoverable error has occurred
Technical information (for support personel):
Error Message
An error occurred while attempting to retrieve the requested information.
Affected Elements
WhosOnline.GetGuestCount();
The error occurred on or near: Unknown column 'i.RemoteIp' in 'field list'
For additional support documentation, visit the Lussumo Documentation website at: lussumo.com/docs"
0
Comments
Here's the code to recreate it:
CREATE TABLE IF NOT EXISTS `LUM_IpHistory` ( `IpHistoryID` int(11) NOT NULL auto_increment, `RemoteIp` varchar(30) NOT NULL default '', `UserID` int(11) NOT NULL default '0', `DateLogged` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`IpHistoryID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
Next time use the TRUNCATE command
If you download Vanilla from the website and unzip it, you can see inside the
setup/
folder the.sql
file used to create entire database.Don't execute that entire file! Open it up in a text editor and use the
CREATE TABLE
lines to rebuild your database tables.After that, do a backup
http://lussumo.com/community/discussion/9355/cant-login-to-forum/#Item_8