我在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');
}
}
答案 0 :(得分:5)
我遇到了同样的问题。我发现FOSUserBundle没有正确安装。您应该删除 / vendor / friendsofsymfony / 目录,然后使用以下命令更新捆绑包:
php composer.phar update friendsofsymfony/user-bundle
它对我有用。我希望它可以帮助其他人遇到同样的问题。
答案 1 :(得分:2)
好吧,您的代码似乎没有任何问题。
在我们开始解决之前,让我们尝试通过以下步骤重新安装您的软件包:
$loader->registerNamespaces(...)
内容。php composer.phar self-update
以更新作曲家。use FOS\UserBundle\FOSUserBundle(),
php composer.phar update
更新所有捆绑包。php app/console cache:clear
。use FOS\UserBundle\FOSUserBundle(),
添加到AppKernel.php。那些应该这样做。如果您仍然无法使用该捆绑包,并且您需要解决方法(我不建议),这是可行的方法:
打开app / autoload.php。在$loader = require __DIR__ . '/../vendor/autoload.php
之后。添加以下内容:
//Loads FOSUserBundle
$loader->add('FOS', __DIR__.'/../vendor/friendsofsymfony/user-bundle/FOS');
同样,这应该解决问题,但却不是正确的做事方式。你的捆绑包应该正常工作。
答案 2 :(得分:0)
要修复<h3><a href="index.html">Početna</a></h3>
中的此错误。
如果无法执行Symfony 3.x
,并且只能通过composer
传输文件,则必须更新文件:
FTP
也许
vendor/composer
(如果版本已更新)
相同的解决方案适用于此错误
致命错误:类别'FOS \ JsRoutingBundle \ FOSJsRoutingBundle'不是 找到