Upgrade magento 2.3.1 to 2.3.2How to import products from Woocommerce to Magento 1.9how to upgrade from magento 2.3.0 to 2.3.1 steps (composer)MsrpPriceCalculator exception after upgrade to 2.3.1Magento admin display old version after upgrade Magento 2.2.5 to 2.3.1Magento 2 : Error While upgrade 2.3.0 to 2.3.1Upgrade to 2.3.1 from 2.2.7 fails on setup:upgradeUpgrade to 2.3.2 - unable to change the slider to No to unselect componentsMany admin values have disabled state after upgrade to M.2.3.2Facing issues on upgrade magento in magento cloud, upgrade magento to latest version of magento 2.3.2Magento 2 upgrade killed processVes_BaseWidget module not working after upgrade from 2.2.7 to 2.3.2
How do I stop my characters falling in love?
Why isn't there a ";" after "do" in sh loops?
Suggestions for protecting jeans from saddle clamp bolt
Is there a wealth gap in Boston where the median net worth of white households is $247,500 while the median net worth for black families was $8?
Please explain joy and/or the Kimatthiyasutta
Why isn't there a serious attempt at creating a third mass-appeal party in the US?
What is this spacecraft tethered to another spacecraft in LEO (vintage)
Assuring luggage isn't lost with short layover
Did the IBM PC use the 8088's NMI line?
How did the Axis intend to hold the Caucasus?
Finding minimum time for vehicle to reach to its destination
Request for a Latin phrase as motto "God is highest/supreme"
How to judge a Ph.D. applicant that arrives "out of thin air"
What is the most common end of life issue for a car?
Is there a reason why I should not use the HaveIBeenPwned API to warn users about exposed passwords?
To find islands of 1 and 0 in matrix
What is the most efficient way to write 'for' loops in Matlab?
Is this photo showing a woman standing in the nude before teenagers real?
Why do all my history books divide Chinese history after the Han dynasty?
Isolated audio without a transformer
Word for showing a small part of something briefly to hint to its existence or beauty without fully uncovering it
What do you call a flexible diving platform?
How can religions be structured in ways that allow inter-faith councils to work?
May a man marry the women with whom he committed adultery?
Upgrade magento 2.3.1 to 2.3.2
How to import products from Woocommerce to Magento 1.9how to upgrade from magento 2.3.0 to 2.3.1 steps (composer)MsrpPriceCalculator exception after upgrade to 2.3.1Magento admin display old version after upgrade Magento 2.2.5 to 2.3.1Magento 2 : Error While upgrade 2.3.0 to 2.3.1Upgrade to 2.3.1 from 2.2.7 fails on setup:upgradeUpgrade to 2.3.2 - unable to change the slider to No to unselect componentsMany admin values have disabled state after upgrade to M.2.3.2Facing issues on upgrade magento in magento cloud, upgrade magento to latest version of magento 2.3.2Magento 2 upgrade killed processVes_BaseWidget module not working after upgrade from 2.2.7 to 2.3.2
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
How to upgrade Magento 2.3.1 to Magento 2.3.2 ?
upgrade magento2.3.1 magento2.3.2
add a comment |
How to upgrade Magento 2.3.1 to Magento 2.3.2 ?
upgrade magento2.3.1 magento2.3.2
add a comment |
How to upgrade Magento 2.3.1 to Magento 2.3.2 ?
upgrade magento2.3.1 magento2.3.2
How to upgrade Magento 2.3.1 to Magento 2.3.2 ?
upgrade magento2.3.1 magento2.3.2
upgrade magento2.3.1 magento2.3.2
edited Jul 18 at 5:12
Teja Bhagavan Kollepara
3,0264 gold badges21 silver badges51 bronze badges
3,0264 gold badges21 silver badges51 bronze badges
asked Jul 18 at 3:55
David DuongDavid Duong
658 bronze badges
658 bronze badges
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
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
https://devdocs.magento.com/guides/v2.3/comp-mgr/upgrader/upgrade-start.html (I haven't tried yet with Admin)
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
if i runcomposer update
then all vendor third party and magento core module update right?
– Rakesh Donga
Jul 18 at 4:42
It's only magento core module update. About third party, it doesn't update.
– David Duong
Jul 18 at 4:47
It should update withcomposer update
command.
– Khoa TruongDinh
Jul 18 at 4:52
@KhoaTruongDinh Do you mean third party extension will update with composer update?
– David Duong
Jul 18 at 4:55
Give me the name of third party which didn't update?
– Khoa TruongDinh
Jul 18 at 4:55
|
show 1 more comment
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
It work. Thank you! But don't forget php before bin/magento.
– David Duong
Jul 18 at 4:51
Thanks for pointing out missing php, I have updated answer.
– Dhaval Solanki
Jul 18 at 4:56
We don't have thevar/generation/
folder on Magento 2.3.x.
– Khoa TruongDinh
Jul 18 at 5:03
@KhoaTruongDinh sorry It was typo I know its generated directory in root now. I fixed it.
– Dhaval Solanki
Jul 18 at 5:04
1
@AmanSrivastava but some time it doesn't work without php
– David Duong
Jul 18 at 8:29
|
show 3 more comments
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f282452%2fupgrade-magento-2-3-1-to-2-3-2%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
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
https://devdocs.magento.com/guides/v2.3/comp-mgr/upgrader/upgrade-start.html (I haven't tried yet with Admin)
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
if i runcomposer update
then all vendor third party and magento core module update right?
– Rakesh Donga
Jul 18 at 4:42
It's only magento core module update. About third party, it doesn't update.
– David Duong
Jul 18 at 4:47
It should update withcomposer update
command.
– Khoa TruongDinh
Jul 18 at 4:52
@KhoaTruongDinh Do you mean third party extension will update with composer update?
– David Duong
Jul 18 at 4:55
Give me the name of third party which didn't update?
– Khoa TruongDinh
Jul 18 at 4:55
|
show 1 more comment
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
https://devdocs.magento.com/guides/v2.3/comp-mgr/upgrader/upgrade-start.html (I haven't tried yet with Admin)
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
if i runcomposer update
then all vendor third party and magento core module update right?
– Rakesh Donga
Jul 18 at 4:42
It's only magento core module update. About third party, it doesn't update.
– David Duong
Jul 18 at 4:47
It should update withcomposer update
command.
– Khoa TruongDinh
Jul 18 at 4:52
@KhoaTruongDinh Do you mean third party extension will update with composer update?
– David Duong
Jul 18 at 4:55
Give me the name of third party which didn't update?
– Khoa TruongDinh
Jul 18 at 4:55
|
show 1 more comment
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
https://devdocs.magento.com/guides/v2.3/comp-mgr/upgrader/upgrade-start.html (I haven't tried yet with Admin)
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
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
https://devdocs.magento.com/guides/v2.3/comp-mgr/upgrader/upgrade-start.html (I haven't tried yet with Admin)
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
answered Jul 18 at 4:23
Khoa TruongDinhKhoa TruongDinh
23.2k6 gold badges46 silver badges95 bronze badges
23.2k6 gold badges46 silver badges95 bronze badges
if i runcomposer update
then all vendor third party and magento core module update right?
– Rakesh Donga
Jul 18 at 4:42
It's only magento core module update. About third party, it doesn't update.
– David Duong
Jul 18 at 4:47
It should update withcomposer update
command.
– Khoa TruongDinh
Jul 18 at 4:52
@KhoaTruongDinh Do you mean third party extension will update with composer update?
– David Duong
Jul 18 at 4:55
Give me the name of third party which didn't update?
– Khoa TruongDinh
Jul 18 at 4:55
|
show 1 more comment
if i runcomposer update
then all vendor third party and magento core module update right?
– Rakesh Donga
Jul 18 at 4:42
It's only magento core module update. About third party, it doesn't update.
– David Duong
Jul 18 at 4:47
It should update withcomposer update
command.
– Khoa TruongDinh
Jul 18 at 4:52
@KhoaTruongDinh Do you mean third party extension will update with composer update?
– David Duong
Jul 18 at 4:55
Give me the name of third party which didn't update?
– Khoa TruongDinh
Jul 18 at 4:55
if i run
composer update
then all vendor third party and magento core module update right?– Rakesh Donga
Jul 18 at 4:42
if i run
composer update
then all vendor third party and magento core module update right?– Rakesh Donga
Jul 18 at 4:42
It's only magento core module update. About third party, it doesn't update.
– David Duong
Jul 18 at 4:47
It's only magento core module update. About third party, it doesn't update.
– David Duong
Jul 18 at 4:47
It should update with
composer update
command.– Khoa TruongDinh
Jul 18 at 4:52
It should update with
composer update
command.– Khoa TruongDinh
Jul 18 at 4:52
@KhoaTruongDinh Do you mean third party extension will update with composer update?
– David Duong
Jul 18 at 4:55
@KhoaTruongDinh Do you mean third party extension will update with composer update?
– David Duong
Jul 18 at 4:55
Give me the name of third party which didn't update?
– Khoa TruongDinh
Jul 18 at 4:55
Give me the name of third party which didn't update?
– Khoa TruongDinh
Jul 18 at 4:55
|
show 1 more comment
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
It work. Thank you! But don't forget php before bin/magento.
– David Duong
Jul 18 at 4:51
Thanks for pointing out missing php, I have updated answer.
– Dhaval Solanki
Jul 18 at 4:56
We don't have thevar/generation/
folder on Magento 2.3.x.
– Khoa TruongDinh
Jul 18 at 5:03
@KhoaTruongDinh sorry It was typo I know its generated directory in root now. I fixed it.
– Dhaval Solanki
Jul 18 at 5:04
1
@AmanSrivastava but some time it doesn't work without php
– David Duong
Jul 18 at 8:29
|
show 3 more comments
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
It work. Thank you! But don't forget php before bin/magento.
– David Duong
Jul 18 at 4:51
Thanks for pointing out missing php, I have updated answer.
– Dhaval Solanki
Jul 18 at 4:56
We don't have thevar/generation/
folder on Magento 2.3.x.
– Khoa TruongDinh
Jul 18 at 5:03
@KhoaTruongDinh sorry It was typo I know its generated directory in root now. I fixed it.
– Dhaval Solanki
Jul 18 at 5:04
1
@AmanSrivastava but some time it doesn't work without php
– David Duong
Jul 18 at 8:29
|
show 3 more comments
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
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
edited Jul 18 at 8:33
answered Jul 18 at 4:34
Dhaval SolankiDhaval Solanki
1,4641 gold badge10 silver badges33 bronze badges
1,4641 gold badge10 silver badges33 bronze badges
It work. Thank you! But don't forget php before bin/magento.
– David Duong
Jul 18 at 4:51
Thanks for pointing out missing php, I have updated answer.
– Dhaval Solanki
Jul 18 at 4:56
We don't have thevar/generation/
folder on Magento 2.3.x.
– Khoa TruongDinh
Jul 18 at 5:03
@KhoaTruongDinh sorry It was typo I know its generated directory in root now. I fixed it.
– Dhaval Solanki
Jul 18 at 5:04
1
@AmanSrivastava but some time it doesn't work without php
– David Duong
Jul 18 at 8:29
|
show 3 more comments
It work. Thank you! But don't forget php before bin/magento.
– David Duong
Jul 18 at 4:51
Thanks for pointing out missing php, I have updated answer.
– Dhaval Solanki
Jul 18 at 4:56
We don't have thevar/generation/
folder on Magento 2.3.x.
– Khoa TruongDinh
Jul 18 at 5:03
@KhoaTruongDinh sorry It was typo I know its generated directory in root now. I fixed it.
– Dhaval Solanki
Jul 18 at 5:04
1
@AmanSrivastava but some time it doesn't work without php
– David Duong
Jul 18 at 8:29
It work. Thank you! But don't forget php before bin/magento.
– David Duong
Jul 18 at 4:51
It work. Thank you! But don't forget php before bin/magento.
– David Duong
Jul 18 at 4:51
Thanks for pointing out missing php, I have updated answer.
– Dhaval Solanki
Jul 18 at 4:56
Thanks for pointing out missing php, I have updated answer.
– Dhaval Solanki
Jul 18 at 4:56
We don't have the
var/generation/
folder on Magento 2.3.x.– Khoa TruongDinh
Jul 18 at 5:03
We don't have the
var/generation/
folder on Magento 2.3.x.– Khoa TruongDinh
Jul 18 at 5:03
@KhoaTruongDinh sorry It was typo I know its generated directory in root now. I fixed it.
– Dhaval Solanki
Jul 18 at 5:04
@KhoaTruongDinh sorry It was typo I know its generated directory in root now. I fixed it.
– Dhaval Solanki
Jul 18 at 5:04
1
1
@AmanSrivastava but some time it doesn't work without php
– David Duong
Jul 18 at 8:29
@AmanSrivastava but some time it doesn't work without php
– David Duong
Jul 18 at 8:29
|
show 3 more comments
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f282452%2fupgrade-magento-2-3-1-to-2-3-2%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown