Installation
Server requirements
- PHP >= 7.4.0
- OpenSSL PHP Extension
- PDO PHP Extension
- Mbstring PHP Extension
- Tokenizer PHP Extension
- XML PHP Extension
- Ctype PHP Extension
- JSON PHP Extension
- ZIP PHP Extension
- BCMath PHP Extension
How to install
How to install in root directory-
- Download the zipped file from CodeCanyon.
- Upload the zipped file into cPanel / server.
- Unzip the zipped file. Inside the unzipped folder you will get two folders "Documentation" and "upload"
- Move all the items from the "upload" folder to the root directory.
- Go to your web browser and type “your_domain.name” in the Address bar and follow the easy installer procedures step by step and install the application.
-
Create the database and remember these things for future usage.
- database_name
- username
- password
How to install in subfolder-
- Download the zipped file from CodeCanyon.
- Upload the zipped file into cPanel / server.
- Unzip the zipped file. Inside the unzipped folder you will get two folders "Documentation" and "upload"
- Move all the items from the "upload" folder to /public_html/sub_folder directory.
- Go to your web browser and type “your_domain.name/sub_folder” in the Address bar and follow the easy installer procedures step by step and install the application
-
Create the database and remember these things for future usage.
- database_name
- username
- password
How to test in local environment-
- Make sure you have met our server requirements.
- Make sure that node.js and composer are installed in your local environment.
- Download the zipped file from CodeCanyon.
- Unzip the zipped file. Inside the unzipped folder you will get two folders "Documentation" and "upload"
- Move all the items from the "upload" folder to local directory from where you want to run the application
- Open the folder in the Editor (phpstorm, vscode etc.)
- Create a local database from phpmyadmin.
- Update the database credentials in the .env file.
DB_CONNECTION=mysql
DB_HOST=127.0.0.1/localhost
DB_PORT=3306
DB_DATABASE=your_database_name
DB_USERNAME=your_database_name
DB_PASSWORD=your_database_password
- Now, go to editor and open config/gain.php file and set 'installed' => true,
- After that, go to database/seeders/DatabaseSeeder file and paste “UsersTableSeeder::class” inside the $this-> call () function.
- Open terminal and run “php artisan migrate:fresh --seed”
- Login with
User: admin@demo.com
Password: 123456 - Now, open the browser and go to your local URL to run the Application locally.
- Open the terminal and run "npm install". If you want to change anything into the vue (front end) code.
How to install in local environment-
- Make sure you have met our server requirements.
- Make sure that node.js and composer are installed in your local environment.
- Download the zipped file from CodeCanyon.
- Unzip the zipped file. Inside the unzipped folder you will get two folders "Documentation" and "upload"
- Move all the items from the "upload" folder to local directory from where you want to run the application
- Open the folder in the Editor (phpstorm, vscode etc.)
- Create a local database from phpmyadmin.
- On the terminal, run "php artisan serve"
- Then you will get a URL in terminal: ex (http://127.0.0.1:8000)
- Copy the URL from the terminal and paste the URL into the browser.
- After that, complete the installation process. You should be able to use it locally