我在 PROD env上加载了所有文件,从/var/cache
目录中删除了所有文件和子目录,并得到了空白屏幕。
添加
后ini_set("error_reporting", E_ALL);
ini_set("display_errors", "1");
到app.php
文件,我收到了这个错误:
致命错误:未捕获异常'Symfony \ Component \ DependencyInjection \ Exception \ InvalidArgumentException',并显示消息'没有扩展程序可以为“web_profiler”加载配置
有人能告诉我为什么Web探查器甚至在 PROD 环境中执行了吗?它应该只在 TEST 或 DEV 上使用,我想。由于此错误,我甚至无法清除本地主机服务器上的 PROD 缓存。
哦,在app.php
文件中我得到了$kernel = new AppKernel('prod', false);
,所以不应该使用网络分析器......
更新
AppKernel.php
<?php
use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\Config\Loader\LoaderInterface;
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = [
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 JavierEguiluz\Bundle\EasyAdminBundle\EasyAdminBundle(),
new Ivory\CKEditorBundle\IvoryCKEditorBundle(),
new Knp\Bundle\MenuBundle\KnpMenuBundle(),
new Vich\UploaderBundle\VichUploaderBundle(),
new A2lix\TranslationFormBundle\A2lixTranslationFormBundle(),
new Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle(),
new JMS\DiExtraBundle\JMSDiExtraBundle($this),
new JMS\AopBundle\JMSAopBundle(),
new JMS\TranslationBundle\JMSTranslationBundle(),
// my bundles here
];
if(in_array($this->getEnvironment(), ['dev', 'test'], true)) {
$bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
$bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle();
$bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
$bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();
}
return $bundles;
}
public function getRootDir()
{
return __DIR__;
}
public function getCacheDir()
{
return dirname(__DIR__).'/var/cache/'.$this->getEnvironment();
}
public function getLogDir()
{
return dirname(__DIR__).'/var/logs';
}
public function registerContainerConfiguration(LoaderInterface $loader)
{
$loader->load($this->getRootDir().'/config/config_'.$this->getEnvironment().'.yml');
}
}
答案 0 :(得分:4)
好的,我发现我确实在我的web_profiler
中使用了config_prod.yml
个关键字。这就是问题......我现在很生气:D。