开发者

Handling white screen of death in PHP

After debugging a CodeIgniter application that were installed into a new development environment, I have started to freak out when seeing white screens with nothing more available. I have been able to solve each and every one of the errors that have caused this, but it has taken seriously way too long time.

PHP error_reporting(E_ALL) & display_errors", 1 is set as well. I even installed Xdebug in hope of getting more output, but no. My 开发者_运维技巧logging settings are also working, but nothing is written to the log.

Is there a way to get something informative printed out instead of a complete white screen? It would certainly shorten my time spent on solving the eventual errors that cause this.

Reference: Why does Code Igniter give me a white page?


If there's a fatal compilation error, then you may well get a blank page. Try doing a

php -l <filename.php>

against your script


Look near the top of /index.php for a call to error_reporting() - and make sure it's not changing your php.ini configuration to something else (besides E_ALL).

And since you didn't mention your php.ini configuration, check to ensure you have error_reporting = E_ALL there as well.


I've found out, since the time of my question, that nothing seems to ensure that errors are always outputted with PHP, which seems to throw white screens here and there. Regardless of PHP's ini-settings.

I've found out that the best workaround however is to use the following line to ensure that error logging is put into a file easily is accessed and monitored by the application:

ini_set('error_log', MYPATH .'logs/errorlog.log');

As far as I've tested it, when white screens appear - it also gets logged into this errorlog. It seems to be the easiest way to know what happens when things go wrong.


Grep the files for 'error_reporting', and 'display_errors'. The application might turn it off somewhere.

Also, to be able to see parse errors, you need to set error_reporting/display_errors in the php.ini file, or a .htaccess file. Setting it in the script files will not do and will lead to the white page you describe if there are parsing errors.


Aside from everything else posted, also make sure that something masked with the @ (error suppression operator) isn't throwing a fatal error.


The best thing is to have a checklist of the common problems that could cause this since CodeIgniter's default is already

error_reporting(E_ALL);
  1. Same name controllers and models
  2. using reserved words as methods

The list goes on...


Consider setting PHP's error_log configuration variable -- it can be helpful when you have code setting error_reporting() without your knowledge. Then you can check the error log and see what errors, if any, occurred.


I had this problem on my freshly installed server. Debian 7. I enabled logging, error reporting, disabled gzip and so on.

However, my PHP-installation did not have MySQL enabled. Enabling MySQL did the trick for me.


Make sure your logs and cache folder inside /system are chmod'ed to 777.


Ensure that there isn't any whitespace in your files output outside of the CodeIgniter buffer, especially if compression is turned on. You can test this by turning off compression in your CodeIgniter configuration file.

See step two at: http://codeigniter.com/user_guide/installation/upgrade_141.html (Note that while this is for the upgrade, it contains a snippet of the configuration file which explains the problem.)


If you by chance have happened to create a cached output for that particular method inside your controller, then it may create a cached version of the page and practically that page is not even running.

The cached error output page is showing up. Please check your cache folder inside the application. It should only contain the index.html file.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜