Members online counter not working

BoFReaper

New Member
Jun 12, 2012
8
0
My members online counter is not working on any page except the online page. How can I fix this so that the counter show up on the index,me,community, ect ect

Thanks
 

Data

Posting Freak
May 19, 2013
593
97
What EMU are you using?
If your using PlusEMU run this SQL.
Code:
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');
 

BoFReaper

New Member
Jun 12, 2012
8
0
The pic to the left is the counter on the Me page and the pic to the right is from my hotelstats page. It shows that players are on but the counter on the me page doesn't.

 

Users who are viewing this thread

Top