phoenix emu 3.11.0 error

Jorritisief

New Member
Jul 8, 2015
12
2
hoi,



I have every time this error

error in Server status update task caught
Who can help my to fix this error



threaderror.err file


2-11-2015 17:48:48: Error in thread Server status update task:
System.InvalidOperationException: Kan tellernaamgegevens niet laden omdat er een ongeldige index is gelezen vanuit het register.
bij System.Diagnostics.PerformanceCounterLib.GetStringTable(Boolean isHelp)
bij System.Diagnostics.PerformanceCounterLib.get_NameTable()
bij System.Diagnostics.PerformanceCounterLib.get_CategoryTable()
bij System.Diagnostics.PerformanceCounterLib.CounterExists(String category, String counter, Boolean& categoryExists)
bij System.Diagnostics.PerformanceCounterLib.CounterExists(String machine, String category, String counter)
bij System.Diagnostics.PerformanceCounter.InitializeImpl()
bij System.Diagnostics.PerformanceCounter..ctor(String categoryName, String counterName, String instanceName, Boolean readOnly)
bij System.Diagnostics.PerformanceCounter..ctor(String categoryName, String counterName, String instanceName)
bij Phoenix.HabboHotel.Misc.LowPriorityWorker.smethod_0() in c:\Users\Makennan\Desktop\3.11.0\Phoenix\HabboHotel\Misc\LowPriorityWorker.cs:regel 18



Thanks
 

Johno

:: xHosts :: www.xhosts.uk
Sep 12, 2011
581
246
Delete your server_status table and run this as a query


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;

--
-- Gegevens worden geëxporteerd voor tabel `server_status`
--

INSERT INTO `server_status` (`status`, `users_online`, `rooms_loaded`, `server_ver`, `stamp`, `userpeak`) VALUES
('1', 0, 0, 'Phoenix v3.11.0 (Build 14986)', 1430569030, 0);
 

Users who are viewing this thread

Top