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
App/Config/App.php
file in your code editor.baseURL
configuration option.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.
App/Config/Database.php
file in your code editor.$default
that contains the default database configuration.public $default = [
'DSN' => '',
'hostname' => 'localhost',
'username' => 'your_username',
'password' => 'your_password',
'database' => 'your_database',
'DBDriver' => 'MySQLi',
// ...
];
hostname
: Database server hostname or IP address.username
: Your database username.password
: Your database password.database
: The name of your database.DBDriver
: The database driver to use (e.g., MySQLi).Make sure to replace 'your_database'
, 'your_username'
, and 'your_password'
with your actual database information.
Download database here
Import database.sql to your database.
Once you have completed the above steps, you can launch your application by accessing the configured base URL in your web browser.
Once you have completed the installation, you can access the admin panel using the following information:
http://yourdomain.com/admin
admin
your_admin_password (admin)