Hello! I have an old site that works on sessions. session set is very simple:
...
$_SESSION['uid'] = $auth['uid'];
...
I want to gradually move it to phalcon. But I can not get a session from the old framework
var_dump($this->session->id);
Result NULL. Old framework generates a session file with the name: 'sess _ 00aeb1c8e630f2ff6890840b1f39ff63' Phalcon have generated other names: 'c6e1b5c3e5fe643981299cbd60aad5ed'
whether it is possible to get something from the old framework session?