IlluminaCMS [HELP]

Traqzzz

New Member
Mar 27, 2020
2
0
Hi guys, I have for project to build a habbo retro with Comet Emulator, but I try to install « Illumina CMS » but I have this error: " Unknown column 'users_online' in 'field list' "... I try to add a colon with name « users_online » but this doesn’t work. If you have a CMS for Comet or If you have the solution can you give me? Thanks !
 

Joe

Well-Known Member
Jun 10, 2012
4,155
1,942
you tried this?

CREATE TABLE IF NOT EXISTS `server_status` (
`status` enum('0','1','2') NOT NULL DEFAULT '0',
`users_online` int(11) NOT NULL DEFAULT '0',
`rooms_loaded` int(11) NOT NULL DEFAULT '0',
`server_ver` text NOT NULL,
`stamp` double NOT NULL,
`userpeak` int(11) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
 

Traqzzz

New Member
Mar 27, 2020
2
0
you tried this?

CREATE TABLE IF NOT EXISTS `server_status` (
`status` enum('0','1','2') NOT NULL DEFAULT '0',
`users_online` int(11) NOT NULL DEFAULT '0',
`rooms_loaded` int(11) NOT NULL DEFAULT '0',
`server_ver` text NOT NULL,
`stamp` double NOT NULL,
`userpeak` int(11) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Hi, i have a new error now, "Unknown column 'value' in 'where clause' "
 

Users who are viewing this thread

Top