php crashes on debug_backtrace

I am in the process of moving my Drupal to a new host. On the new host I am getting the error message:

EACCELERATOR: PHP crashed on opline 32 of debug_backtrace() at /homepath/includes/database.mysql.inc:105

This is the offending code:
if (variable_get('dev_query', 0)) {
$bt = debug_backtrace(); //this is line 105 that crashes php
$query = $bt[2]['function'] . "\n" . $query;
list($usec, $sec) = explode(' ', microtime());
$stop = (float)$usec + (float)$sec;
$diff = $stop - $timer;
$queries[] = array($query, $diff);
}


I turned off eaccelerator (disabled in php.ini and restarted Apache) but I still can't display anything (I only get white pages), so I think it may not be related to eaccelerator.

I was wondering what I can do about this error. Should I downgrade to php4 ?I guess I need to install the latest Zend Engine:
<!-- m --><a class="postlink" href="http://www.zend.com/forums/index.php?t=msg&goto=6738&S=2f0f8261b95bf749d0cdd0ac9e96446a">http://www.zend.com/forums/index.php?t= ... ac9e96446a</a><!-- m -->
 
Back
Top