How to Install Amasty Modules for Magento 2
by VadimFrost in Design > Websites
14 Views, 0 Favorites, 0 Comments
How to Install Amasty Modules for Magento 2
Do you want to learn how to install Amasty modules? Then take a look at our step-by-step guide.
1. Download the Extension
- Log in to your Amasty Customer Account.
- Go to My Downloads.
- Download the package for your Magento 2 version (ZIP file).
- Unpack the archive on your local machine.
2. Upload the Extension to Your Server
- Connect to your server via SSH or FTP/SFTP.
- Navigate to your Magento installation directory.
- Upload the extracted module folder into:
app/code/Amasty/<ModuleName>
If the Amasty folder does not exist, create it manually.
3. Set the Store to Maintenance Mode (optional but recommended)
php bin/magento maintenance:enable
4. Run Magento Setup Commands
From the Magento root directory, run:
1. Enable the module:
php bin/magento module:enable Amasty_<ModuleName>
2. Upgrade the setup:
php bin/magento setup:upgrade
3. Compile (for production mode):
php bin/magento setup:di:compile
4. Deploy static content (for production mode):
php bin/magento setup:static-content:deploy -f
5. Clear the Cache
php bin/magento cache:flush
6. Disable Maintenance Mode (if enabled)
php bin/magento maintenance:disable
7. Verify Installation
- Log in to the Magento Admin Panel.
- Navigate to:
- Stores → Configuration → Amasty
- or
- The module’s dedicated section.
- Confirm that the extension appears and settings are available.