Reputation: 1479
I am using xampp for years, and never had a problem...
Yesterday , while developing a Wordpress site, suddenly xampp stopped error reporting , and started to output empty pages whenever an error occurs. (sometimes, if the error is in an unknown function for example, it just output everything up to that point, and the rest is just blank. (where previously it used to have the error displayed).
Nobody touched php.ini, and display_errors = On
.
restarted multiple times. no go .
anyone knows what is the problem ? Any solution ?
Upvotes: 1
Views: 1556
Reputation: 157979
run phpinfo();
to see all error reporting relevant settings (every setting contains error
in it's name, error_reporting
, for example).
Find one which set wrong.
grep for it over the code (including .htaccess).
Upvotes: 1
Reputation: 47331
do a grep on ob_start()
, this is the one usually buffering your output
Upvotes: 0