我使用以下命令下载了DebugKit
插件:
php composer.phar require --dev cakephp/debug_kit "~3.0"
但是它仍然在
error.log
中显示警告,并且DebugKit
不起作用:警告:DebugKit未启用。您需要安装
pdo_sqlite,或定义“ debug_kit”连接名称
那么,如何在
debug_kit
中定义app.php
连接名以及如何启用debugkit? 最佳答案
从pdo_sqlite
安装并启用Terminal
对于PHP5.6
sudo apt-get install php5.6-sqlite3
对于
PHP7.0
sudo apt-get install php7.0-sqlite3
安装后,重新启动Apache Server
sudo service apache2 restart
注意:
php5.6-sqlite3
= {YourPhpVersion}-{SqliteVersion}