Server Help, constant timeout/requesting authentication

daguythere

New Member
Hi as said above, the server I'm renting from gamingdeluxe is stuck on a constant timeout.

The lastest dayz and arma versions have been installed by the host yet whenever I try to connect it kicks me after about 40secs of requesting auth.

I've tried searching forums but everything I come across is on the client side.

This is the first game server I've managed so I'm at a loss.

Does anyone have any insight or solutions?
 
check the RPT file and hiveExt.log if you have access to it. if you dont you have to contact support (you maybe have to either way)
 
Thanks for your help. I checked the file and it is showing errors. Its coming back with Error 1054. I'll look around for a solution but in the mean time I've up loaded the log if anyone wants to take a gander
 

Attachments

  • HiveExt.txt
    3.6 KB · Views: 24
(Unknown column 'backpack' in 'field list')

There seems to be a serious error in your database. the backpack field is a very basic column.

To fix this Error you could execute the following:
Code:
ALTER TABLE `survivor`
    ADD COLUMN `backpack` VARCHAR(2048) NOT NULL DEFAULT '[]' AFTER `inventory`;

however, there could be more damaged, if you get another error in this direction it would be better to delete all tables and re-execute the mysql setup.
 
Back
Top