Skip to content

Installation and Configuration

ferulisses edited this page Mar 12, 2013 · 3 revisions

Installation Instructions

First, download a pre-packaged zip or tar file or checkout the latest code using git:

git clone git://github.com/jdorn/php-reports.git
cd php-reports
git submodule init
git submodule update

You will need to solve some dependencies, for this, you will need composer. You also need to install git for your Linux distribution.

You can get composer from http://getcomposer.org/, or follow the procedure bellow to have all done:

curl -sS https://getcomposer.org/installer | php
php composer.phar  install

Then, set up the config file that defines things like database connections, file paths, etc.

You can use the sample config as a starting point if you want.

cp config/config.php.sample config/config.php

The config settings are commented and should be pretty self explanatory.

Open up the Php Reports framework in a browser and you should see a list of reports.

Clone this wiki locally