I've read it can be fixed by adding
Code: Select all
ini_set('session.cookie_samesite', 'None');
@ession_set_cookie_params(['samesite' => 'None', 'secure' => true]);I'm using CE Phoenix v1.0.8.5 if that's important
Code: Select all
ini_set('session.cookie_samesite', 'None');
@ession_set_cookie_params(['samesite' => 'None', 'secure' => true]);Code: Select all
define('COOKIE_OPTIONS', [
'lifetime' => 0,
'domain' => '',
'path' => '',
'samesite' => 'Lax',
]);Nope that didn't work. It may be the code in general though not your solution.ecartz wrote: ↑Thu Jan 06, 2022 2:33 pm Look in the catalog/includes/configure.php file for https://github.com/CE-PhoenixCart/Phoen ... p#L25..L30
You may have to add the secure line, but you can just edit the samesite.Code: Select all
define('COOKIE_OPTIONS', [ 'lifetime' => 0, 'domain' => '', 'path' => '', 'samesite' => 'Lax', ]);