You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After upgrading my project from PHP 7.2 to 7.4 all requests done in my application return this warning. The warning is triggered in the file PhpSessionPersistence.php, on the first line of the method startSession, when session_id($id) is called. I tried to upgrade the package to the version 1.9.0, but the error persists. There is a similar bug reported regarding the session_name function and apparently it was introduced in PHP 7.2, but I never had any issues before the upgrade to PHP 7.4. I've done a lot of research about this issue but I couldn't find a proper solution, that's why I decided to open this issue. I found very odd that no one else reported it, so I decided to give it a shot.
BC Break Report
Summary
After upgrading my project from PHP 7.2 to 7.4 all requests done in my application return this warning. The warning is triggered in the file
PhpSessionPersistence.php
, on the first line of the methodstartSession
, whensession_id($id)
is called. I tried to upgrade the package to the version 1.9.0, but the error persists. There is a similar bug reported regarding thesession_name
function and apparently it was introduced in PHP 7.2, but I never had any issues before the upgrade to PHP 7.4. I've done a lot of research about this issue but I couldn't find a proper solution, that's why I decided to open this issue. I found very odd that no one else reported it, so I decided to give it a shot.I found two ways to bypass this problem:
== OR ==
I ran the tests using the versions 1.7.4 and 1.9.0 with PHP 7.4 and they were successful.
The text was updated successfully, but these errors were encountered: