从https://testsecureacceptance.cybersource.com/payment付款后,在CodeIgniter框架中使用安全接受结帐
Sometimes it returns to the right response
(Persists the Session and contains the PHPSSID in the set-cookie request headers)
But sometimes it Logs the user out (The PHPSSID is missing in the set-cookie request headers)如何解决此意外行为
CodeIgnitor版本3.1.11
发布于 2020-11-24 02:25:42
通过添加以下内容找到解决方案
$config['cookie_path'] = '/; SameSite=None';在config.php中
https://stackoverflow.com/questions/64942783
复制相似问题