我有项目Symfony 2.6.11,在认证一段时间后,我有error,我必须再次认证,我想要一些信息,比如‘您的会话结束,再次认证’,或者我在哪里看到认证的实际时间,这一次如何更改?
发布于 2015-09-17 19:49:57
您是否尝试更改会话设置?:
framework:
session:
cookie_lifetime: 60 #60 seconds
gc_maxlifetime: 50 #50 seconds - only needed for testing. Dont use this in a production environment
gc_probability: 1 #only needed for testing. Dont use this in a production environment
gc_divisor: 1 #only needed for testing. Dont use this in a production environment你可以在这里看到配置:https://codedump.io/share/9eVPS5otSIuk
https://stackoverflow.com/questions/32627247
复制相似问题