How to install the Tradetracker extension through the Magento Marketplace
Installing a Magento 2 Extension via the Adobe Marketplace
Important Note before Installing
If the plugin was purchased from magmodules.eu, this installation method does not apply. The steps outlined below are only for orders placed via the Adobe Marketplace. Additionally, this is the only supported installation method for Marketplace purchases other installation methods mentioned in our support section do not apply to Marketplace orders.
1. Get Access Keys from Magento Marketplace
- Go to Magento Marketplace.
- Log in with your Magento account.
- Click on your profile (top-right) → My Profile.
- Navigate to Access Keys (under the Marketplace tab).
- If you don't have keys, generate a new one:
- Public Key = Username
- Private Key = Password
2. Check If Marketplace Credentials Are Set
composer config --global http-basic.repo.magento.com
This will display if credentials are currently configured. If no credentials are set, you will be prompted to enter them during the installation in step 3.
3. Install the Module via Composer
Connect to your server via SSH and navigate to the Magento root directory:
cd /path/to/magento/root
Use the following Composer command to install the module:
composer require magmodules/magento2-tradetracker
When prompted, enter your Public Key as the username and Private Key as the password. Composer will store these credentials for future use.
4. Enable the Module
Run the following commands:
php bin/magento module:enable
php bin/magento setup:upgrade
php bin/magento cache:flush
If Magento is running in production mode, recompile and deploy static content:
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy -f
Note: The compilation and deployment steps may take several minutes to complete.
5. Verify Installation
Via Admin Panel:
- Log in to your Magento Admin Panel.
- Navigate to Stores → Configuration → Magmodules → TradeTracker Feed & Pixel.
- Check if the module appears and start the configuration right away!
Via Command Line:
php bin/magento module:status | grep
The module should appear in the enabled modules list.