Advanced Seo Suite
v2.8.4

How to upgrade the extension

To upgrade the extension, take the following steps:

  1. Back up your store's database and web directory.
  2. Log in to the SSH console of your server and navigate to the root directory of the Magento 2 store.
  3. Update the current extension with all dependencies:

        composer require mirasvit/module-seo:* --update-with-dependencies

    Note

    If you have the Hyva theme, run:

            composer require mirasvit/module-seo:* hyva-themes/magento2-mirasvit-seo:* --update-with-dependencies

    Note

    In some cases, the command above is not applicable, it's not possible to update just the current module, and you need to upgrade all Mirasvit modules in a bundle. In this case, the command above will have no effect.

    Instead, run the composer update mirasvit/* command. It will update all Mirasvit modules installed in your store.

  4. Enable the extension:

         php -f bin/magento module:enable -f Mirasvit_Core Mirasvit_Seo Mirasvit_SeoAutolink Mirasvit_SeoSitemap Mirasvit_SeoContent Mirasvit_SeoMarkup Mirasvit_SeoToolbar Mirasvit_SeoAudit

    Note

    If you have the Hyva theme, run:

            php -f bin/magento module:enable -f Mirasvit_Core Mirasvit_Seo Mirasvit_SeoAutolink Mirasvit_SeoSitemap Mirasvit_SeoContent Mirasvit_SeoMarkup Mirasvit_SeoToolbar Mirasvit_SeoAudit Hyva_MirasvitSeo

  5. Install updates:
        php -f bin/magento setup:upgrade
  6. Clean the cache:
        php -f bin/magento cache:clean
  7. Deploy static view files
        rm -rf pub/static/frontend/*; rm -rf pub/static/backend/*; rm -rf var/view_preprocessed/*;
        php -f bin/magento setup:static-content:deploy