I've had a SMTP process/function loaded in a global directory - has been working for years.. Today it suddenly stopped. I've been through my code & the smtp is being called by my subdomains. However Nothing is being recorded/logged. Im gtting no SMTP emails (passwords).
In my subdomain, i have a registered function.
register_shutdown_function('shutdown'); in this shutdown routine I call a backtrace.
ob_start();
var_dump(debug_backtrace());
$text.= ob_get_clean();
This is saved to a file on my server & logs correctly.
The problem is that the ONLY function the backtrace shows is my shutdown function.
Is there a way to trace / log the progress of ALL and any functions that the programme has used or is trying to use ?
Ps i have logs of my logging procedures & logs showing that i'm logging stuff... i have more logs logging things than actual programme - trying to debug things...