Ubercms 2 Client loading problem

Diddy

Active Member
Aug 14, 2011
109
35
When you load the client all the bars load and you are presented with the hotel view that stays on and then you are dced. In the mean time the phoenix emu is not recieving any connections.
Any idea on this issue?
 

Diddy

Active Member
Aug 14, 2011
109
35
A connection is made now but droped

with this Exception

Code:
4/4/2013 9:43:50 AM: System.ArgumentException: Column 'hide_inroom' does not belong to table .
  at System.Data.DataRow.GetDataColumn(String columnName)
  at System.Data.DataRow.get_Item(String columnName)
  at (Object , String )
  at A.
.(Object , String )
  at A.    .(DataRow , String ,  , 
)
  at A.    .(String ,  , 
, 
)
  at A..(String )

 

Brad

Well-Known Member
Jun 5, 2012
2,320
993
Run All Theses in your database

ALTER TABLE `users` ADD COLUMN `hide_inroom` enum('0','1') NOT NULL DEFAULT '0';

ALTER TABLE `users` ADD COLUMN `hide_room` enum('0','1') NOT NULL DEFAULT '0';

ALTER TABLE `users` ADD COLUMN `hide_online` enum('0','1') NOT NULL DEFAULT '0';


ALTER TABLE `users` ADD COLUMN `vip` enum('0','1') NOT NULL DEFAULT '0';


ALTER TABLE `users` ADD COLUMN `vip` enum('0','1') NOT NULL DEFAULT '0';

ALTER TABLE `users` ADD COLUMN `volume` int(3) NOT NULL DEFAULT 100;

 

Users who are viewing this thread

Top