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
How did pilots avoid thunderstorms and related weather before “reliable” airborne weather radar was introduced on airliners?
Impact of throwing away fruit waste on a peak > 3200 m above a glacier
What do Unicorns want?
Source for "everyone has a specific area of Torah that they're naturally drawn to"
"It is what it is"
Quickest way to move a line in a text file before another line in a text file?
How old is the Italian word "malandrino"?
Why was Quirrell said to be in the Black Forest if Voldemort was actually in Albania?
How can I disable a reserved profile?
Why are the phonemes of Tutankhamun's throne name transliterated out of order?
Stellen - Putting, or putting away?
Why is there an extra "t" in Lemmatization?
Count the identical pairs in two lists
Is it better to merge "often" or only after completion do a big merge of feature branches?
Why are Oscar, India, and X-Ray (O, I, and X) not used as taxiway identifiers?
Why Lie algebras if what we care about in physics are groups?
Does switching on an old games console without a cartridge damage it?
Killing a star safely
Which dice game has a board with 9x9 squares that has different colors on the diagonals and midway on some edges?
Adding gears to my grandson's 12" bike
Host telling me to cancel my booking in exchange for a discount?
What does the following chess proverb mean: "Chess is a sea where a gnat may drink from and an elephant may bathe in."
Is it better to have a 10 year gap or a bad reference?
Can I make Ubuntu 18.04 switch between multiple windows of the program by just clicking the icon?
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;
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
|
show 7 more comments
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
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 likeProblem 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 isProblem 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
|
show 7 more comments
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
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
magento2 magento-upgrade magento2.3.2
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 likeProblem 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 isProblem 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
|
show 7 more comments
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 likeProblem 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 isProblem 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
|
show 7 more comments
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
);
);
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%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
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%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
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
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