Any update on this
Simple nodes and ajax etc run well but some complicated nodes where atkdummyattribute and image etc give following erros in atktools.inc
//Fatal error: Uncaught TypeError: Argument 1 passed to atkExceptionHandler() must be an instance of Exception, instance of Error given in D:\xampp\htdocs\VisualAid\atk\atktools.inc:142
the code at 142 is
Code:
function atkExceptionHandler(Exception $exception) // line 142
{
atkdebug($exception->getMessage(), DEBUG_ERROR);
atkdebug("Trace:<br/>".nl2br($exception->getTraceAsString()), DEBUG_ERROR);
atkhalt("Uncaught exception: " . $exception->getMessage(), 'critical');
}
//tried following but error persists
// function atkExceptionHandler(Throwable $exception)