Hi,
I upgrade my website from Phlacon 3 to Phalcon 4.
On my model, the program crash at the end of the method "initialize" Code :
public function initialize()
{
$this->setSource('nbConn');
if (!$this->getDI()->get('db')->tableExists('nbConn'))
{
$logger = $this->getDI()->get('logger');
$logger->error("La table nbConn n'éxiste pas");
throw new \Phalcon\Mvc\Dispatcher\Exception();
}
}// Here the error....
Error : free(): invalid pointer
Can someone help me ?