Permissions 如何解决liferay中的禁用问题?

Permissions 如何解决liferay中的禁用问题?,permissions,liferay,liferay-6,Permissions,Liferay,Liferay 6,在liferay中,当登录用户不连续工作30分钟时,他会收到一句话,上面写着在保存之前不要刷新页面。但是,如果用户刷新页面,他将进入登录页面,如果他自己在该页面输入密码,他将进入禁止页面,并带有一句话,您没有访问该页面的权限 如何在liferay中解决此问题?检查portal-ext.properties中的这些配置值(此处为其默认值)是否有助于您解决所需问题: # # Specify the maximum number of sessions allowed. A value of 0 or

在liferay中,当登录用户不连续工作30分钟时,他会收到一句话,上面写着
在保存之前不要刷新页面。但是,如果用户刷新页面,他将进入登录页面,如果他自己在该页面输入密码,他将进入禁止页面,并带有一句话,
您没有访问该页面的权限


如何在liferay中解决此问题?

检查
portal-ext.properties
中的这些配置值(此处为其默认值)是否有助于您解决所需问题:

#
# Specify the maximum number of sessions allowed. A value of 0 or less than
# 0 will mean that there is no limit. A value greater than 0 will limit the
# number of sessions by invalidating newer sessions.
#
# This property is not used unless the session max allowed filter is
# enabled.
#
session.max.allowed=0

#
# Specify the number of minutes before a session expires. This value is
# always overridden by the value set in web.xml.
#
session.timeout=30

#
# Specify the number of minutes before a warning is sent to the user
# informing the user of the session expiration. Specify 0 to disable any
# warnings.
#
session.timeout.warning=1

#
# Set the auto-extend mode to true to avoid having to ask the user whether
# to extend the session or not. Instead it will be automatically extended.
# The purpose of this mode is to keep the session open as long as the user
# browser is open and with a portal page loaded. It is recommended to use
# this setting along with a smaller "session.timeout", such as 5 minutes for
# better performance.
#
session.timeout.auto.extend=false

#
# Set this to true if the user is redirected to the default page when the
# session expires.
#
session.timeout.redirect.on.expire=false

有很多易于配置的选项,但我不知道您会满意什么结果

会话超时后,您确定是同一用户尝试登录吗?

可能是同一用户或其他用户。同一用户不应获得权限错误。其他权限较低的用户很可能会出现此错误。您能否提供重现此问题的步骤?这意味着什么?除非为(session.max.allowed=0)启用了session max allowed筛选器,否则不会使用此属性?