I'm just upgrading into phoenix and I find a problem that I can't find the solution, ceid session don't disappear from url, I use my old configuration but something I'm making wrong.
Phoenix v1.1.0.5
php8.5
Code: Select all
Force Cookie Use False
Check SSL Session ID False
Check User Agent False
Check IP Address False
Prevent Spider Sessions True
Recreate Session TrueCode: Select all
<?php
error_reporting(E_ALL);
const HTTP_SERVER = 'https://www.miweb.com';
const COOKIE_OPTIONS = [
'lifetime' => 0,
'domain' => 'www.miweb.com',
'path' => '/',
'samesite' => 'Lax',
'secure' => true,
];
const DIR_WS_CATALOG = '/';
date_default_timezone_set('Europe/Madrid');
// If you are asked to provide configure.php details,
// please remove the data below before sharing.
const DIR_FS_CATALOG = '/home/public_html/miweb.com/';Any help will be appreciated