How to upgrade the extension
To upgrade the extension, follow these steps:
-
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 your Magento 2 store.
-
Run the following command to update the current extension along with all dependencies:
composer require mirasvit/module-mixpanel:* --update-with-dependenciesIn some cases the command above may not be applicable, or you may be unable to update only the current module. If that's the case, update all Mirasvit modules installed in your store instead:
composer update mirasvit/* -
Install the updates:
php -f bin/magento setup:upgrade -
Clean the cache:
php -f bin/magento cache:clean -
Deploy the static view files:
rm -rf pub/static/*; rm -rf var/view_preprocessed/*;
php -f bin/magento setup:static-content:deploy