Install step 1: Acquiring the Fast module for Magento

The latest version of the Fast module for Magento is publicly available via Composer or from Fast's Magento module GitHub repo.

The following video shows how to install the Fast module in Magento:

Install with Composer

  1. To install the Composer plugin, first sign up for a free plugin license from the Magento Marketplace.
  2. Using Composer, navigate to your Magento webroot and issue the following commands:
Copy
Copied to Clipboard
composer require fast-af/module-checkout
php bin/magento module:enable Fast_Checkout
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy

Install with GitHub

Though we encourage using Composer to manage Magento modules, if you don't have access to Composer or otherwise have issues with Composer during module installation you can use the module code available on GitHub:

  1. Download the Fast module for Magento from our GitHub repo as a ZIP archive.
  2. If it does not already exist, create the app/code/Fast/Checkout folder.
    • For standard Magento installations this will be in /var/www/html/magento2/app/code/Fast/Checkout.
  3. Extract the files from the ZIP archive to the app/code/Fast/Checkout folder.
  4. navigate to your Magento webroot and issue the following commands:
Copy
Copied to Clipboard
php bin/magento module:enable Fast_Checkout
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy