]> jfr.im git - irc/gameservirc.git/commitdiff
readded the config.php
authorkainazzzo <redacted>
Mon, 13 Mar 2006 18:05:36 +0000 (18:05 +0000)
committerkainazzzo <redacted>
Mon, 13 Mar 2006 18:05:36 +0000 (18:05 +0000)
git-svn-id: https://svn.code.sf.net/p/gameservirc/code/trunk@416 bc333340-6410-0410-a689-9d09f3c113fa

gameserv/php/config.php [new file with mode: 0644]

diff --git a/gameserv/php/config.php b/gameserv/php/config.php
new file mode 100644 (file)
index 0000000..17cb135
--- /dev/null
@@ -0,0 +1,29 @@
+<?php
+// Change this to your IP or leave as localhost depending on your mysql setup
+$mysqlhost = "localhost";
+
+// Change this to your mysql username
+$mysqluser = "username";
+
+// Change this to your mysql password
+$mysqlpassword = "password";
+
+// Change this to your mysql database
+$mysqldatabase = "gameserv";
+
+// Name of the table you want to use for the gameserv player data
+$playertablename = "gameserv_players";
+
+// Name of the table you want to use for the gameserv item data
+$itemtablename = "gameserv_items";
+
+// Change this to the full path of your players.dat file
+$playerdata = "/home/gameserv/gameserv/data/players.dat";
+
+// Change this to the full path of your masteritems.dat file
+$itemdata = "/home/gameserv/gameserv/data/items/masteritems.dat";
+
+// Do you want to generate html on the fly
+$regenerate = true;
+
+?>