Lite DayZ Private Server Admin Panel [PHP]

Ok i create now a Repository and pull your version of it on it and give you write accsess. Than we can add the new sql and images for 1.7.6.1 :)
I write you a pm when im ready for it :)
 
Not working for me,
i entered everything right but when i log in it says "Server offline!"
Do you have your MySQL server on the same machine as your DayZ server? If so make sure that you have entered the correct RCON password.
 
So i wanted to setup the Interface on my VServer to administrate my DayZ Server mobile, so no the Interface and DayZ-Server are running on different Servers/Machines.
The RCON-Password is 100% correct.
 
So i wanted to setup the Interface on my VServer to administrate my DayZ Server mobile, so no the Interface and DayZ-Server are running on different Servers/Machines.
The RCON-Password is 100% correct.
By default, the web panel think you have both the DayZ server and the MySQL server on the same machine, if you don't you have to change a bit of code in the web panel yourself.

I have explained how to do it in these two posts. The first link explains where you find the file and the second link shows more exactly how you change it to a different IP rather than just a port change.

http://opendayz.net/threads/lite-dayz-private-server-admin-panel-php.7765/#post-21116
http://opendayz.net/threads/lite-dayz-private-server-admin-panel-php.7765/page-2#post-22691
 
I know but theres another Problem,
my Hoster hosts the Databases on another IP than the Gameserver.
Webserver: 1.1.1.1.1
Gameserver: 2.2.2.2.2
MySQL-DB: 3.3.3.3.3

forget to write in the first post.
 
I know but theres another Problem,
my Hoster hosts the Databases on another IP than the Gameserver.
Webserver: 1.1.1.1.1
Gameserver: 2.2.2.2.2
MySQL-DB: 3.3.3.3.3

forget to write in the first post.
In that case, use the previous steps to enter the MySQL IP directly in the "config.php" file on line 39.
So that it becomes:
PHP:
if(!@mysql_connect('3.3.3.3', USERNAME, PASSWORD)) { echo "<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\" /><font color=red size=6>".$lng_mysql_err_connect[$ses_lng]."</font> ";  exit;}

And then change the IP in your "adm_conig.php" file so that is the IP to your DayZ server.
PHP:
define('SERVERIP', '2.2.2.2');
 
Back
Top