Overview
  Installation
  Configuration
  Control Panel
  Order History
  Add to Cart
  Check Out
  Discount Codes
  Import-Export
  System Formatting
  Web Wise Sage

 

Installing the Max Shop Cart System

If you have had someone else install the system, and configure it for you, and all you want to do is start adding products and putting Add to Cart buttons on your product pages, then you can skip right to Starting the Max Shop Cart System.

To install the Max Shop Cart system, you need to FTP all the files to a folder on your website. Typically, the folder is called ‘maxcart’ but you can call it whatever you want.

The only changes you need to make to any file (before FTP’ing) is the one called config.php But the changes are simple. They are the host name, username and password of the MySQL server you are using. You also want to enter the name of the database you already have setup. This is fairly standard.

You also need to set the following:

If you do not allow payment by check, change the $sysallowchecks variable to N.
$sysallowchecks = "N";        //   Do Not Allow Pay By Check feature


If you are using Max Shop or Max Affiliates, the products table is installed in those programs. Thus, you would change $sysprodtable to "N"
If you do NOT use Max Shop or Max Affiliates, make no changes to $sysprodtable
$sysprodtable = "Y";           // yes, add a products table


If you want a quantity field on the cart, set $sysquantity to TRUE
$sysquantity = TRUE;


To set the label on the Contine Shopping button:
$syscontinue = 'Continue Shopping';


To set the label on the Pay By Credit Card button:
$syspayby = "Pay By Credit Card";


You will want to automatically delete all incomplete orders. These are orders that have not received payment yet. If you're using Pay By Check, you probably want to set this value to at least 30. And make sure you mark all orders paid by check to be C - complete, in the Order History program.
$sysexpire = 7;



Change $sysoffline to "Y" if you are processing credit cards offline, meaning you have a credit card machine in your office that you will use to process credit cards. If using Paypal, leave $sysoffline at "N"

$sysoffline = "Y";        // yes, this is offline processing of cc

If using offline processing of credit cards, you need to have a secure server. Just fill in the next line:

$syssecure = "https://secure.cert.url/";      // secure cert url for offline processing

 

Then start the system by going to the install page at:

http://www.mydomain.com/maxcart/install.php

This creates all the needed tables, fills in the default configuration, and then sends you to the Configuration pages – after you enter the initial Userid of ‘admin’ and password of ‘admin’ It is essential that you change those passcodes as soon as you get to the Configure page…..

Let's look at Configuration....

(Configuration)