krembo99
krembo99

Reputation: 1479

xampp error reporting

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

Answers (2)

Your Common Sense
Your Common Sense

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

ajreal
ajreal

Reputation: 47331

do a grep on ob_start(), this is the one usually buffering your output

Upvotes: 0

Related Questions