Online user count (PlusEMU) (Simple Fix)

iGlenn

:)
Jul 21, 2015
618
92
This is just a little fix for everyone who is having the little users online problem. The reason why its not showing is because the online count is reading from your server_status table but there is nothing in there so just drop the table and run the query below

PHP:
CREATE TABLE `server_status` (
  `users_online` int(11) NOT NULL DEFAULT '0',
  `loaded_rooms` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Data dump for tabellen `server_status`
--

INSERT INTO `server_status` (`users_online`, `loaded_rooms`) VALUES
(0, 0);

I know there are multiple ways of fixing this but this is a easy way for people who don't know how.
 

iGlenn

:)
Jul 21, 2015
618
92
Well, I posted this before.
I realize this fix is all over the place but the reason why I posted this is for noobies who like to be spoon fed and don't know how to use their brain and search for the fixes in existing threads rather than creating new help threads :p
 

Users who are viewing this thread

Top