SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `server_status`
-- ----------------------------
DROP TABLE IF EXISTS `server_status`;
CREATE TABLE `server_status` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`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,
`minutesuptime` int(11) NOT NULL,
`userpeak` int(11) NOT NULL DEFAULT '0',
`bannerdata` varchar(1000) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of server_status
-- ----------------------------
INSERT INTO `server_status` VALUES ('1', '0', '0', '0', 'Silverwave Emulator', '1398461747', '0', '13', '114670925920269957593299136150366957983142588366300079186349531:1589935137502239924254699078669119674538324391752663931735947');
Post your app/class.core getOnline function.The emulator is Phoenix
Show me your server_status table.final public function getOnline()
{
global $engine;
return $engine->result("SELECT users_online FROM server_status");
Looks fine, show me what exactly happens on your CMS.You must be registered for see links