Installing the One Stop Order Processing software onto your CubeCart website

1 Copy (upload) the files in the C:\OSOP\Main\CubeCart\admin folder to the CubeCart administration folder on your web server (by default called admin). The store root folder is the one that contains files named admin, cache, classes, docs, images, includes, ioncube, js, language, modules and skins. The files will not overwrite any existing files on the server (store), it will only add new files.

For example,

C:\OSOP\Main\CubeCart\admin\sources\orders\osopexport\calendar.js

will be copied to

/admin/sources/orders/osopexport/calendar.js

on your web server.

2 Amend the navigation.inc.php file on your server (by default in admin/includes/navigation.inc.php). Find the line (around line 92) that has the following text:

<li><a <?php if(permission("orders","read")==true){ ?>href="<?php echo $glob['adminFile']; ?>?_g=orders/index" class="txtLink"<?php } else { echo $link401; } ?>><?php echo $lang['admin_common']['nav_orders'];?></a></li>

Add the following text after this line.

<li><a <?php if(permission("orders","read")==true){ ?>href="<?php echo $glob['adminFile']; ?>?_g=orders/osopexport/index" class="txtLink"<?php } else { echo $link401; } ?>>OSOP Order Export</a></li>


Save the changes and upload this file to your server (if not being amended on it).