Bez popisu

®omano 9baa3417ab Minor TS3 issues fixed (#434) před 7 roky
Crypt 1901f57dfc Migrated from sf.net version 3390 před 9 roky
css c4a5817ef0 Added dialogue box for Steam Guard code před 8 roky
images eeedc5bd10 Mordhau dedicated server basic support (#428) před 7 roky
includes 2bf59d43ab Open OGP API to Any IP Address by Default před 7 roky
js 099d09b9df API Links Fixes před 7 roky
lang e21e470867 Transifex Language Updates - Generated by own3mall's auto script. před 7 roky
modules 9baa3417ab Minor TS3 issues fixed (#434) před 7 roky
protocol 9baa3417ab Minor TS3 issues fixed (#434) před 7 roky
themes 15247f7073 Minor Styling Change před 8 roky
COPYING 1901f57dfc Migrated from sf.net version 3390 před 9 roky
README.md 351dfd6ea6 styling code před 8 roky
home.php b82b72ed07 Fixed Copyrights in the files před 8 roky
index.php ff7afb579a Don't log passwords před 8 roky
install.php 2cba148cba Install module modulemanager first while installing. před 7 roky
ogp_api.php fc66ac9f02 Load Settings Earlier před 7 roky
test_api.php e19b6e073b New API před 8 roky

README.md

Open Game Panel

Backup Database

Backup of the existing database can be done with following command:

$ mysqldump --user [username] -p [database] > backup.sql

Replace the [username] with username located in includes/config.inc.php and [database] with database located in same file. After executing the command the password is asked (same as in config.inc.php).

Restore Database Backup

Backup can be restored with the following command:

$ mysql --user [username] -p [database] < backup.sql

Lost Admin Password

In case you lose the admin password you can reset the password with, for example, the following command:

$ mysql --user [username] -p [database]

Then type in the following command but change the OGP_USERNAME and NEW_PASSWORD to the proper ones:

UPDATE ogp_users SET users_passwd=MD5('NEW_PASSWORD') 
WHERE ogp_users.users_login='OGP_USERNAME';

After this type quit to exit the MySQL prompt.