【发布时间】:2020-07-05 00:22:57
【问题描述】:
我安装了 Codeigniter 4.0.2 并进行了以下更改:
1- CI_ENVIRONMENT = development 在 .env 文件中
2- SetEnv CI_ENVIRONMENT development in .htaccess in public 文件夹
3- 在公共文件夹的主 index.php 文件中添加了$useKint = true;
当我在 localhost 打开时,会呈现欢迎页面,但不会呈现调试工具栏。我错过了什么吗?
【问题讨论】:
-
是的,您可能错过了安装 Kint 及其朋友的步骤...您的安装可能没有供应商文件夹,因此您需要运行“composer install”。
标签: php debugging codeigniter-4 kint