summaryrefslogtreecommitdiffstats
path: root/config.php_template
diff options
context:
space:
mode:
authorArun Persaud <arun@nubati.net>2007-11-02 19:59:41 +0100
committerArun Persaud <arun@nubati.net>2007-11-02 19:59:41 +0100
commit19f70fcd8c26c4a6279addcf8c29fba8f21e13da (patch)
tree54fd29b5fc32d9db3fb04be8eb1de11a0ebdfbc9 /config.php_template
parent7f17a1954f153ecdfecd524d3f7c921b3b0bd08a (diff)
downloade-DoKo-19f70fcd8c26c4a6279addcf8c29fba8f21e13da.tar.gz
e-DoKo-19f70fcd8c26c4a6279addcf8c29fba8f21e13da.tar.bz2
e-DoKo-19f70fcd8c26c4a6279addcf8c29fba8f21e13da.zip
BUGFIX: added a config.php template to the repository and updated the INSTALL files
Diffstat (limited to 'config.php_template')
-rw-r--r--config.php_template32
1 files changed, 32 insertions, 0 deletions
diff --git a/config.php_template b/config.php_template
new file mode 100644
index 0000000..fb84a51
--- /dev/null
+++ b/config.php_template
@@ -0,0 +1,32 @@
+<?php
+
+ /* the program needs this to access the mysql database */
+ $DB_host = "";
+ $DB_user = "";
+ $DB_password = "";
+ $DB_database = "";
+
+ /* set this to 1 to debug the server
+ * emails won't be send out, but be shown on the page;
+ * each player name at the table will be a link to get
+ * to his view;
+ */
+ $debug = 0;
+
+ /* set this to 1, if you want to work on the DB
+ * the users won't be able to log in and get a message
+ * to check back later
+ */
+ $DB_work = 0;
+
+ $ADMIN_NAME = "";
+ $ADMIN_EMAIL = "";
+
+ /* the prefix for the subject of each email */
+ $EmailName = "[DoKo]";
+ /* used as the reply email in each email */
+ $EMAIL_REPLY="";
+
+ /* this should point to your index.file */
+ $host = "http://.../index.php"
+?> \ No newline at end of file