-
Apprentice
Error phoenix emu
I have an error in my Server_status table :( i hope you can help me...
phx error:
3/21/2014 6:56:28 PM: Error in thread Server status update task:
System.InvalidOperationException: Cannot load Counter Name data because an invalid index '' was read from the registry.
at System.Diagnostics.PerformanceCounterLib.GetStringTable(Boolean isHelp)
at System.Diagnostics.PerformanceCounterLib.get_NameTable()
at System.Diagnostics.PerformanceCounterLib.get_CategoryTable()
at System.Diagnostics.PerformanceCounterLib.CounterExists(String category, String counter, Boolean& categoryExists)
at System.Diagnostics.PerformanceCounterLib.CounterExists(String machine, String category, String counter)
at System.Diagnostics.PerformanceCounter.InitializeImpl()
at System.Diagnostics.PerformanceCounter..ctor(String categoryName, String counterName, String instanceName, Boolean readOnly)
at System.Diagnostics.PerformanceCounter..ctor(String categoryName, String counterName, String instanceName)
at Phoenix.HabboHotel.Misc.LowPriorityWorker.smethod_0() in C:\Users\NETO\Downloads\Phoenix\Phoenix v3.11.0 (14986)\Phoenix v3.11.0 (14986)\Source\Phoenix\HabboHotel\Misc\LowPriorityWorker.cs:line 18
sql:
CREATE TABLE `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;
INSERT INTO `server_status` VALUES ('0', '0', '0', 'Phoenix v3.9.0 (Build 14615)', '1346780784', '0');
Sorry for the bad English i'm Dutch
-