2

ProductControllerからを上書きしたいEnrichBundle

すべてが開発モードで動作しますが、本番サーバーにインストールしようとするとphp app/console pim:install --env=prod --forceエラーが発生し、Akeneo が動作しません:

Load "Title Templates" from annotations and config files to db
[Symfony\Component\Config\Definition\Exception\InvalidConfigurationException]
Title for route "pim_enrich_attributegroup_index" could not be saved. Route not found.

oro:navigation:init
The command terminated with an error code: 1.

getParent()でメソッドのコメントを外すと、インストールは機能しますMyEnrichBundleが、ProductControllerもう機能しません。

class MyEnrichBundle extends Bundle
{

    public function getParent()
    {
        return 'PimEnrichBundle';
    }

}

これらの ORO インストール エラーを回避するにはどうすればよいですか?

4

1 に答える 1