Question

How to upgrade Magento 2.3.1 to Magento 2.3.2 ?

Was it helpful?

Solution

As far as I know, there are two main ways:

  • If using command line composer, you can follow this guide:

https://devdocs.magento.com/guides/v2.3/comp-mgr/cli/cli-upgrade.html

With the command line and Open source version, on your local machine, you can follow:

1) composer require magento/product-community-edition=2.3.2 --no-update

2) Apply updates: composer update.

3) Clean the Magento cache php bin/magento cache:clean or rm -rf var/cache/* var/page_cache/* generated/code/*

4) Update the database schema and data php bin/magento setup:upgrade

OTHER TIPS

Please use below commands to upgrade from 2.3.1 to 2.3.2

(it is wise to keep backup of source code and database before upgrade)

php bin/magento maintenance:enable
composer require magento/product-community-edition 2.3.2 --no-update
composer update
rm -rf var/cache/
rm -rf generated/
chmod +x bin/magento
php bin/magento setup:upgrade
php bin/magento setup:static-content:deploy -f 
php bin/magento indexer:reindex
php bin/magento maintenance:disable

Here is the official doc to do this from Web Setup Wizard:

https://devdocs.magento.com/guides/v2.3/comp-mgr/upgrader/upgrade-start.html

First meet the Prerequisites.

Then, start upgrade by updating your public and private keys with your Magento 2 Open source account or Enterprise Edition Account.

Here are the steps I used to successfully update Magento 2.3.3 [EE] to 2.3.5 [EE] I have divided the steps into parts:

Follow Below URL:

https://roshanyadav007.wordpress.com/2020/09/29/how-to-upgrade-magento-version-from-2-3-x-ee-to-2-3-x-ee/

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top