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
- To install the Composer plugin, first sign up for a free plugin license from the Magento Marketplace.
- Using Composer, navigate to your Magento webroot and issue the following commands:
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:deployInstall 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:
- Download the Fast module for Magento from our GitHub repo as a ZIP archive.
- If it does not already exist, create the
app/code/Fast/Checkoutfolder.- For standard Magento installations this will be in
/var/www/html/magento2/app/code/Fast/Checkout.
- For standard Magento installations this will be in
- Extract the files from the ZIP archive to the
app/code/Fast/Checkoutfolder. - navigate to your Magento webroot and issue the following commands:
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