-
Notifications
You must be signed in to change notification settings - Fork 181
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Warning: ini_set(): A session is active. You cannot change the session module's ini settings at this time in symfony1\lib\user\sfBasicSecurityUser.class.php on line 257 #183
Comments
It seems like a bug, visible only with specific conditions. if (ini_get('session.gc_maxlifetime') < $this->options['timeout'])
{
ini_set('session.gc_maxlifetime', $this->options['timeout']);
}
|
Raising session.gc_maxlifetime is indeed the solution, but I don't think it is doable in It must be done before I think the only way to solve this is to make https://github.com/LExpress/symfony1/blob/master/lib/user/sfBasicSecurityUser.class.php#L255-L258 into a warning/error instead of trying to raise |
With PHP 7.2 (but not listed in the PHP changelog) ini modifications were made to fail - see https://gist.github.com/tpunt/d9fd57c87c37a06a1057e970a90cd8df. My fix is:
|
…he session module's ini settings at this time in sfBasicSecurityUser.class.php on line 257" PHP 7.2 changed the `ini_set` behaviour for session keys (see FriendsOfSymfony1/symfony1#183 for a discussion). This patch prevents the warning.
Guys, check PR above ☝️ |
I've upgraded Symfony 1 to this version, however i'm getting this exception in PHP 7.2:
I am not sure if this bug is related to the fixes to make Sf compatible with PHP 7 or is an error of the library.
The text was updated successfully, but these errors were encountered: