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 インストール エラーを回避するにはどうすればよいですか?