We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
After the patch https://bugs.php.net/bug.php?id=79699 certain session names are buggy and won't work anymore.
The generated cookie name doesn't necessarily match the internal session name which is a problem after the php patch.
'session_config' => [ 'name' => 'my:session', ],
my%3Asession
my:session
Special characters like : should also be escaped during initalisation, so the cookie name and session name match.
: