Installation

Requirements #

KoolReport Dashboard has a few requirements that you need to know before installing:

  1. PHP >= 7.0
  2. KoolReport Pro >= 4.9.0

Browser Support #

KoolReport Dashboard supports reasonably recent versions of the following browsers:

  • Google Chrome
  • Apple Safari
  • Microsoft Edge
  • Mozilla Firefox

Install via manual download #

  1. Download zip file from My Licenses
  2. Unzip
  3. Copy the folder dashboard into koolreport folder, it will look like below:
koolreport
├── pro
├── dashboard

Install via Composer #

If you have purchased the package then you can follow these steps to install

  1. Login to koolreport.com
  2. Go to My Licenses
  3. Click Get Token For Composer button
  4. Copy the text and save to file auth.json next to composer.json
  5. Add the repositories to composer.json like below
  6. Run composer update to install package

composer.json

{
    "repositories":[
      {"type":"composer","url":"https://repo.koolreport.com"}
    ],
    "require":{
        "koolreport/pro":"*",
        "koolreport/dashboard":"*",
        ...
    }
}

Your auth.json will look like this:

{
    "http-basic": {
        "repo.koolreport.com": {
            "username": "your@email.com",
            "password": "your-secret-token"
        }
    }
}

Note: Please add your auth.json to .gitignore as it contains your secret login information.

Code distribution #

KoolReport Dashboard's license does not allow the public distribution of its source code. So, you may not build an application using Dashboard and distribute that application public via open source repository hosting platforms or any other code distribution platform.

If you would like to develop a third party package that augments KoolReport Dashboard's functionality, you are free to do so. However, you may not distribute the Dashboard source code along with your package.

Get started with KoolReport

KoolReport will help you to construct good php data report by gathering your data from multiple sources, transforming them into valuable insights, and finally visualizing them in stunning charts and graphs.