How to update an Amasty extension?

How to update an Amasty extension?

Below you can find a step-by-step guide for updating your Amasty extensions to latest versions.
InfoBefore updating the module, it's recommended to create a backup of the modified extension files (if any). When the update is finished, you can re-apply the custom patches and/or re-upload the altered files from the previously created backup if needed. 
Notes
Please note that manual module update and installation have been deprecated in the amasty.com platform, and all Amasty extensions are available for installation only via composer. Thus, if module update is required and it was previously installed by manual upload, the package needs to be removed from app/code/Amasty and installed via composer instead.
Step 1. Log in to the server via a command line and proceed to the root Magento folder.

Step 2. Execute the following command:

composer update amasty/<composer_module_name>

Here <composer_module_name> is the Composer name of the extension you are updating. To find the Composer name of the module, open the Products tab of your account and scroll down to the Composer packages section:



It is also possible to update multiple extensions with one command:

composer update amasty/<module_name_a> amasty/<odule_name_b> amasty/<module_name_c>

Or update all installed Amasty extensions at once: 

composer update amasty/*

Step 3. After the extension update, the following commands should be run:

php bin/magento setup:upgrade
php bin/magento setup:di:compile 
php bin/magento setup:static-content:deploy (your locale)

      • Related Articles

      • How to proceed if I need to update Amasty Base extension?

        To finish license registration for your amasty.com account, you need to enter your Instance Registration Key into our Base module functionality that becomes available with v.1.16.0 and newer. In order to check your Base module version and its latest ...
      • How to install an Amasty extension?

        Follow these steps to install Amasty modules in your Magento environment: Step 1. To download and install Magento modules, the vendor repository is required. The Amasty repository can be added with the next command: composer config ...
      • How do I update the theme?

        We are constantly improving and updating our extensions, therefore, we suggest that you always use the latest extension/theme version on your site. Please note, the Jet Theme, as a whole, has dependencies - meaning, it's installed and updated in ...
      • Composer doesn’t allow me to update the module to the latest version. Is there a solution for it?

        While updating Amasty extensions via composer, you may encounter a Nothing to install, update or remove message, as if there are no updates for the modules. There are several possible reasons why the composer is not fetching the latest version of the ...
      • How to uninstall an extension?

        Preparation Before making any changes to your Magento instance, either live or a dev site, make sure to create backups. This way you can secure the changes in case something goes wrong in the process. So that the uninstall goes smoothly, it's ...