Fórum

How to automatically redirect to home page after session timeout

Gautam Sharma, modificado 11 Anos atrás.

How to automatically redirect to home page after session timeout

Junior Member Postagens: 92 Data de Entrada: 30/04/12 Postagens Recentes
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
jelmer kuperus, modificado 11 Anos atrás.

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

Liferay Legend Postagens: 1191 Data de Entrada: 10/03/10 Postagens Recentes
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
Gautam Sharma, modificado 11 Anos atrás.

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

Junior Member Postagens: 92 Data de Entrada: 30/04/12 Postagens Recentes
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
sedki jdaida, modificado 7 Anos atrás.

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

Junior Member Postagens: 25 Data de Entrada: 08/09/16 Postagens Recentes
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