Skip to content
Everett Griffiths edited this page Aug 28, 2014 · 2 revisions

Installation

The easiest way to install Moxycart is via the MODX package manager. Remember that this is a 2-step process: you must first download the package, then install it.

  • Log into the MODX manager as an admin
  • Head to the System --> Package Management menu
  • Click on "Download Extras"
  • Search for "Moxycart"
  • Click its "Download" button (wait patiently)
  • Click "Back to Package Management" to get back to the list of packages available locally on your site.
  • Locate "Moxycart" and click its green "Install" button.

This all assumes that we have submitted the package to the MODX library, and it's possible you're reading this before we have officially released Moxycart. If you find yourself unable to live without Moxycart, or if you require the very latest and greatest bleeding-edge version of the package, then take a look at the Advance Installation section below.

Dependencies

Moxycart requires that you install the following packages:


Advanced Installation (Developers Only)

Moxycart was built using Repoman.

To install the package using Repoman:

  1. Install Repoman

  2. Clone the Moxycart project into a directory inside your MODX webroot:

    git clone https://github.com/craftsmancoding/moxycart

  3. Run composer install to generate the autoload files:

    cd path/to/moxycart/ composer install

  4. Run the Repoman "install" utility on the newly created moxycart directory:

    php path/to/repoman/repoman install path/to/moxycart/

This will create the necessary objects and custom tables.

Follow similar steps to install both the Asset Manager and Taxonomies (and Repoman).

Clone this wiki locally