3

即使我从所有 config*.yml 文件中删除web_profiler......我得到

RuntimeException: You need to enable either the SQLite3 or PDO_SQLite extension for the profiler to run properly.

我只是不想在我的系统上安装 sqlite,我找不到如何完全关闭分析器......

有小费吗?

UPD:在 FrameworkExtension.php 中评论

if (isset($config['profiler'])) {
    $this->registerProfilerConfiguration($config['profiler'], $container, $loader);
}

但这不是好的解决方案

4

2 回答 2

7

或者你可以在你的 config_dev.yml 中改变:

web_profiler:
    toolbar: false
于 2013-02-02T14:16:14.840 回答
4

看看你的 app/AppKernel.php。

删除线

$bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();

应该做的伎俩!现在捆绑包永远不会被加载,因此现在需要 SQLite2 数据库。

于 2012-06-01T15:05:39.373 回答