Stack trace after program crash
I have a PHP script that crashes silently, that means that my exception breakpoints are not triggered. I only get to see a message from Drupal that 'an HTTP error occurred'. Is there a way to see what were the last calls being done before the program crashed and shutdown? The debugger I use is 'xDebug'.
Please sign in to leave a comment.
It appears that you can enable error reporting in Drupal that would at least show you what it did last: https://drupal.stackexchange.com/a/235607
This looks like the fix for my problem. Thanks a lot!