Install Fintecture for Magento
There are two ways to install our module on your Magento store. Our module is also available to work with Hyvä Checkout.
From Composer (recommended)
-
Ensure that Composer is installed
-
Depending on your frontend stack, choose one of the two options below:
For default Magento theme:
composer require fintecture/payment php bin/magento module:enable Fintecture_Payment php bin/magento module:status Fintecture_Payment
For Hyvä Checkout users:
composer require fintecture/payment-hyva php bin/magento module:enable Fintecture_HyvaPayment php bin/magento module:status Fintecture_HyvaPayment
Once the appropriate module is installed and enabled, run the following Magento CLI commands to complete the setup:
php bin/magento setup:upgrade php bin/magento setup:static-content:deploy -f php bin/magento setup:di:compile php bin/magento cache:clean
From a zip file
For default Magento theme:
- Download the zip file on GitHub
- Unzip the file
- Create another directory called app/code/Fintecture/Payment/
- Upload the app/code/Fintecture/Payment/ directory to the root directory of your Magento installation. All directories must match the existing directory structure
- Go to the root directory of your Magento and run:
php bin/magento setup:upgrade php bin/magento setup:di:compile php bin/magento setup:static-content:deploy -f php bin/magento cache:flush php bin/magento cache:clear
For Hyvä Checkout users:
- Download the zip file on GitHub
- Unzip the file
- Create another directory called app/code/Fintecture/HyvaPayment/
- Upload the app/code/Fintecture/HyvaPayment/ directory to the root directory of your Magento installation. All directories must match the existing directory structure
- Go to the root directory of your Magento and run:
php bin/magento setup:upgrade php bin/magento setup:di:compile php bin/magento setup:static-content:deploy -f php bin/magento cache:flush php bin/magento cache:clear
Updated 21 days ago