|
1. Download ReportsMaestro web reports/chart builder.
2. Create a directory on the web server i.e. reports and unzip all files there.
3. Before starting rename file config-sample.php to config.php.
4. Edit file config.php
in the following way:
4.1 Find the line
and define your database
type (mysql, access, mssql, postgre, oracle):
|
$config["databaseType"]="mysql";
|
4.2 Define connection
parameters for selected database type:
|
//MySQL
$config["mysql"]["host"]="localhost";
$config["mysql"]["username"]="root";
$config["mysql"]["password"]="";
$config["mysql"]["port"]="";
$config["mysql"]["dbname"]="cars";
|
Note: make sure that connection
settings point to the existing database.
4.3 Define locale (by
default: 1033, US English):
For more information about defining locale parameter, read the Localization article.
5. Run install.php in
the browser (eg. http://yourwebsite.com/reports/install.php)
and follow the instructions:
5.1 If the database
connection is OK, enter administrator password and click
Install.
5.2 Now the installation
finished. You can login as admin and start using
ReportsMaestro.
5.3 If the previous version
of ReportsMaestro is installed, click the Upgrade to version 1.3
button.
When the installation
finished, login to start using ReportsMaestro.
|