好样的伙计们,
我想知道是否可以将ActivityTimeOut设置设置为30天?
我试着把它放30天..。2592000秒=30天。
然而,在几个小时的不活动之后,EzPublish注销了我的帐户。
发布于 2015-08-07 13:39:33
根据eZ发布文档:
# Number of seconds before a session is considered inactive/logged out, 1 hour is standard
ActivityTimeout=3600在使用此设置的内核代码中,它似乎对真正断开用户没有任何影响,它只是将看作是非活动的(例如,通过fetchLoggedInList函数),这是在管理接口的Admin > session部分中使用的(如果您使用的是eZ发布的最后4.x版本中的默认行为)。
你试过检查这些参数了吗?
[Session]
# "Remember me" feature of the login.
# Number of seconds a session cookie will last,
# if an user wants to store current session to the cookie
# should click on "Remember me" checkbox on login page.
# Empty or 0 means this ability will be disabled and CookieTimeout will be used.
RememberMeTimeout=
# Number of seconds a session will last, 3 days is standard
SessionTimeout=259200
# Number of seconds a session cookie will last,
# 0 means until browser is closed
# Leaving the field empty means to use the default PHP settings (session.cookie_lifetime)
CookieTimeout=如您所见,默认情况下,PHP服务器配置都是cookies控制器,因此您也应该在这里查看一下。
https://stackoverflow.com/questions/31530898
复制相似问题