5

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

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

Class 'FOS\UserBundle\FOSUserBundle' not found in app/AppKernel.php line 20;

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

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

但它返回另一个错误,上面写着

call to undefined method ...\ClassLoader::RegisterNamespace() in ...\autoload.php on line 13

谁能告诉我我该怎么办?:|

这是我的 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');
    }
}
4

3 回答 3

5

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

php composer.phar update friendsofsymfony/user-bundle

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

于 2014-04-07T20:54:35.963 回答
2

好吧,您的代码似乎没有任何问题。

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

  • 删除$loader->registerNamespaces(...)你添加到 autoloader.php 的那个东西。
  • 运行php composer.phar self-update以更新作曲家。
  • use FOS\UserBundle\FOSUserBundle(),从 AppKernel.php 中删除该行。
  • 运行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');

同样,这应该可以解决问题,但不是正确的做事方式。您的捆绑包应该可以正常工作。

于 2013-07-30T13:13:19.947 回答
0

要在Symfony 3.x.

如果composer无法执行,只能通过 传输文件FTP,则需要更新文件:

vendor/composer

有可能

vendor/symfony(如果版本更新)

相同的解决方案适用于此错误

致命错误:找不到类“FOS \ JsRoutingBundle \ FOSJsRoutingBundle”

于 2018-08-02T23:12:59.280 回答