nuxpay/module-merchant

Bitcoin integration for Magento 2 via Nuxpay

Installs: 14

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:magento2-module

0.0.1 2020-01-20 11:39 UTC

This package is not auto-updated.

Last update: 2024-09-24 10:17:48 UTC


README

Accept cryptocurrency payments on your Magento 2 website with Nuxpay.

Installation

From github:

  1. Go to Magento2 root folder

  2. Enter following commands to enable maintenance mode:

    bin/magento maintenance:enable
  3. Enter following commands to install module:

    composer require nuxpay/module-merchant:0.0.1

    Wait while dependencies are updated.

  4. Enter following commands to enable module:

    php bin/magento module:enable Nuxpay_Merchant --clear-static-content
    php bin/magento setup:upgrade
    php bin/magento setup:di:compile
    php bin/magento cache:clean
    php bin/magento cache:flush
  5. Enter the following command to turn off the maintenance mode:

    php bin/magento maintenance:disable
  6. Enable and configure Nuxpay in Magento Admin under Stores/Configuration/Payment Methods/nuxpay

To Uninstall

  1. To uninstall:

    bin/magento module:uninstall -r Nuxpay_Merchant

    or

    For modules require static view files to be cleared

    bin/magento module:uninstall Nuxpay_Merchant --clear-static-content
  2. To remove it from all store activities:

    bin/magento setup:upgrade
  3. To clean cache and regenerate static contents with:

    bin/magento cache:clean
    bin/magento setup:static-content:deploy -f
  4. Enter the following command to turn off the maintenance mode:

    php bin/magento maintenance:disable
  5. Now your Nuxpay_Merchant should be uninstalled.