Installation Guide

This installation guide will walk you through the process of setting up your application. Please follow the steps below:

You can check a demo on GainBtc.click

Step 1: Extract file

  1. Extract the zip file into public_html or domain directory

Step 2: Configure Base URL

  1. Open the App/Config/App.php file in your code editor.
  2. Locate the baseURL configuration option.
  3. Update the baseURL to match the URL where your application will be hosted. For example:
public $baseURL = 'http://yourdomain.com/';

Make sure to include the trailing slash (/) at the end of the URL.

Step 3: Set Up Database Information

  1. Open the App/Config/Database.php file in your code editor.
  2. You will find an array called $default that contains the default database configuration.
  3. Update the database configuration with your database details. For example:
public $default = [
    'DSN'      => '',
    'hostname' => 'localhost',
    'username' => 'your_username',
    'password' => 'your_password',
    'database' => 'your_database',
    'DBDriver' => 'MySQLi',
    // ...
];

Make sure to replace 'your_database', 'your_username', and 'your_password' with your actual database information.

Step 4: Import database file

Download database here

Import database.sql to your database.

Step 5: Launch Your Application

Once you have completed the above steps, you can launch your application by accessing the configured base URL in your web browser.

Step 6: Accessing the Admin Panel

Once you have completed the installation, you can access the admin panel using the following information:

Other infos

  • Bitcotasks Postback: https://yourdomain.com/wh/postback
  • CoinPayments WebHook: https://yourdomain.com/wh/webhook
  • Need PHP7.4
  • Need IonCobe Loader