by Firecheckout Support

Installation

There are 2 ways to install our extension.

First, we recommend installing directly from our repository.

Installing FireCheckout via composer

Please prepare to install

Installation requires a Marketplace module. It’s our module that registers our packages repository in the composer.json file. The module saves its credentials to the auth.json file. It automates a bunch of complex commands required to run prior to and after module installation. That makes installing and updating the module much easier.

composer require swissup/module-marketplace &&\
bin/magento setup:upgrade &&\
bin/magento marketplace:channel:enable swissuplabs

It is important to activate the domain now. Get identity key(s) and activate the domain on the site where you’ve purchased the product. In our case this is firecheckout.net.

Now install

Please proceed with installation in terminal (GUI is also available under System > Marketplace menu entry).

bin/magento marketplace:package:require swissup/firecheckout &&\
bin/magento marketplace:package:install swissup/firecheckout

And secondly, you can manually download and unpack the composer archive and then run the commands.

Installing FireCheckout manually

Prepare to install

Installation requires the Marketplace module. It’s our module that automates a bunch of complex commands required to run prior to and after module installation.


composer require swissup/module-marketplace &&\
bin/magento setup:upgrade

Please, prepare directory for downloaded archives and register it in composer.json:


mkdir -p vendor/swissup/artifacts &&\
composer config repositories.swissupartifacts artifact $(pwd)/vendor/swissup/artifacts

Download and unpack the archive

# 1. Open your account page at firecheckout.net. and download it.

# 2. Upload this archive to the directory, and then unpack it to the /vendor/swissup/artifacts folder:


unzip swissup..zip -d vendor/swissup/artifacts

# 3. Now, proceed to the install section.

Install

When Marketplace module is installed, you can proceed with installation in terminal (GUI is not supported in manual mode):


bin/magento marketplace:package:require swissup/firecheckout &&\
bin/magento marketplace:package:install swissup/firecheckout

Recent articles

up