在appkernel中找不到FOSUserBundle

mtd*_*mtd 5 symfony fosuserbundle

我在Windows上使用symfony,我尝试按照官方文档中的说明配置FOSUserBundle.

尝试更新架构时出现此错误:

Class 'FOS\UserBundle\FOSUserBundle' not found in app/AppKernel.php line 20;
Run Code Online (Sandbox Code Playgroud)

搜索问题并找到此解决方案:将其添加到autoload.php

$loader->registerNamespaces(array(
    //all the rest
    'FOS' => $vendor_dir . '/bundles',
));
Run Code Online (Sandbox Code Playgroud)

但它返回另一个错误

call to undefined method ...\ClassLoader::RegisterNamespace() in ...\autoload.php on line 13
Run Code Online (Sandbox Code Playgroud)

任何人都可以告诉我该怎么办?:|

这是我的appkernel.php文件:

<?php

use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\Config\Loader\LoaderInterface;

class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
            new Symfony\Bundle\SecurityBundle\SecurityBundle(),
            new Symfony\Bundle\TwigBundle\TwigBundle(),
            new Symfony\Bundle\MonologBundle\MonologBundle(),
            new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
            new Symfony\Bundle\AsseticBundle\AsseticBundle(),
            new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
            new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
            new Sad\Bundle\WarehouseBundle\SadWarehouseBundle(),
            new FOS\UserBundle\FOSUserBundle(),
        );

       if (in_array($this->getEnvironment(), array('dev', 'test'))) {
            $bundles[] = new Acme\DemoBundle\AcmeDemoBundle();
            $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
            $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
            $bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();
        }

        return $bundles;
    }

    public function registerContainerConfiguration(LoaderInterface $loader)
    {
        $loader->load(__DIR__.'/config/config_'.$this->getEnvironment().'.yml');
    }
}
Run Code Online (Sandbox Code Playgroud)

jav*_*zac 5

我有同样的问题.我发现FOSUserBundle没有正确安装.您应该删除/ vendor/friendsofsymfony /目录,然后使用以下命令更新包:

php composer.phar update friendsofsymfony/user-bundle
Run Code Online (Sandbox Code Playgroud)

它对我有用.我希望它可以帮助其他人遇到同样的问题.


Ped*_*iro 2

好吧,你的代码看起来没有什么问题。

在我们找到解决方法之前,让我们尝试通过以下步骤重新安装您的捆绑包:

  • 删除$loader->registerNamespaces(...)您添加到 autoloader.php 的内容。
  • 运行php composer.phar self-update以更新作曲家。
  • 从 AppKernel.php 中删除该行use FOS\UserBundle\FOSUserBundle(),
  • 运行php composer.phar update以更新所有包。
  • 清除缓存,运行php app/console cache:clear.
  • use FOS\UserBundle\FOSUserBundle(),再次将该行添加到 AppKernel.php。

那些应该做的。如果您仍然无法使用该捆绑包并且需要解决方法(我不建议这样做),那么可以这样做:

打开应用程序/autoload.php。就在之后$loader = require __DIR__ . '/../vendor/autoload.php。添加以下内容:

//Loads FOSUserBundle
$loader->add('FOS', __DIR__.'/../vendor/friendsofsymfony/user-bundle/FOS');
Run Code Online (Sandbox Code Playgroud)

同样,这应该可以解决问题,但并不是正确的做法。你的捆绑包应该可以工作。