PHP not displaying any errors
- by chutsu
I've got ubuntu 10.04 installed, as well as:
lighttpd
mysql/php
Now my problem is that my php scripts can be executed and has access to MySQL database, however I'm having problems getting php to display all errors when running. The result of a failed php run is a blank page.
I tried setting the display errors on in php.ini in /etc/php5/cgi/php.ini
I've also tried adding these two lines in the source to force errors on, to no avail.
ini_set('display_errors', '1');
error_reporting(E_ALL);
What should I do?
Thanks