Tagged Questions
0
votes
1answer
16 views
Best place to call xdebug helper functions?
Right now I place the following code wherever I expect something to go wrong.
/** xdebug helper */
error_reporting(E_ERROR);
ini_set("display_errors", 1);
ini_set("html_errors", 1);
...
0
votes
1answer
425 views
Getting a stack trace when an error occurs?
I was told to "get a stack trace" when an error occurs in my WordPress installation. How do I do this?
This is meant to be an easy place to refer others to. Please list plugins, configuration ...