I found a nasty bug in eAccelerator. Sometimes, out of a sudden PHP generates a fatal error stating it cannot find a class that really should be loaded (see attachment).
I could track this error down to the point where we try to instantiate the htmlMimeMail class (http://www.phpguru.org/static/mime.mail.html).
Line 61 in module/view/mail.php says:
$this->mail =& new htmlMimeMail5();
The weird thing is that all code works and runs just fine until out of a sudden PHP crashes, always at this point. To fix this, I just have to update "touch" the mail.php file and everything runs just fine again. It seems to me like some kind of caching problem.
My question is ofcourse: How to fix this?
Thanks and keep up the good work!
Wouter.