没有PHP错误,代码点火器仍然显示空白页面



我正在使用Codeigniter。

我的项目与Codeigniter的开发环境配合得很好,但当我切换到生产时,它显示的是空白页。

现在我尝试打印所有的错误消息,但它确实显示了任何错误消息!甚至我也试着查看错误日志,但也没有显示任何错误或警告。

我尝试显示所有错误和警告,以便解决它们。

ini_set('display_errors', 1);

在我的开发环境中没有错误,甚至在我的linux apache控制台中也没有,但当我切换到生产环境时,它只显示了一个空白的白色页面!

如何调试?

我的代码:

define('ENVIRONMENT', isset($_SERVER['CI_ENV']) ? $_SERVER['CI_ENV'] : 'production');
/*
*---------------------------------------------------------------
* ERROR REPORTING
*---------------------------------------------------------------
*
* Different environments will require different levels of error reporting.
* By default development will show errors but testing and live will hide them.
*/
switch (ENVIRONMENT)
{
case 'development':
error_reporting(-1);
ini_set('display_errors', 1);
break;
case 'testing':
case 'production':
ini_set('display_errors', 0);
if (version_compare(PHP_VERSION, '5.3', '>='))
{
error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT & ~E_USER_NOTICE & ~E_USER_DEPRECATED);
}
else
{
error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT & ~E_USER_NOTICE);
}
break;
default:
header('HTTP/1.1 503 Service Unavailable.', TRUE, 503);
echo 'The application environment is not set correctly.';
exit(1); // EXIT_ERROR
}

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.');
}
}

您需要验证一些东西:

  • 服务器运行良好
  • 您所在的目录与服务器中映射的目录完全相同
  • 在codeigniter的root->index.php中键入I am here,看看它是否打印而不是空白页
  • 检查.htaccess

相关内容

  • 没有找到相关文章

最新更新