summaryrefslogtreecommitdiffstats
path: root/INSTALL
diff options
context:
space:
mode:
authorarun <arun@nubati.net>2007-04-12 07:33:07 +0000
committerarun <arun>2007-04-12 07:33:07 +0000
commit9db97c855d40d089037410aad3595893f68f6d6a (patch)
tree8b1d993b9b4d9df12209a29e041d1429137c5e15 /INSTALL
parent616c0a755263d974bf8953d71511a2860a3ff7ae (diff)
downloade-DoKo-9db97c855d40d089037410aad3595893f68f6d6a.tar.gz
e-DoKo-9db97c855d40d089037410aad3595893f68f6d6a.tar.bz2
e-DoKo-9db97c855d40d089037410aad3595893f68f6d6a.zip
poverty should work now! added german card deck, tons of small fixes
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL44
1 files changed, 44 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
new file mode 100644
index 0000000..8cdf132
--- /dev/null
+++ b/INSTALL
@@ -0,0 +1,44 @@
+Installation
+------------
+
+0) get files
+
+get all files from
+
+http://svn.nubati.net/emaildoko/trunk
+
+1) create database
+
+create a mysql database using the provided file
+
+mysql < create_database.sql
+
+use user, password, database and host option of mysql as needed
+
+2) create a config.php file that defines the following variables:
+
+$host : for example "http://localhost/index.php", note: include the index.php here
+
+database info:
+
+$DB_host
+$DB_user
+$DB_password
+$DB_database
+
+you can also turn the debug mode on by defining:
+$debug=1;
+
+this will give some extra output and won't send out emails, but display them in the browser
+
+If you hvae problem with the timezone, that is an older PHP version, try adding this in config.php
+
+function date_default_timezone_set($zone)
+{
+ return;
+}
+
+
+3) log in and enjoy ;)
+
+Arun