The administrator has installed Xdebug 2.1.1 in our shared PHP 5.3.0 server in order to use its debugger. Now, I can hardly read the stack traces of uncatched exceptions bec
Add following code in the initialization Script:
if (function_exists('xdebug_disable')) {
xdebug_disable();
}
You need to make sure you have html_errors=0
in PHP as well.
Also, orange isn't horrible ;-)
Check for xdebug_disable()Docs:
Disables stack traces
Disable showing stack traces on error conditions.
See as well xdebug.default_enableDocs.