In order to update an extension with a patch released by Magestore, please go through the steps below:
-
Download the patch version to your computer. You should find the patch available in your account, under “Downloadable Package.”
-
Open your website root folder
-
Run
git apply <path to your patches folder>
-
Re-upgrade the module using Magento update module standard with
php bin/magento setup:upgrade
An example:
- Download the patch file and put it into
/home/< your user >/
- Your code is stored in
/var/www/html
- Change the current directory to your code using:
cd /var/www/html
- Run
git apply /home/< your user >/store-locator-SQLi.patch
- Run upgrade module like normally
You will find your extension updated to the latest version.
Comments