After Purchase the script and download the zip package, unzip it. you will get three folders

  • docs
  • script
  • sql
  • updates

Upload script folder contents to your site (folders & files)

Info

Sometimes, Operation systems hide .htaccess file.
Make sure this file is uploaded to your host.
or create a new file with the name .htaccess and add the content below to it and upload it to your main folder.

.htaccess contents
RewriteEngine on
RewriteRule ^change-password$ user-setting.php?case=change_password
RewriteRule ^signup$ signup.php
RewriteRule ^login$ login.php
RewriteRule ^contact$ contact.php
RewriteRule ^services$ services.php
RewriteRule ^dashboard/messages$ messages.php
RewriteRule ^dashboard/orders$ orders.php
RewriteRule ^dashboard/account$ account.php
RewriteRule ^service/(.*)$ service.php?slug=$1
RewriteRule ^pay/(.*)$ pay.php?slug=$1
RewriteRule ^free/(.*)$ free.php?slug=$1
RewriteRule ^page/(.*)$ page.php?slug=$1
RewriteRule ^dashboard/orders/order/(.*)$ order.php?id=$1
RewriteRule ^download-attachment/(.*)$ download.php?id=$1
RewriteRule ^download-file/(.*)$ download_file.php?id=$1
RewriteRule ^process-order$ process_order.php
RewriteRule ^user-activation/(.*)/(.*)$ user-tools.php?case=confirm_user_email&email=$1&activation_code=$2
RewriteRule ^reset-password/(.*)/(.*)$ user-tools.php?case=reset_password&email=$1&activation_code=$2
RewriteRule ^forget-password$ user-tools.php?case=forget_password
RewriteRule ^not-found$ 404.php
RewriteRule ^category/(.*)$ category.php?id=$1

To Create Database login to your cpanel.
Search for Mysql Database.

By clicking on Mysql Database Link you will go to the Database Managment.

First : Create a New Database

Second : Add a New User

Third : Add a User to Database

Finally, assign privileges to a database user

Open the file config.php located at include folder and change values to yours.

$db_config = array(
   'host' => 'localhost',
   'user' => 'your_database_username',
   'pass' => 'your_database_password',
   'name' => 'your_database_name'
);

After uploading files, creating database and editing config.php file, now it’s time to start the installation:

Go to http://yoursite.com/install/install.php

Tips

If this installation failed, you can install the database manually.
the SQL file is attached with the script and located at sql folder.
the default admin details are :

Username : admin
Password : demo