-
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
Fix for Warning: ini_set(): A session is active...
#229
Fix for Warning: ini_set(): A session is active...
#229
Conversation
https://travis-ci.org/github/FriendsOfSymfony1/symfony1/jobs/683856543 doesn't look like a related error 🤔
|
139290c
to
0f6bdd8
Compare
@alquerci hello, have some time to take a look? ;) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you @spirit-q2 to take care of that.
Need to check deeper but on a first approximation there can be a BC break regarding session timeout.
Expected to be configured on factories.user.param.timeout
but not on factories.storage.param.timeout
where both configuration needs to be in synchronization.
storage one > than user one
Edit: Also need to propagate this new factory parameter to all other session classes, if applicable.
Edit2: gc_maxlifetime
is maybe a better name for this new parameter.
28eb44c
to
36a7cf5
Compare
@alquerci please, check latest version ;) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Going better without BC breaks but just left some refactoring things to do.
And for sure to be sure that current test already covers this.
Because of currently tests does not cover this warning.
see #227 (comment)
👌
if (!array_key_exists('gc_maxlifetime', $this->options)) | ||
{ | ||
$this->options['gc_maxlifetime'] = 1800; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This configuration check can be merged on default parameters values used on the first parameter of array_merge()
, see on line 56.
@@ -109,6 +109,12 @@ public function execute($configFiles) | |||
unset($parameters['database']); | |||
} | |||
|
|||
$sessionGcMaxlifetime = 1800; | |||
if (isset($config['user']['timeout'])) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The timeout
parameter is located on $config['user']['param']['timeout']
.
if (isset($config['user']['timeout'])) { | ||
$sessionGcMaxlifetime = $config['user']['timeout']; | ||
} | ||
$defaultParameters[] = sprintf("'gc_maxlifetime' => %d,", $sessionGcMaxlifetime); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only append this new configuration if it is set on user factory configuration.
Let keep the default configuration value on sfSessionStorage
class to avoid duplication and confusion.
…he session module's ini settings at this time`
36a7cf5
to
4d512de
Compare
@alquerci updated all comments |
@j0k3r @jeromemacias @e1himself @GromNaN Hello guys! Can anyone check/approve/merge? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Interested by this fix too. |
@j0k3r @jeromemacias @e1himself @GromNaN Guys, any chances to get this merged? It's the only blocker to move whole project to |
cc @thePanz ☝️ |
I’ll take care of them next week |
Addresses the issue: #183
Changing session settings shouldn't be done on
sfBasicSecurityUser
class. Instead it should be done near (and before) the call tosession_start()
insfSessionStorage