Hi there,
I am trying to test a project and prepare for 4.0- change a lot of stuff for migration. But... cant figure out how to fix session. (my security tokens cant pass, so.. find that issue)
My code for now is (depending of unit tests):
$session = new \Phalcon\Session\Manager();
$session->setOptions([
'uniqueId' => 'test-id'
]);
$session->setHandler(new \Phalcon\Session\Adapter\Files());
$session->start();
return $session;
And still session is new every refresh - cant store nothing. Is any ideas?
PS: i am using latest 4.0.0 alpha 2 for Windows