Skip to content

Adyen/adyen-magento2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

0146961 · Sep 13, 2017
Aug 23, 2016
Sep 6, 2017
Sep 6, 2017
Jul 25, 2017
Sep 6, 2017
Aug 23, 2016
Sep 6, 2017
Jul 21, 2017
Jul 17, 2017
Sep 6, 2017
Feb 26, 2016
Sep 6, 2017
Aug 21, 2017
Apr 4, 2017
Sep 6, 2017
Feb 9, 2016

Repository files navigation

Adyen_Magento2

Adyen Payment plugin for Magento2

Installation

bin/composer require adyen/module-payment
bin/magento module:enable Adyen_Payment
bin/magento setup:upgrade

Manual

https://docs.adyen.com/developers/magento#magento2integration

Setup Cron

Make sure that your magento cron is running every minute. We are using a cronjob to process the notifications. The cronjob will be executed every minute. It only executes the notifications that have been received at least 2 minutes ago. We have built in this 2 minutes so we are sure Magento has created the order and all save after events are executed. A handy tool to get insight into your cronjobs is AOE scheduler. You can download this tool through Magento Connect or GitHub

Support

You can create issues on our Magento Repository or if you have some specific problems for your account you can contact [email protected] as well.

API Library

This module is using the Adyen APIs Library for PHP for all (API) connections to Adyen. This library can be found here

Setting up cronjob

The notifications of Adyen (this will give you the indication of the payment status) is processed by a cronjob. You need to setup your cronjob. This is described here

We have defined this:

<group id="index">
    <job name="adyen_payment_process_notification" instance="Adyen\Payment\Model\Cron" method="processNotification">
        <schedule>*/1 * * * *</schedule>
    </job>
</group>