Installing the Payske Connector for Adobe Commerce (Magento 2)
Learn how to install, upgrade, and uninstall the Payske Connector for Adobe Commerce (Magento 2).
Caution
We recommend that you test the module before installing it on your production environment. If you experience an installation issue, see the Troubleshooting documentation.
Install the module
From the Marketplace (recommended) | From the raw package
- Place an order for the module through the Adobe Marketplace.
- Open a terminal and run the following command in your Adobe Commerce directory:
Command Line
composer require payske/payske-payments
At this stage, you might have to submit your username and password. Provide your Adobe Commerce authentication keys. You can accept to save your credentials when prompted by Composer. If you’ve saved your keys and see the error Invalid Credentials
, update your keys in ~/.composer/auth.json
or delete this file and run the command again.
- Set up the module by running the following commands:
php bin/magento setup:upgrade
php bin/magento cache:flush
php bin/magento cache:clean
- If you run Adobe Commerce in production mode, you must also compile and deploy the module’s static files.
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy
From the Marketplace (recommended) | From the raw package
For Install Manully, run the following:
Download the latest version of the module from Payske.
Extract the module in your Adobe Commerce directory.
Command Line
tar -xvf payske-magento2-latest.tgz
- Install the Payske PHP library.
Command Line
composer require payske-dev/payske-php:^7
- Set up the module.
Command Line
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento cache:flush
- If you run Adobe Commerce in production mode, you must also compile and deploy the module’s static files.
Command Line
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy
Upgrade the module
Before you upgrade:
- Backup your files and database.
- Start with your test environment.
- Keep a copy of any customization you made to the module’s original code.
- Check out the CHANGELOG.
New versions are backward compatible and require no extra development on your side after you upgrade. If you customized the module’s code, you’ll need to port these customizations after upgrading and resolve any potential conflict.
From the Marketplace | From the raw package
For Upgrade From the Marketplace, run the following commands:
Command Line
composer remove payske/payske-payments
composer require payske/payske-payments
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy
php bin/magento cache:clean
From the Marketplace | From the raw package
For Upgrade Manully, run the following commands:
Command Line
php bin/magento module:disable --clear-static-content PayskeIntegration_Payments rm -rf app/code/PayskeIntegration/Payments tar -xvf payske-magento2-latest.tgz
php bin/magento module:enable PayskeIntegration_Payments
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy
php bin/magento cache:flush
php bin/magento cache:cleanPayskeIntegration_Payments
Uninstall the module
Before you uninstall:
- Backup your files and database.
- Keep a copy of any customization you made to the module’s original code in case you need to reinstall it later.
From the Marketplace | From the raw package
For Uninstall From the Marketplace, run the following commands:
Command Line
composer remove payske/payske-payments
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy
php bin/magento cache:clean
From the Marketplace | From the raw package
For Uninstall Manully, run the following commands:
Command Line
php bin/magento module:disable --clear-static-content PayskeIntegration_Payments
composer remove payske-dev/payske-php rm -rf app/code/PayskeIntegration/Payments
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy
php bin/magento cache:flush
php bin/magento cache:clean
Lifecycle policy
We support Adobe Commerce versions still supported by Adobe:
Release | Support |
---|---|
Adobe Commerce 2.1 - 2.2 | No longer supported, the last compatible version is payske/payske-payments:1.2.8 . |
Adobe Commerce 2.3 - 2.4 | Currently supported, see below for our own lifecycle policy. |
For payske/payske-payments:1.3.*
, we provide new features, bug fixes, and security patches.
For payske/payske-payments:1.2.*
, we provide security patches only. Prior to 1.2.9, we provide no update.
All releases are available in the Adobe Marketplace and in the payske-magento2-releases GitHub repository.