Installation
From Project Auriga
We use a typical Smarty layout. If you check out /trunk, you'll have to do the following to get Auriga up and running:
- Create an Apache virtual host based on configs/auriga.conf.
- Create a MySQL DB and import configs/db_schema.mysql.
- Copy config.php.dist to config.php and add MySQL account info, filesystem paths.
- Create a templates_c/ and cache/ directory, and make both writeable by the web server.
That should be sufficient to get it running. Then you still need to create users and accounts.
[edit] Users
In the user table, the user_id is the login name. The password should be mcrypt'ed or md5. For an admin user, set the group to "manager" and the level to 8. For an employee, set the group to "employee" and the level to 5.
[edit] Accounts
Right now accounts are a mess. To create an account, create a row in tblAccounts, and add a row to tblMap with auriga_id set to the id of the account in tblAccounts. Then you should be able to create projects under that account using the UI.

