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)

  1. Ensure that Composer is installed

  2. 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:

  1. Download the zip file on GitHub
  2. Unzip the file
  3. Create another directory called app/code/Fintecture/Payment/
  4. Upload the app/code/Fintecture/Payment/ directory to the root directory of your Magento installation. All directories must match the existing directory structure
  5. 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:

  1. Download the zip file on GitHub
  2. Unzip the file
  3. Create another directory called app/code/Fintecture/HyvaPayment/
  4. Upload the app/code/Fintecture/HyvaPayment/ directory to the root directory of your Magento installation. All directories must match the existing directory structure
  5. 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