掲示板

How to automatically redirect to home page after session timeout

11年前 に Gautam Sharma によって更新されました。

How to automatically redirect to home page after session timeout

Junior Member 投稿: 92 参加年月日: 12/04/30 最新の投稿
Hi All,
I would like to automaticatically redirect control to my community home page after session timeout. i tried putting below properties in my portal-ext.properties file but after sesssion timeout it doesn't automatically goes to community home page however if i click on any link or button it going back to home page.
Can anybody please let me know how control can automatically be transfered to home page after session timeout instead of clicking any button or link.


Environment: Liferay 6.0

session.id.delimiter=
session.id.weblogic.delimiter=!
session.timeout=5
session.timeout.warning=1
session.timeout.auto.extend=false
session.timeout.redirect.on.expire=true
default.landing.page.path=/web/demo/home
last.modified.check=false
theme.css.fast.load=true
javascript.fast.load=true
hibernate.show_sql=false
com.liferay.portal.servlet.filters.threadlocal.ThreadLocalFilter=true
com.liferay.portal.servlet.filters.unsyncprintwriterpool.UnsyncPrintWriterPoolFilter=true
jsp.writer.buffer.size=0
finalize.manager.thread.enabled=true

session.enable.phishing.protection=true


Thanks
thumbnail
11年前 に jelmer kuperus によって更新されました。

RE: How to automatically redirect to home page after session timeout

Liferay Legend 投稿: 1191 参加年月日: 10/03/10 最新の投稿
Setting this property to true :

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


Will redirect you to themeDisplay.getURLHome() on session timeout. if you want it to redirect you to a different location you would probably have to hook docroot/html/common/themes/session_timeout.jspf
11年前 に Gautam Sharma によって更新されました。

RE: How to automatically redirect to home page after session timeout

Junior Member 投稿: 92 参加年月日: 12/04/30 最新の投稿
Hi Jelmer,

Thanks for reply.

As you can see i have already set "session.timeout.redirect.on.expire" to true in portal-ext.properties file.
session.timeout.redirect.on.expire=true

But still its not redirecting to home page.

Thanks
7年前 に sedki jdaida によって更新されました。

RE: How to automatically redirect to home page after session timeout

Junior Member 投稿: 25 参加年月日: 16/09/08 最新の投稿
put this in portal.ext.properties then restart the lifera server

session.timeout.warning=1
session.timeout.auto.extend=false
session.timeout.redirect.on.expire=true
session.timeout.redirectUrl=/c/portal/j_login

##redirect last visited page after successful login
auth.forward.by.last.path=true
##Show login portlet without return to full page link
layout.remember.request.window.state.maximized=false
#default.logout.page.path=/c/portal/customlogin
session.enable.phishing.protection=false