Skip to content
Stefan Moises edited this page Dec 27, 2016 · 12 revisions

Installation

There are three ways to install the OXID module connector.

Download

  1. download OXID Modul Connector
  2. Extract module (oxcom-omc) to the /modules directory
  3. Activate module
  4. That´s it!

Composer

Add the following lines for you composer.json.

{
  "repositories": {
    "OXIDprojects/OXID-Module-Connector": {
      "type": "vcs",
      "url": "https://github.com/OXIDprojects/OXID-Module-Connector.git"
    }
  }
}

Console

Download OXID module connector core via console or via HTTP or:

curl -O https://raw.githubusercontent.com/ioly/ioly/core/ioly.php

Using OXID module connector via console. In this example, we'll search for an module and install this:

$ cd /var/www/myshop.de/
$ export IOLY_SYSTEM_BASE=/var/www/myshop.de/
$ export IOLY_SYSTEM_VERSION=4.10
$ php ioly.php addcookbook omc https://github.com/OXIDprojects/OXID-Modul-Connector/archive/recipes.zip
$ php ioly.php update
$ php ioly.php install oxcom/oxcom-omc latest
$ php ioly.php list
$ php ioly.php search paypal
$ php ioly.php show oxid/paypal
$ php ioly.php install oxid/paypal 3.2.1

Uninstall

You're not satisfied with this module? Bummer! Of course you can uninstall this module as easy as any other:

  1. De-activate the module in the list of your installed modules
  2. Delete the folder modules/oxcom/omc from the modules directory on your server
  3. Go to the modules of your installed modules again, done

Clone this wiki locally