2016-07-20 1 views
0

Web設定インターフェースでmagento2.0.7をインストールしました。今私はこれを作曲家を使ってMagento 2.1.0にアップグレードしようとしています。しかし、問題は、コンポーザーが間違ったPHPバージョンを特定し、アップグレードが中断されていることです。 私は最終的に私は、これは私のcomposer.jsonを更新することで解決してしまった..... 532Magento2.0.7からMagento2.0.0にアップデートできません

エラーが

Problem 1 
    - The requested package magento/product-community-edition (locked at 2.0.7, required as 2.1.0) is satisfiable by magento/product-community-edition[2.0.7] but these conflict with your requirements or minimum-stability. 
    Problem 2 
    - The requested package magento/module-bundle-sample-data (locked at 100.0.5, required as 100.1.0) is satisfiable by magento/module-bundle-sample-data[100.0.5] but these conflict with your requirements or minimum-stability. 
    Problem 3 
    - The requested package magento/module-theme-sample-data (locked at 100.0.5, required as 100.1.0) is satisfiable by magento/module-theme-sample-data[100.0.5] but these conflict with your requirements or minimum-stability. 
    Problem 4 
    - The requested package magento/module-widget-sample-data (locked at 100.0.5, required as 100.1.0) is satisfiable by magento/module-widget-sample-data[100.0.5] but these conflict with your requirements or minimum-stability. 
    Problem 5 
    - The requested package magento/module-catalog-sample-data (locked at 100.0.5, required as 100.1.0) is satisfiable by magento/module-catalog-sample-data[100.0.5] but these conflict with your requirements or minimum-stability. 
    Problem 6 
    - The requested package magento/module-customer-sample-data (locked at 100.0.5, required as 100.1.0) is satisfiable by magento/module-customer-sample-data[100.0.5] but these conflict with your requirements or minimum-stability. 
    Problem 7 
    - The requested package magento/module-cms-sample-data (locked at 100.0.5, required as 100.1.0) is satisfiable by magento/module-cms-sample-data[100.0.5] but these conflict with your requirements or minimum-stability. 
    Problem 8 
    - The requested package magento/module-tax-sample-data (locked at 100.0.5, required as 100.1.0) is satisfiable by magento/module-tax-sample-data[100.0.5] but these conflict with your requirements or minimum-stability. 

ある

答えて

0

をパッチMVDを適用しています。 2.0.xから2.1.xのにアップグレードするには、

  1. 編集composer.json、特にこれら

"require": { "magento/product-community-edition": "2.1.x", }

"magento/module-bundle-sample-data": "100.1.*", 
    "magento/module-theme-sample-data": "100.1.*", 
    "magento/module-widget-sample-data": "100.1.*", 
    "magento/module-catalog-sample-data": "100.1.*", 
    "magento/module-customer-sample-data": "100.1.*", 
    "magento/module-cms-sample-data": "100.1.*", 
    "magento/module-tax-sample-data": "100.1.*", 
    "magento/module-review-sample-data": "100.1.*", 
    "magento/module-catalog-rule-sample-data": "100.1.*", 
    "magento/module-sales-rule-sample-data": "100.1.*", 
    "magento/module-sales-sample-data": "100.1.*", 
    "magento/module-grouped-product-sample-data": "100.1.*", 
    "magento/module-downloadable-sample-data": "100.1.*", 
    "magento/module-msrp-sample-data": "100.1.*", 
    "magento/module-configurable-sample-data": "100.1.*", 
    "magento/module-product-links-sample-data": "100.1.*", 
    "magento/module-wishlist-sample-data": "100.1.*", 
    "magento/module-swatches-sample-data": "100.1.*", 
    "magento/sample-data-media": "100.1.*", 
    "magento/module-offline-shipping-sample-data": "100.1.*", 

M2.1.xコンポーネントを必要とします100.0の代わりに100.1

ここでは前と同じ休止部分

composer update 
php bin/magento setup:upgrade 

これは効率的に機能します。アップグレードをお楽しみください:)

関連する問題