-1

Magento のコード移行ツールキットを使用しています。

最初のステップを実行しているときphp bin/migrate.php migrateModuleStructure <src> <dst>、これは私の出力です:

[2016-06-17 03:44:55][INFO]: Starting module structure converter

←[0;33m[2016-06-17 03:44:55][WARNING]: 0 modules were converted←[0m

[2016-06-17 03:44:55][INFO]: Ending module structure converter

私はログをチェックしますmigration.log、これは出力です:

[2016-06-17 03:44:55][INFO]: Starting module structure converter

[2016-06-17 03:44:55][WARNING]: 0 modules were converted

[2016-06-17 03:44:55][INFO]: Ending module structure converter

参照: https://github.com/magento/code-migration

4

1 に答える 1

0

出力は、次の原因で発生する可能性があります。

  • ディレクトリ構造のタイプミス: php bin/migrate.php migrateModuleStructure magento1\sampleModule magento2\sampleModule

  • app\code\community\Vendor\Module\etc\config.xml module1 に存在する必要があります

  • ディレクトリのパーミッションは 777 に設定されていますか?

于 2016-06-29T23:40:11.510 に答える