我正在使用CIBonfire创建我的第一个应用程序,我已准备好将其推向生产,但我不确定如何将模式从开发更改为生产,以便它不显示分析器页脚中的内容。
我无法在任何设置菜单或文档中找到它。任何帮助表示赞赏。
答案 0 :(得分:9)
在CI-Bonfire中的index.php
文件中。您可以在此处找到此位置,只需将define('ENVIRONMENT', 'development')
更改为define('ENVIRONMENT', 'production')
* You can load different configurations depending on your
* current environment. Setting the environment also influences
* things like logging and error reporting.
*
* This can be set to anything, but default usage is:
*
* development
* testing
* production
*
* NOTE: If you change these, also change the error_reporting() code below
*
*/
define('ENVIRONMENT', 'production');