BUGIFX: sort game list by session in user menu
[e-DoKo.git] / config.php_template
1 <?php
2
3     /* the program needs this to access the mysql database */
4     $DB_host     = "";
5     $DB_user     = "";
6     $DB_password = "";
7     $DB_database = "";
8
9     /* set this to 1 to debug the server
10      * emails won't be send out, but  be shown on the page;
11      * each player name at the table will be a link to get
12      * to his view;
13      */
14     $debug = 0;
15
16     /* set this to 1, if you want to work on the DB
17      * the users won't be able to log in and get a message
18      * to check back later
19      */
20     $DB_work = 0;
21
22     $ADMIN_NAME = "";
23     $ADMIN_EMAIL = "";
24
25     /* the prefix for the subject of each email */
26     $EmailName = "[DoKo]";
27     /* used as the reply email in each email */
28     $EMAIL_REPLY="";
29
30     /* this should point to your index.file */
31     $host = "http://.../index.php"
32 ?>