@GarettIsHere Yes I did.. I'm stuck on how to fix this problem, by the way thank you for replying.The emulator is telling you that your database is missing tables, did you use the database that the emulator came with?
-- --------------------------------------------------------
--
-- Table structure for table `moderation_chatlogs`
--
CREATE TABLE IF NOT EXISTS `moderation_chatlogs` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`timestamp` double NOT NULL DEFAULT '0',
`user_id` int(10) unsigned NOT NULL DEFAULT '0',
`room_id` int(10) unsigned NOT NULL DEFAULT '0',
`message` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `moderation_chatlogs`
--