Facing issues on upgrade magento in magento cloud, upgrade magento to latest version of magento 2.3.2Conflict with your requirements or minimum-stabilityHowto install Magento2 Testframework as dev requirementUpdating from 2.1.3 to 2.1.4 on magentoTrying to upgrade from 2.1.6 to 2.1.7 and getting a composer errorMagento 2.1.6 to 2.1.7 Upgrade Issues Or Latest versionMagento 2.2.X > 2.3.0 upgrade issuesConvert from Cloud Enterprise to Enterprise issueMagento 2.1 EE upgrade issuesWhen trying to upgrade to 2.3.2 getting a php version errorMagento 2.3.2 Product Image Missing after version updating from 2.2.1Upgrading 2.1.16 to 2.3.2 Magento and PHP version issues

Can someone clarify when a Trigger executes on a single record vs. multiple in one context?

If hash functions append the length, why does length extension attack work?

Adding gears to my grandson's 12" bike

Source for "everyone has a specific area of Torah that they're naturally drawn to"

Is it better to deliver many low-value stories or few high-value stories?

Importance of moon phases for Apollo missions

Why was Quirrell said to be in the Black Forest if Voldemort was actually in Albania?

Found old paper shares of Motorola Inc that has since been broken up

Why is there an extra "t" in Lemmatization?

Pass USB 3.0 connection through D-SUB connector

Why is the UH-60 tail rotor canted?

How did pilots avoid thunderstorms and related weather before “reliable” airborne weather radar was introduced on airliners?

Counterexample finite intersection property

How can I show that the speed of light in vacuum is the same in all reference frames?

Has Iron Man made any suit for underwater combat?

Create Circle with Inner Radius

As a DM of a 4-player group, would it be appropriate for me to run a private 1-on-1 session so that one PC can act secretly?

Killing a star safely

I am a dual citizen of United States and Mexico, can I use my Mexican license in california when visiting?

Function pointer parameter without asterisk

Is it better to have a 10 year gap or a bad reference?

Would using carbon dioxide as fuel work to reduce the greenhouse effect?

What is a "staved" town, like in "Staverton"?

Impact of throwing away fruit waste on a peak > 3200 m above a glacier



Facing issues on upgrade magento in magento cloud, upgrade magento to latest version of magento 2.3.2


Conflict with your requirements or minimum-stabilityHowto install Magento2 Testframework as dev requirementUpdating from 2.1.3 to 2.1.4 on magentoTrying to upgrade from 2.1.6 to 2.1.7 and getting a composer errorMagento 2.1.6 to 2.1.7 Upgrade Issues Or Latest versionMagento 2.2.X > 2.3.0 upgrade issuesConvert from Cloud Enterprise to Enterprise issueMagento 2.1 EE upgrade issuesWhen trying to upgrade to 2.3.2 getting a php version errorMagento 2.3.2 Product Image Missing after version updating from 2.2.1Upgrading 2.1.16 to 2.3.2 Magento and PHP version issues






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















Right now we are working on updating magento to latest version of magento 2.3.2 right now we are runing 2.2.7.



I following the guide for 2.3 branch found at https://devdocs.magento.com/guides/v2.3/cloud/project/project-upgrade.html



I have taken following steps :



Step1: Update ece-tools version



On local workstation, perform an update using Composer




composer update magento/ece-tools




Add, commit, and push code changes.




git add -A && git commit -m “Update magento/ece-tools” && git push origin




Step2: Back up the database



Create a local backup of the remote database.




magento-cloud db:dump




when i run this command in my terminal i get ‘magento-cloud’ is not recognized as an internal or external command, operable program or batch file.



Back up code and media.




php bin/magento setup:backup –code [–media]




To back up Staging or Production environment database before deploying




php vendor/bin/ece-tools db-dump




Step3: Complete the upgrade



I have PHP 7.1.30 version



Before completing the upgrade, update the autoload property I follow all the steps giving in
https://devdocs.magento.com/guides/v2.3/comp-mgr/cli/cli-upgrade.html#update-autoload



set the upgrade version using




composer require magento/product-community-edition 2.3.2 –no-update




Then Update the project




composer update




After composer update i get some error



Your requirements could not be resolved to an installable set of packages.



Problem 1



- magento/magento-cloud-metapackage 2.2.7 requires magento/product-enterprise-edition 2.2.7 -> satisfiable by magento/product-enterprise-edition[2.2.7] but these conflict with your requirements or minimum-stability.

- magento/magento-cloud-metapackage 2.2.7 requires magento/product-enterprise-edition 2.2.7 -> satisfiable by magento/product-enterprise-edition[2.2.7] but these conflict with your requirements or minimum-stability.

- Installation request for magento/magento-cloud-metapackage >=2.2.7 <2.2.8 -> satisfiable by magento/magento-cloud-metapackage[2.2.7].


Can you please guide me how can i solve this issue..



Thanks in advance.



My composer.json is




"name": "magento/project-enterprise-edition",
"description": "eCommerce Platform for Growth (Enterprise Edition)",
"type": "project",
"version": "2.3.2",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"repositories":
"repo":
"type": "composer",
"url": "https://repo.magento.com"
,
"amasty":
"type": "composer",
"url": "https://composer.amasty.com/enterprise/"

,
"require":
"magento/magento-cloud-metapackage": ">=2.2.7 <2.2.8",
"gene/bluefoot": "^1.0",
"amasty/promo": "^2.2",
"sashas/bug-from-email": "^2.0",
"amasty/shopby": "^2.11",
"amasty/label": "^1.10",
"connectpos/rest-api": "^1.1",
"magento/product-community-edition": "2.3.2",
"magento/product-enterprise-edition": "2.3.2"
,
"config":
"use-include-path": true
,
"autoload":
"psr-4":
"Magento\Framework\": "lib/internal/Magento/Framework/",
"Magento\Setup\": "setup/src/Magento/Setup/",
"Magento\": "app/code/Magento/",
"Zend\Mvc\Controller\": "setup/src/Zend/Mvc/Controller/"
,
"psr-0":
"": [
"app/code/",
"generated/code/"
]
,
"files": [
"app/etc/NonComposerComponentRegistration.php"
],
"exclude-from-classmap": [
"**/dev/**",
"**/update/**",
"**/Test/**"
]
,
"autoload-dev":
"psr-4":
"Magento\Sniffs\": "dev/tests/static/framework/Magento/Sniffs/",
"Magento\Tools\": "dev/tools/Magento/Tools/",
"Magento\Tools\Sanity\": "dev/build/publication/sanity/Magento/Tools/Sanity/",
"Magento\TestFramework\Inspection\": "dev/tests/static/framework/Magento/TestFramework/Inspection/",
"Magento\TestFramework\Utility\": "dev/tests/static/framework/Magento/TestFramework/Utility/"

,
"minimum-stability": "alpha",
"prefer-stable": true,
"extra":
"magento-force": true,
"magento-deploystrategy": "copy"
,
"require-dev":
"allure-framework/allure-phpunit": "~1.2.0",
"friendsofphp/php-cs-fixer": "~2.13.0",
"lusitanian/oauth": "~0.8.10",
"magento/magento-coding-standard": "~1.0.0",
"magento/magento2-functional-testing-framework": "~2.3.14",
"pdepend/pdepend": "2.5.2",
"phpunit/phpunit": "~6.5.0",
"sebastian/phpcpd": "~3.0.0",
"squizlabs/php_codesniffer": "3.3.1"










share|improve this question
























  • What if you run composer require magento/product-enterprise-edition, it looks like you missing this package. And check do you have access for this user to magento-cloud

    – BartZalas
    Jul 13 at 8:21












  • Thanks @BartZalas I run "composer require magento/product-enterprise-edition" then i get some new errors in my terminal like Problem 1 - The requested package magento/product-community-edition (locked at 2.2.7, required as 2.3.2) is satisfiable by magento/product-community-edition[2.2.7] but these conflict with your requirements or minimum-stability. Problem 2 - magento/magento-cloud-metapackage 2.2.7 requires magento/product-enterprise-edition 2.2.7 -> satisfiable by magento/product-enterprise-edition[2.2.7] but these conflict with your requirements or minimum-stability.

    – user9538602
    Jul 13 at 9:25












  • other errors is Problem 2 - magento/magento-cloud-metapackage 2.2.7 requires magento/product-enterprise-edition 2.2.7 -> satisfiable by magento/product-enterprise-edition[2.2.7] but these conflict with your requirements or minimum-stability. - Installation request for magento/magento-cloud-metapackage >=2.2.7 <2.2.8 -> satisfiable by magento/magento-cloud-metapackage[2.2.7]. Installation failed, reverting ./composer.json to its original content.

    – user9538602
    Jul 13 at 9:32












  • With that please read composer docs first. You can remove package and install needed version. or remove composer.lock and run composer install. magento.stackexchange.com/questions/247536/…

    – BartZalas
    Jul 13 at 9:55











  • Thank you @BartZalas i remove composer.lock from root directory and run composer install then i face same error that i mention in my question above..

    – user9538602
    Jul 13 at 10:08

















1















Right now we are working on updating magento to latest version of magento 2.3.2 right now we are runing 2.2.7.



I following the guide for 2.3 branch found at https://devdocs.magento.com/guides/v2.3/cloud/project/project-upgrade.html



I have taken following steps :



Step1: Update ece-tools version



On local workstation, perform an update using Composer




composer update magento/ece-tools




Add, commit, and push code changes.




git add -A && git commit -m “Update magento/ece-tools” && git push origin




Step2: Back up the database



Create a local backup of the remote database.




magento-cloud db:dump




when i run this command in my terminal i get ‘magento-cloud’ is not recognized as an internal or external command, operable program or batch file.



Back up code and media.




php bin/magento setup:backup –code [–media]




To back up Staging or Production environment database before deploying




php vendor/bin/ece-tools db-dump




Step3: Complete the upgrade



I have PHP 7.1.30 version



Before completing the upgrade, update the autoload property I follow all the steps giving in
https://devdocs.magento.com/guides/v2.3/comp-mgr/cli/cli-upgrade.html#update-autoload



set the upgrade version using




composer require magento/product-community-edition 2.3.2 –no-update




Then Update the project




composer update




After composer update i get some error



Your requirements could not be resolved to an installable set of packages.



Problem 1



- magento/magento-cloud-metapackage 2.2.7 requires magento/product-enterprise-edition 2.2.7 -> satisfiable by magento/product-enterprise-edition[2.2.7] but these conflict with your requirements or minimum-stability.

- magento/magento-cloud-metapackage 2.2.7 requires magento/product-enterprise-edition 2.2.7 -> satisfiable by magento/product-enterprise-edition[2.2.7] but these conflict with your requirements or minimum-stability.

- Installation request for magento/magento-cloud-metapackage >=2.2.7 <2.2.8 -> satisfiable by magento/magento-cloud-metapackage[2.2.7].


Can you please guide me how can i solve this issue..



Thanks in advance.



My composer.json is




"name": "magento/project-enterprise-edition",
"description": "eCommerce Platform for Growth (Enterprise Edition)",
"type": "project",
"version": "2.3.2",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"repositories":
"repo":
"type": "composer",
"url": "https://repo.magento.com"
,
"amasty":
"type": "composer",
"url": "https://composer.amasty.com/enterprise/"

,
"require":
"magento/magento-cloud-metapackage": ">=2.2.7 <2.2.8",
"gene/bluefoot": "^1.0",
"amasty/promo": "^2.2",
"sashas/bug-from-email": "^2.0",
"amasty/shopby": "^2.11",
"amasty/label": "^1.10",
"connectpos/rest-api": "^1.1",
"magento/product-community-edition": "2.3.2",
"magento/product-enterprise-edition": "2.3.2"
,
"config":
"use-include-path": true
,
"autoload":
"psr-4":
"Magento\Framework\": "lib/internal/Magento/Framework/",
"Magento\Setup\": "setup/src/Magento/Setup/",
"Magento\": "app/code/Magento/",
"Zend\Mvc\Controller\": "setup/src/Zend/Mvc/Controller/"
,
"psr-0":
"": [
"app/code/",
"generated/code/"
]
,
"files": [
"app/etc/NonComposerComponentRegistration.php"
],
"exclude-from-classmap": [
"**/dev/**",
"**/update/**",
"**/Test/**"
]
,
"autoload-dev":
"psr-4":
"Magento\Sniffs\": "dev/tests/static/framework/Magento/Sniffs/",
"Magento\Tools\": "dev/tools/Magento/Tools/",
"Magento\Tools\Sanity\": "dev/build/publication/sanity/Magento/Tools/Sanity/",
"Magento\TestFramework\Inspection\": "dev/tests/static/framework/Magento/TestFramework/Inspection/",
"Magento\TestFramework\Utility\": "dev/tests/static/framework/Magento/TestFramework/Utility/"

,
"minimum-stability": "alpha",
"prefer-stable": true,
"extra":
"magento-force": true,
"magento-deploystrategy": "copy"
,
"require-dev":
"allure-framework/allure-phpunit": "~1.2.0",
"friendsofphp/php-cs-fixer": "~2.13.0",
"lusitanian/oauth": "~0.8.10",
"magento/magento-coding-standard": "~1.0.0",
"magento/magento2-functional-testing-framework": "~2.3.14",
"pdepend/pdepend": "2.5.2",
"phpunit/phpunit": "~6.5.0",
"sebastian/phpcpd": "~3.0.0",
"squizlabs/php_codesniffer": "3.3.1"










share|improve this question
























  • What if you run composer require magento/product-enterprise-edition, it looks like you missing this package. And check do you have access for this user to magento-cloud

    – BartZalas
    Jul 13 at 8:21












  • Thanks @BartZalas I run "composer require magento/product-enterprise-edition" then i get some new errors in my terminal like Problem 1 - The requested package magento/product-community-edition (locked at 2.2.7, required as 2.3.2) is satisfiable by magento/product-community-edition[2.2.7] but these conflict with your requirements or minimum-stability. Problem 2 - magento/magento-cloud-metapackage 2.2.7 requires magento/product-enterprise-edition 2.2.7 -> satisfiable by magento/product-enterprise-edition[2.2.7] but these conflict with your requirements or minimum-stability.

    – user9538602
    Jul 13 at 9:25












  • other errors is Problem 2 - magento/magento-cloud-metapackage 2.2.7 requires magento/product-enterprise-edition 2.2.7 -> satisfiable by magento/product-enterprise-edition[2.2.7] but these conflict with your requirements or minimum-stability. - Installation request for magento/magento-cloud-metapackage >=2.2.7 <2.2.8 -> satisfiable by magento/magento-cloud-metapackage[2.2.7]. Installation failed, reverting ./composer.json to its original content.

    – user9538602
    Jul 13 at 9:32












  • With that please read composer docs first. You can remove package and install needed version. or remove composer.lock and run composer install. magento.stackexchange.com/questions/247536/…

    – BartZalas
    Jul 13 at 9:55











  • Thank you @BartZalas i remove composer.lock from root directory and run composer install then i face same error that i mention in my question above..

    – user9538602
    Jul 13 at 10:08













1












1








1


0






Right now we are working on updating magento to latest version of magento 2.3.2 right now we are runing 2.2.7.



I following the guide for 2.3 branch found at https://devdocs.magento.com/guides/v2.3/cloud/project/project-upgrade.html



I have taken following steps :



Step1: Update ece-tools version



On local workstation, perform an update using Composer




composer update magento/ece-tools




Add, commit, and push code changes.




git add -A && git commit -m “Update magento/ece-tools” && git push origin




Step2: Back up the database



Create a local backup of the remote database.




magento-cloud db:dump




when i run this command in my terminal i get ‘magento-cloud’ is not recognized as an internal or external command, operable program or batch file.



Back up code and media.




php bin/magento setup:backup –code [–media]




To back up Staging or Production environment database before deploying




php vendor/bin/ece-tools db-dump




Step3: Complete the upgrade



I have PHP 7.1.30 version



Before completing the upgrade, update the autoload property I follow all the steps giving in
https://devdocs.magento.com/guides/v2.3/comp-mgr/cli/cli-upgrade.html#update-autoload



set the upgrade version using




composer require magento/product-community-edition 2.3.2 –no-update




Then Update the project




composer update




After composer update i get some error



Your requirements could not be resolved to an installable set of packages.



Problem 1



- magento/magento-cloud-metapackage 2.2.7 requires magento/product-enterprise-edition 2.2.7 -> satisfiable by magento/product-enterprise-edition[2.2.7] but these conflict with your requirements or minimum-stability.

- magento/magento-cloud-metapackage 2.2.7 requires magento/product-enterprise-edition 2.2.7 -> satisfiable by magento/product-enterprise-edition[2.2.7] but these conflict with your requirements or minimum-stability.

- Installation request for magento/magento-cloud-metapackage >=2.2.7 <2.2.8 -> satisfiable by magento/magento-cloud-metapackage[2.2.7].


Can you please guide me how can i solve this issue..



Thanks in advance.



My composer.json is




"name": "magento/project-enterprise-edition",
"description": "eCommerce Platform for Growth (Enterprise Edition)",
"type": "project",
"version": "2.3.2",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"repositories":
"repo":
"type": "composer",
"url": "https://repo.magento.com"
,
"amasty":
"type": "composer",
"url": "https://composer.amasty.com/enterprise/"

,
"require":
"magento/magento-cloud-metapackage": ">=2.2.7 <2.2.8",
"gene/bluefoot": "^1.0",
"amasty/promo": "^2.2",
"sashas/bug-from-email": "^2.0",
"amasty/shopby": "^2.11",
"amasty/label": "^1.10",
"connectpos/rest-api": "^1.1",
"magento/product-community-edition": "2.3.2",
"magento/product-enterprise-edition": "2.3.2"
,
"config":
"use-include-path": true
,
"autoload":
"psr-4":
"Magento\Framework\": "lib/internal/Magento/Framework/",
"Magento\Setup\": "setup/src/Magento/Setup/",
"Magento\": "app/code/Magento/",
"Zend\Mvc\Controller\": "setup/src/Zend/Mvc/Controller/"
,
"psr-0":
"": [
"app/code/",
"generated/code/"
]
,
"files": [
"app/etc/NonComposerComponentRegistration.php"
],
"exclude-from-classmap": [
"**/dev/**",
"**/update/**",
"**/Test/**"
]
,
"autoload-dev":
"psr-4":
"Magento\Sniffs\": "dev/tests/static/framework/Magento/Sniffs/",
"Magento\Tools\": "dev/tools/Magento/Tools/",
"Magento\Tools\Sanity\": "dev/build/publication/sanity/Magento/Tools/Sanity/",
"Magento\TestFramework\Inspection\": "dev/tests/static/framework/Magento/TestFramework/Inspection/",
"Magento\TestFramework\Utility\": "dev/tests/static/framework/Magento/TestFramework/Utility/"

,
"minimum-stability": "alpha",
"prefer-stable": true,
"extra":
"magento-force": true,
"magento-deploystrategy": "copy"
,
"require-dev":
"allure-framework/allure-phpunit": "~1.2.0",
"friendsofphp/php-cs-fixer": "~2.13.0",
"lusitanian/oauth": "~0.8.10",
"magento/magento-coding-standard": "~1.0.0",
"magento/magento2-functional-testing-framework": "~2.3.14",
"pdepend/pdepend": "2.5.2",
"phpunit/phpunit": "~6.5.0",
"sebastian/phpcpd": "~3.0.0",
"squizlabs/php_codesniffer": "3.3.1"










share|improve this question
















Right now we are working on updating magento to latest version of magento 2.3.2 right now we are runing 2.2.7.



I following the guide for 2.3 branch found at https://devdocs.magento.com/guides/v2.3/cloud/project/project-upgrade.html



I have taken following steps :



Step1: Update ece-tools version



On local workstation, perform an update using Composer




composer update magento/ece-tools




Add, commit, and push code changes.




git add -A && git commit -m “Update magento/ece-tools” && git push origin




Step2: Back up the database



Create a local backup of the remote database.




magento-cloud db:dump




when i run this command in my terminal i get ‘magento-cloud’ is not recognized as an internal or external command, operable program or batch file.



Back up code and media.




php bin/magento setup:backup –code [–media]




To back up Staging or Production environment database before deploying




php vendor/bin/ece-tools db-dump




Step3: Complete the upgrade



I have PHP 7.1.30 version



Before completing the upgrade, update the autoload property I follow all the steps giving in
https://devdocs.magento.com/guides/v2.3/comp-mgr/cli/cli-upgrade.html#update-autoload



set the upgrade version using




composer require magento/product-community-edition 2.3.2 –no-update




Then Update the project




composer update




After composer update i get some error



Your requirements could not be resolved to an installable set of packages.



Problem 1



- magento/magento-cloud-metapackage 2.2.7 requires magento/product-enterprise-edition 2.2.7 -> satisfiable by magento/product-enterprise-edition[2.2.7] but these conflict with your requirements or minimum-stability.

- magento/magento-cloud-metapackage 2.2.7 requires magento/product-enterprise-edition 2.2.7 -> satisfiable by magento/product-enterprise-edition[2.2.7] but these conflict with your requirements or minimum-stability.

- Installation request for magento/magento-cloud-metapackage >=2.2.7 <2.2.8 -> satisfiable by magento/magento-cloud-metapackage[2.2.7].


Can you please guide me how can i solve this issue..



Thanks in advance.



My composer.json is




"name": "magento/project-enterprise-edition",
"description": "eCommerce Platform for Growth (Enterprise Edition)",
"type": "project",
"version": "2.3.2",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"repositories":
"repo":
"type": "composer",
"url": "https://repo.magento.com"
,
"amasty":
"type": "composer",
"url": "https://composer.amasty.com/enterprise/"

,
"require":
"magento/magento-cloud-metapackage": ">=2.2.7 <2.2.8",
"gene/bluefoot": "^1.0",
"amasty/promo": "^2.2",
"sashas/bug-from-email": "^2.0",
"amasty/shopby": "^2.11",
"amasty/label": "^1.10",
"connectpos/rest-api": "^1.1",
"magento/product-community-edition": "2.3.2",
"magento/product-enterprise-edition": "2.3.2"
,
"config":
"use-include-path": true
,
"autoload":
"psr-4":
"Magento\Framework\": "lib/internal/Magento/Framework/",
"Magento\Setup\": "setup/src/Magento/Setup/",
"Magento\": "app/code/Magento/",
"Zend\Mvc\Controller\": "setup/src/Zend/Mvc/Controller/"
,
"psr-0":
"": [
"app/code/",
"generated/code/"
]
,
"files": [
"app/etc/NonComposerComponentRegistration.php"
],
"exclude-from-classmap": [
"**/dev/**",
"**/update/**",
"**/Test/**"
]
,
"autoload-dev":
"psr-4":
"Magento\Sniffs\": "dev/tests/static/framework/Magento/Sniffs/",
"Magento\Tools\": "dev/tools/Magento/Tools/",
"Magento\Tools\Sanity\": "dev/build/publication/sanity/Magento/Tools/Sanity/",
"Magento\TestFramework\Inspection\": "dev/tests/static/framework/Magento/TestFramework/Inspection/",
"Magento\TestFramework\Utility\": "dev/tests/static/framework/Magento/TestFramework/Utility/"

,
"minimum-stability": "alpha",
"prefer-stable": true,
"extra":
"magento-force": true,
"magento-deploystrategy": "copy"
,
"require-dev":
"allure-framework/allure-phpunit": "~1.2.0",
"friendsofphp/php-cs-fixer": "~2.13.0",
"lusitanian/oauth": "~0.8.10",
"magento/magento-coding-standard": "~1.0.0",
"magento/magento2-functional-testing-framework": "~2.3.14",
"pdepend/pdepend": "2.5.2",
"phpunit/phpunit": "~6.5.0",
"sebastian/phpcpd": "~3.0.0",
"squizlabs/php_codesniffer": "3.3.1"







magento2 magento-upgrade magento2.3.2






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jul 13 at 10:52









Savan Patel

8854 silver badges21 bronze badges




8854 silver badges21 bronze badges










asked Jul 13 at 7:54









user9538602user9538602

62 bronze badges




62 bronze badges












  • What if you run composer require magento/product-enterprise-edition, it looks like you missing this package. And check do you have access for this user to magento-cloud

    – BartZalas
    Jul 13 at 8:21












  • Thanks @BartZalas I run "composer require magento/product-enterprise-edition" then i get some new errors in my terminal like Problem 1 - The requested package magento/product-community-edition (locked at 2.2.7, required as 2.3.2) is satisfiable by magento/product-community-edition[2.2.7] but these conflict with your requirements or minimum-stability. Problem 2 - magento/magento-cloud-metapackage 2.2.7 requires magento/product-enterprise-edition 2.2.7 -> satisfiable by magento/product-enterprise-edition[2.2.7] but these conflict with your requirements or minimum-stability.

    – user9538602
    Jul 13 at 9:25












  • other errors is Problem 2 - magento/magento-cloud-metapackage 2.2.7 requires magento/product-enterprise-edition 2.2.7 -> satisfiable by magento/product-enterprise-edition[2.2.7] but these conflict with your requirements or minimum-stability. - Installation request for magento/magento-cloud-metapackage >=2.2.7 <2.2.8 -> satisfiable by magento/magento-cloud-metapackage[2.2.7]. Installation failed, reverting ./composer.json to its original content.

    – user9538602
    Jul 13 at 9:32












  • With that please read composer docs first. You can remove package and install needed version. or remove composer.lock and run composer install. magento.stackexchange.com/questions/247536/…

    – BartZalas
    Jul 13 at 9:55











  • Thank you @BartZalas i remove composer.lock from root directory and run composer install then i face same error that i mention in my question above..

    – user9538602
    Jul 13 at 10:08

















  • What if you run composer require magento/product-enterprise-edition, it looks like you missing this package. And check do you have access for this user to magento-cloud

    – BartZalas
    Jul 13 at 8:21












  • Thanks @BartZalas I run "composer require magento/product-enterprise-edition" then i get some new errors in my terminal like Problem 1 - The requested package magento/product-community-edition (locked at 2.2.7, required as 2.3.2) is satisfiable by magento/product-community-edition[2.2.7] but these conflict with your requirements or minimum-stability. Problem 2 - magento/magento-cloud-metapackage 2.2.7 requires magento/product-enterprise-edition 2.2.7 -> satisfiable by magento/product-enterprise-edition[2.2.7] but these conflict with your requirements or minimum-stability.

    – user9538602
    Jul 13 at 9:25












  • other errors is Problem 2 - magento/magento-cloud-metapackage 2.2.7 requires magento/product-enterprise-edition 2.2.7 -> satisfiable by magento/product-enterprise-edition[2.2.7] but these conflict with your requirements or minimum-stability. - Installation request for magento/magento-cloud-metapackage >=2.2.7 <2.2.8 -> satisfiable by magento/magento-cloud-metapackage[2.2.7]. Installation failed, reverting ./composer.json to its original content.

    – user9538602
    Jul 13 at 9:32












  • With that please read composer docs first. You can remove package and install needed version. or remove composer.lock and run composer install. magento.stackexchange.com/questions/247536/…

    – BartZalas
    Jul 13 at 9:55











  • Thank you @BartZalas i remove composer.lock from root directory and run composer install then i face same error that i mention in my question above..

    – user9538602
    Jul 13 at 10:08
















What if you run composer require magento/product-enterprise-edition, it looks like you missing this package. And check do you have access for this user to magento-cloud

– BartZalas
Jul 13 at 8:21






What if you run composer require magento/product-enterprise-edition, it looks like you missing this package. And check do you have access for this user to magento-cloud

– BartZalas
Jul 13 at 8:21














Thanks @BartZalas I run "composer require magento/product-enterprise-edition" then i get some new errors in my terminal like Problem 1 - The requested package magento/product-community-edition (locked at 2.2.7, required as 2.3.2) is satisfiable by magento/product-community-edition[2.2.7] but these conflict with your requirements or minimum-stability. Problem 2 - magento/magento-cloud-metapackage 2.2.7 requires magento/product-enterprise-edition 2.2.7 -> satisfiable by magento/product-enterprise-edition[2.2.7] but these conflict with your requirements or minimum-stability.

– user9538602
Jul 13 at 9:25






Thanks @BartZalas I run "composer require magento/product-enterprise-edition" then i get some new errors in my terminal like Problem 1 - The requested package magento/product-community-edition (locked at 2.2.7, required as 2.3.2) is satisfiable by magento/product-community-edition[2.2.7] but these conflict with your requirements or minimum-stability. Problem 2 - magento/magento-cloud-metapackage 2.2.7 requires magento/product-enterprise-edition 2.2.7 -> satisfiable by magento/product-enterprise-edition[2.2.7] but these conflict with your requirements or minimum-stability.

– user9538602
Jul 13 at 9:25














other errors is Problem 2 - magento/magento-cloud-metapackage 2.2.7 requires magento/product-enterprise-edition 2.2.7 -> satisfiable by magento/product-enterprise-edition[2.2.7] but these conflict with your requirements or minimum-stability. - Installation request for magento/magento-cloud-metapackage >=2.2.7 <2.2.8 -> satisfiable by magento/magento-cloud-metapackage[2.2.7]. Installation failed, reverting ./composer.json to its original content.

– user9538602
Jul 13 at 9:32






other errors is Problem 2 - magento/magento-cloud-metapackage 2.2.7 requires magento/product-enterprise-edition 2.2.7 -> satisfiable by magento/product-enterprise-edition[2.2.7] but these conflict with your requirements or minimum-stability. - Installation request for magento/magento-cloud-metapackage >=2.2.7 <2.2.8 -> satisfiable by magento/magento-cloud-metapackage[2.2.7]. Installation failed, reverting ./composer.json to its original content.

– user9538602
Jul 13 at 9:32














With that please read composer docs first. You can remove package and install needed version. or remove composer.lock and run composer install. magento.stackexchange.com/questions/247536/…

– BartZalas
Jul 13 at 9:55





With that please read composer docs first. You can remove package and install needed version. or remove composer.lock and run composer install. magento.stackexchange.com/questions/247536/…

– BartZalas
Jul 13 at 9:55













Thank you @BartZalas i remove composer.lock from root directory and run composer install then i face same error that i mention in my question above..

– user9538602
Jul 13 at 10:08





Thank you @BartZalas i remove composer.lock from root directory and run composer install then i face same error that i mention in my question above..

– user9538602
Jul 13 at 10:08










0






active

oldest

votes














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
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f281967%2ffacing-issues-on-upgrade-magento-in-magento-cloud-upgrade-magento-to-latest-ver%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f281967%2ffacing-issues-on-upgrade-magento-in-magento-cloud-upgrade-magento-to-latest-ver%23new-answer', 'question_page');

);

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







Popular posts from this blog

Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form