Ubercms 2 Client loading problem

Diddy

Member
Aug 14, 2011
98
20
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

Member
Aug 14, 2011
98
20
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,319
992
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