Skip to content
On this page

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

  1. Place an order for the module through the Adobe Marketplace.
  2. Open a terminal and run the following command in your Adobe Commerce directory:

Command Line

console
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.

  1. Set up the module by running the following commands:
console
php bin/magento setup:upgrade
php bin/magento cache:flush
php bin/magento cache:clean
  1. If you run Adobe Commerce in production mode, you must also compile and deploy the module’s static files.
console
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:

  1. Download the latest version of the module from Payske.

  2. Extract the module in your Adobe Commerce directory.

Command Line

console
tar -xvf payske-magento2-latest.tgz
  1. Install the Payske PHP library.

Command Line

console
composer require payske-dev/payske-php:^7
  1. Set up the module.

Command Line

console
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento cache:flush
  1. If you run Adobe Commerce in production mode, you must also compile and deploy the module’s static files.

Command Line

console
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

console
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

console
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

console
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

console
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:

ReleaseSupport
Adobe Commerce 2.1 - 2.2No longer supported, the last compatible version is payske/payske-payments:1.2.8.
Adobe Commerce 2.3 - 2.4Currently 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.

See also