私の別の質問に関連する私の質問:
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;**
}