Archive for June, 2010

Vtiger CRM backtracing code

To backtrace the particular part in the vtiger script.. add the following code.

$bt = debug_backtrace();
$ut = array();
foreach($bt as $t){
$ut[] = array('file'=>$t['file'],'line'=>$t['line'],'function'=>$t['function']);
}
var_export($ut);