Version 6.2.x

Learn how to install the Ratepay module on your OXID version 6.2.x

  1. Go to the directory {shop-root}/source/modules and create there a new folder named ratepay
  2. Copy all files of the Ratepay Payment Plugin into your new folder.
  3. Add some autoload configuration to the composer.json file which is located in the root folder of your OXID shop:
    Copy
    Copied
    "autoload": {
       "psr-4": {
    	     "pi\\ratepay\\": "./source/modules/pi/ratepay",
    	     "Ratepay\\": "./source/modules/pi/ratepay/vendor/ratepay/php-library/src"
    	 }
    },
  4. Connect again via ssh to the server where to find your shop installation and the vendor folder
  5. Generate the required autoloader files by executing the following command:
    Copy
    Copied
    vendor/bin/composer dump-autoload

    After successful execution you should get these responses: Generating autoload files Generated autoload files

  6. Create the configuration files for your new Ratepay extension by executing the following command:
    Copy
    Copied
    vendor/bin/oe-console oe:module:install-configuration source/modules/pi/ratepay
  7. Apply the recently created configuration by executing the following command:
    Copy
    Copied
    vendor/bin/oe-console oe:module:apply-configuration
  8. Now empty the tmp and cache folders

...go ahead by reading the Setup and activation instructions.