I have a PHP authentication system on my website using the $_SESSION variable.
A form submits a username and password to the file \"login.php\". It is handled like t
Faced the same problem but it was being caused by
session_regenerate_id(true);
So I just deleted it from my code.