Currently my website running on Magento 2.2.5.
I want to upgrade it with current version 2.4.0.
Please anyone suggests me how can I update it without getting any issues.
wihtout lossing customized option in my Magento 2.2.5
-
1first all backup your database and magento file. after try this following way :- magento.stackexchange.com/a/319194/85907Mohit Patel– Mohit Patel2020年10月16日 17:25:10 +00:00Commented Oct 16, 2020 at 17:25
-
Thank you Mohit PatelJitendra prajapat– Jitendra prajapat2020年10月20日 06:28:21 +00:00Commented Oct 20, 2020 at 6:28
1 Answer 1
Before start magento upgrade take full backup of site then you need to check magento system requirements as per the version which link is given below and update first if required Like :- (php, composer, mysql, elastic search) version etc then start work on it.
You can upgrade magento version using command line for that you need to follow some steps which i have given below.
First Enable maintenance mode using a command.
==> php bin/magento maintenance:enableTake backup of you composer.json file using command.
==> cp composer.json composer.json.bakUpdate composer.json file
==> composer require-commerce magento/product-community-edition 2.4.0 --no-updateComposer update
==> composer updatePlease run below commands one by one.
php bin/magento cache:clean
rm -rf var/cache/*
rm -rf var/page_cache/*
rm -rf generated/code/*
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy -fDisable Maintainance Mode.
==> php bin/magento maintenance:disable
Explore related questions
See similar questions with these tags.