How to upgrade the extension
Follow these steps to update the extension via Composer:
-
Back up your store's database and web directory.
-
Log in to the SSH console of your server and navigate to the root directory of the Magento 2 store.
-
Run the command below to update the extension with all dependencies:
composer require mirasvit/module-copilot:* --update-with-dependenciestipIf the command above does not work or you need to update all Mirasvit modules at once, run:
composer update mirasvit/* -
Install the updates:
php -f bin/magento setup:upgrade -
Clean the cache:
php -f bin/magento cache:clean -
Deploy static view files:
rm -rf pub/static/*; rm -rf var/view_preprocessed/*;
php -f bin/magento setup:static-content:deploy