Installation

Upload Files

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
  • Created @ 2 Sep 2022 09:13 pm
  • Updated @ 7 Dec 2024 12:08 am