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
Description
While perusing the source of HttpFoundation on this beautiful Friday evening, I noticed that it permits configuration of the session.upload_progress.* and url_rewriter.tags ini settings.
In the case of session.upload_progress.* - these are PHP_INI_PERDIR options and can not be configured at runtime with ini_set. Future Symfony versions should drop them as valid session options.
In the case of url_rewriter.tags - the PHP docs note that as of PHP 7.1.0, it is no longer used for session configuration and that setting is now session.trans_sid_tags.
Both the upload_progress and url_rewriter.tags options are still present in the 6.0 branch, so I'm suggesting that they be deprecated.