News:
Forum:
Read News Read Forum

Anuko Time Tracker Quick Installation Guide for Linux


1. Apache web server
2. PHP4 or PHP5, both with
- GD with Freetype fonts support included
- mbstring included
3. MySQL server

$ wget http://www.anuko.com/downloads/time_tracker/anuko_time_tracker.zip

$ cd /path/to/DocumentRoot/
$ unzip anuko_time_tracker.zip
$ cd timetracker

$ chmod 777 WEB-INF/templates_c

$ mysql -h localhost -u root -p

mysql> CREATE DATABASE timetracker;
mysql> GRANT ALL PRIVILEGES ON timetracker.* TO 'ttuser'@'localhost' IDENTIFIED BY 'yourpassword';

$ cd WEB-INF
$ cp config.php.dist config.php

define("DSN",'mysql://ttuser:yourpassword@localhost/timetracker');

define("APP_NAME",'timetracker');


http://localhost/timetracker/dbinstall.php

$ cd ../..
$ chmod 000 dbinstall.php


http://localhost/timetracker

Click Options menu item.

Troubleshooting

If you see a problem similar to this one: "The installation script missing the file "DB.php" in timetracker package. This is missing in dbinstall.php on line 29 an in initialize.php on line 44." See if this will help: http://www.anuko.com/forum/viewtopic.php?t=948

Anuko Time Tracker Installation Guide