安装过程中的Symfony 4和Sonata News Bundle错误

时间:2019-07-02 11:25:41

标签: php sonata-admin sonata symfony-4.3

在安装SonataNewsBundle时出现以下错误。

Unable to register extension "Sonata\FormatterBundle\Extension\ControlFlowExtension" as it is already registered in . (which is being imported from "/home/yoesoff/Documents/projects/oblog/config/routes/sonata_admin.yaml"). Make sure there is a loader supporting the "sonata_admin" type.

Error

并出现错误

The target-entity App\Entity\SonataMediaMedia cannot be found in 'App\Entity\SonataClassificationCollection#media'.

enter image description here

我只是遵循here中的官方文档。

有人可以提供帮助吗?

1 个答案:

答案 0 :(得分:0)

文档中缺少一个步骤-看起来我们手动需要添加一个额外的包来创建缺少的类:

composer require sonata-project/media-orm-pack

请注意,如果您使用的是sonata-project/classification-bundle,则需要像这样修复App\Entity\SonataMediaMedia::$category的注释:

/**
 * ORM\ManyToOne(
 *     targetEntity="App\Entity\SonataClassificationCategory",
 *     cascade={"persist"}
 * )
 * ORM\JoinColumn(name="category_id", referencedColumnName="id", onDelete="SET NULL")
 *
 * @var SonataClassificationCategory
 */
protected $category;

如果有帮助,据我了解,使用Symfony 4 / Flex时,我们应该跳过sonata:easy-extends:generate步骤。

Flex配方应该在我们的App\Entity命名空间中创建类。

如果不这样做,将是上述内容中需要手动添加的内容。