added output of average time for a game on the homepage
[e-DoKo.git] / INSTALL
1 Installation
2 ------------
3
4 0) get files
5
6 get all files from 
7
8 http://svn.nubati.net/emaildoko/trunk
9
10 1) create database
11
12 create a mysql database using the provided file
13
14 mysql < create_database.sql
15
16 use user, password, database and host option of mysql as needed
17
18 2) create a config.php file that defines the following variables:
19
20 $host : for example "http://localhost/index.php", note: include the index.php here
21
22 database info:
23
24 $DB_host 
25 $DB_user 
26 $DB_password 
27 $DB_database 
28
29 you can also turn the debug mode on by defining:
30 $debug=1;
31
32 this will give some extra output and won't send out emails, but display them in the browser
33
34 If you hvae problem with the timezone, that is an older PHP version, try adding this in config.php
35
36 function        date_default_timezone_set($zone)
37 {
38   return;
39 }
40
41
42 3) log in and enjoy ;)
43
44 Arun