How to install database

UPDATE: I've put the database on web server and modified source code to adapt this change. you don't need to install database anymore to run this app!

The database is based on MySQL. To run it you need to have a mysql version updated and running, which you can get at http://www.mysql.com
Once you installed MySQL you need to create a new database.
You can create you database from mysql shell or using the GUI tool you prefer. To create it by shell you just need to write:
$mysql -u [user] -p
to enter mysql
And use
$create database [databasename]
to create a new database

Once your database is created you need to import the dump. You can get the .sql file here. You can do it by typing:

$mysql -u root -p [database_name] < dumpfilename.sql

In Windows you can do the same typing:

$use [database_name]

$source [dumpfile_name.sql]

Note: the default settings for the database are the following:.

If you want your application working you should use them or change the code.

If you still have problem, contact Claudio at caletti.claudio@gmail.com