用户
 找回密码
 入住 CI 中国社区
搜索
查看: 1822|回复: 3
收起左侧

[讨论/交流] codeigniter不报错

[复制链接]
发表于 2013-1-21 23:52:04 | 显示全部楼层 |阅读模式
环境确认过是development了,但是所有的错误都不报,直接500错{:soso_e105:}
发表于 2013-1-22 09:27:00 | 显示全部楼层
index.php 中设置下display_errrors试试
PHP复制代码
if (defined('ENVIRONMENT')){
        switch (ENVIRONMENT)
        {
                case 'development':
                        ini_set('display_errors', 'On');
                        error_reporting(E_ALL);
                break;
       
                case 'testing':
                case 'production':
                        ini_set('display_errors', 'Off');
                        error_reporting(0);
                break;
 
                default:
                        exit('The application environment is not set correctly.');
        }
}
复制代码
 楼主| 发表于 2013-1-22 13:19:50 | 显示全部楼层
qi_ruo 发表于 2013-1-22 09:27
index.php 中设置下display_errrors试试

解决,谢谢!
发表于 2013-1-22 13:44:56 | 显示全部楼层
php关了错误警告

本版积分规则