If you haven't yet downloaded the zip file, get it from your order invoice.
Unzip the zip file, to your local computer.
Then upload the files and folders in the /UPLOAD
folder to your store root folder (where config.php
resides).
This step enables your Smarty debug console to be private. A new IP address field will be added to Admin > General Settings.
In /init.php
REPLACE...
WITH...
This step loads the reBOOT related stuff.
In /postauth.php
BEFORE...
INSERT...
This step loads the product related stuff.
In /product.php
BEFORE...
INSERT...
This step ensures that all tables are exported when performing a database backup in X-Cart.
In /admin/db_backup.php
REPLACE...
WITH...
This step populates the manufacturers dropdown in the admin 'Quick Find' panel.
In /admin/auth.php
AND /provider/auth.php
BEFORE....
INSERT...
This step saves all the custom product fields and gets the maximum file upload size.
In /include/product_modify.php
BEFORE...
INSERT...
THEN BEFORE...
INSERT...
This step adds custom product fields to the $trusted_post_variables array.
In /admin/product_modify.php
AFTER...
INSERT...
This step adds custom product fields to the $trusted_post_variables array.
In /provider/product_modify.php
AFTER...
INSERT...
This step adjusts the products 'per page' dropdown options.
In /include/search.php
REPLACE....
WITH...
This step loads the templates for custom pages.
In /skin/common_files/common_templates.tpl
BEFORE....
{else}
INSERT...
{* Reboot Template *}
{elseif $main eq 'reboot_faq'}
{include file='custom/faq/faq.tpl'}
{elseif $main eq 'reboot_glossary_admin'}
{include file='admin/reboot_glossary.tpl'}
{elseif $main eq 'reboot_glossary'}
{include file='custom/glossary.tpl'}
{elseif $main eq 'reboot_page_views'}
{include file='admin/reboot_page_views.tpl'}
{elseif $main eq 'reboot_order_stats'}
{include file='admin/reboot_order_stats.tpl'}
{elseif $main eq 'reboot_manager'}
{include file='admin/reboot_manager.tpl'}
{elseif $main eq 'reboot_testimonials_admin'}
{include file='admin/reboot_testimonials.tpl'}
{elseif $main eq 'reboot_testimonials'}
{include file='modules/Testimonials/testimonials.tpl'}
{elseif $main eq 'reboot_testimonial_add'}
{include file='modules/Testimonials/testimonial_add.tpl'}
{elseif $main eq 'reboot_coupons_main'}
{include file='modules/Discount_Coupons/coupons_main.tpl'}
{elseif $main eq 'reboot_product_videos'}
{include file='custom/product_videos.tpl'}
{elseif $main eq 'reboot_products_trending'}
{include file='custom/products_trending.tpl'}
{elseif $main eq 'wordpress'}
{include file='custom/wordpress.tpl'}
{* /Reboot Template *}
This step adds the resources for the Redactor HTML editors.
In /skin/common_files/single/home.tpl
AND /skin/common_files/admin/home.tpl
(if using X-Cart Platinum)
BEFORE....