|
发表于 2011-12-13 16:04:43
|
显示全部楼层
你看看 index.php文件,里面的应该有配置
if (defined('ENVIRONMENT'))
{
switch (ENVIRONMENT)
{
case 'development':
error_reporting(E_ALL);
break;
case 'testing':
case 'production':
error_reporting(0);
break;
default:
exit('The application environment is not set correctly.');
}
} |
|