我的问题与我的另一个问题有关:
在 apache 日志中,我有这样的错误:
PHP 警告:SQLite3Stmt::execute():无法执行语句:数据库被锁定在 /home/marek/devel/sf2/cities/vendor/symfony/src/Symfony/Component/HttpKernel/Profiler/SqliteProfilerStorage.php
我正在使用 MySQL,为什么我收到关于 SQLite3 的错误?
有人可以帮助解决这个错误吗?
[编辑]
禁用分析器的唯一方法是:
public function __construct(ProfilerStorageInterface $storage, LoggerInterface $logger = null)
{
$this->storage = $storage;
$this->logger = $logger;
$this->collectors = array();
**$this->enabled = false;**
}