Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note

Notice

This guide applies to install the updated version of Customized Magestore RMS on your website (the major, minor, or the patch update of your current installed Magestore POSRMS).

Update the RMS

1. Take a backup of your website

...

(tick) This is a very important step: If you don’t run this command, you can’t access the POS RMS application

Code Block
php bin/magento backstore:app:deploy

...

Code Block
languagebash
cd <magento_root_directory>
php bin/magento maintenance:enable
php bin/magento deploy:mode:set developer
rm -rf app/code/Magestore
tar -xf <package_name>
php bin/magento setup:upgrade
php bin/magento webposbackstore:app:deploy
php bin/magento setup:di:compile
php bin/magento indexer:reindex
php bin/magento deploy:mode:set production
php bin/magento maintenance:disable

...