无法正确安装SonatablueprintBundle



我无法安装sonatablueprintbundle,我使用了:

$ git submodule add https://github.com/sonata-project/BluePrintBundle.git

(使用不同的文件目标:示例:src/Bundle/BluePrintBundle),但是当我尝试删除缓存(或做其他任何事情)时,我会得到此错误:

  PHP Fatal Error: src/Bundle/BluePrintBundle/SonataBluePrintBundle not found in Appkernel.php

,但这里已经添加了AppKernel文件:

public function registerBundles()
{
    $bundles = array(
//....
        new KnpBundleMenuBundleKnpMenuBundle(),
        new BundleBluePrintBundleSonataBluePrintBundle(),
    );
//...

我尝试了多个更改目录&/或appkernel中的路径,总是相同的错误。

我认为您的git URL不好,根据Sonatablueprint存储库,URL为https://github.com/sonata-project/sonatablueprintbundle.git.git

尝试:

git submodule add https://github.com/sonata-project/SonataBluePrintBundle.git

而不是

git submodule add https://github.com/sonata-project/BluePrintBundle.git

相关内容

  • 没有找到相关文章

最新更新