We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We are not able to start a Session after setting a Session ID.
The Session does not start
$sessionId = $routeMatch->getParam('sessionId');
$sessionManager->setId($sessionId); $sessionManager->start();
The Session starts.
The Change in these lines may cause this.
The text was updated successfully, but these errors were encountered:
@mimmi20 Is an exception thrown?
Is the link correct?
Sorry, something went wrong.
Is an exception thrown?
No.
Yes.
We set a Session ID, but because of that the session will not be started.
This regression was introduced here:
https://github.com/laminas/laminas-session/pull/96/files#r1844718825
I shouldn't have let that go through because an 8.4 deprecation is no reason to break code running on 8.1+
If you have the time to send in a patch @mimmi20, I'll review and release quickly 👍
Successfully merging a pull request may close this issue.
Bug Report
Summary
We are not able to start a Session after setting a Session ID.
Current behavior
The Session does not start
How to reproduce
$sessionId = $routeMatch->getParam('sessionId');
$sessionManager->setId($sessionId);
$sessionManager->start();
Expected behavior
The Session starts.
Possible Cause
The Change in these lines may cause this.
The text was updated successfully, but these errors were encountered: