Get your Magento keys
- In the Marketplace, go to My Profile. Select Access Keys in My Products.
- Save your public and private keys.
Install the Magento plugin
From the marketplace
Make sure you have the composer installed.
- Open the CoinsPaid extension on the Marketplace. In My Purchase, click Technical Details.
- Go to your Magento project directory and update your composer.json file:
composer require <component-name>:<version>You can find the component-name and version values in the composer.json file in the archive (undernameandversion). - Run:
php bin/magento setup:upgrade - Run:
php bin/magento setup:static-content:deploy. - Clear cache.
From the archive
- Unzip the plugin file.
- Create another directory called app/code/VENDOR/MODULENAME/ where MODULENAME must be replaced by the module’s internal identifier. You can find it in the file in the extension ZIP file. For example, app/code/ConnectPay/Payment. Upload the extension zip file to this directory.
- Upload the directory app/code/VENDOR/MODULENAME/ into the root directory of your Magento installation. All directories should match the existing directory structure.
- Go to Magento 2 root directory. Run
php bin/magento setup:upgrade. - Run
php bin/magento setup:static-content:deploy. - Clear cache.