Bez popisu

own3mall 0fdef05f06 Transifex Language Updates - Generated by own3mall's auto script. 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 2b4521b366 Outlaws of the Old West xml added před 7 roky
includes bdca11a21a Respect NAT Setting Only for Querying před 7 roky
js b3d108968e Disable change access rights button if there are no servers selected. před 7 roky
lang 0fdef05f06 Transifex Language Updates - Generated by own3mall's auto script. před 7 roky
modules 772086f78f Merge pull request #423 from rocco27/master před 7 roky
protocol 772086f78f Merge pull request #423 from rocco27/master 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 b43dff2b64 Improved API host authorization. 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.