php - session lose on bank redirect phalconphp
one text
Solution:
after spending some time on other questions and testing a lots of possible solutions, I could manage to save the session on bank respond.
thanks to the comment from talal to redirecting me to where I should go .
for this specific environment ( Phalcon 3.4 , Php 7.2 ), the best way was :
1 - use the ini_set function to set session.cookie_path to / and add the samesite=none; secure to the end of it
2- the working example in phalcon bellow :
$di->setShared('session', function () use ($config) {
if (getenv("ENVIRONMENT") != "development") {
ini_set('session.cookie_path', "/; samesite=none; secure");
}
$session = new SessionAdapter();
$session->start();
return $session;
});
Source