我想覆盖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 安装错误?