Codeigniter CIBonfire如何从开发到生产转变模式?

i7uaboj4  于 2023-01-28  发布在  其他
关注(0)|答案(1)|浏览(108)

我正在使用CIBonfire创建我的第一个应用程序,我已经准备好将它推向生产,但我不知道如何将模式从开发更改为生产,以便它不在页脚中显示分析器的内容。
我无法在任何设置菜单或文档中找到它。任何帮助都将不胜感激。

11dmarpk

11dmarpk1#

在您的CI-篝火中的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');

相关问题