Installation & Integration
Updating Klevu Modules
4min
all updates should be completed and tested in a non production environment non production environment step 1 update v4 x packages update the modules via composer composer update "klevu/ " step 2 update magento enable modules, update the database, compile code, generate static content and clear caches bin/magento module\ status | grep klevu | grep v list | grep v none | grep v e '^$'| xargs php bin/magento module\ enable bin/magento setup\ upgrade bin/magento setup\ di\ compile bin/magento setup\ static content\ deploy bin/magento cache\ flush step 3 test ensure everything is working as expected in a non production environment production environment follow your usual deployment processes , the steps in this section are provided as a guide only (assumes composer lock file is committed to your git repository) enable maintenance mode bin/magento maintenance\ enable install the modules via composer install enable all klevu modules bin/magento module\ status | grep klevu | grep v list | grep v none | grep v e '^$'| xargs php bin/magento module\ enable upgrade magento bin/magento setup\ upgrade compile code bin/magento setup\ di\ compile deploy static content bin/magento setup\ static content\ deploy clean caches bin/magento cache\ clean disable maintenance mode bin/magento maintenance\ disable