Foros de discusión

logout problem

Syed Umair, modificado hace 11 años.

logout problem

Junior Member Mensajes: 36 Fecha de incorporación: 11/10/12 Mensajes recientes
Hi,

I am developing a portal in liferay 6.1.1 CE. The problem I am facing is when user logs out from portal, he or she can revisit the portal pages using browsers back button. I don't want to allow the users to do that. How can I disable this feature.

Any valuable suggestions, please??? emoticon
Thnx,
Umair
thumbnail
Subhash Pavuskar, modificado hace 11 años.

RE: logout problem

Regular Member Mensajes: 234 Fecha de incorporación: 13/03/12 Mensajes recientes
Hey !!


You should place the following JavaScript code in your home page header section.if you move from page1 to page2, and want to disable the browser back in page 2.

<script>
if(window.history.forward(1) != null)
                 window.history.forward(1);
</script>



Hope this may help you !!
Syed Umair, modificado hace 11 años.

RE: logout problem

Junior Member Mensajes: 36 Fecha de incorporación: 11/10/12 Mensajes recientes
Hi Subhash Pavuskar,

thnx for reply, but I have tried this one. It works for all pages even if user is signed in. I want to disable back only when user is sign out.
thumbnail
Gaurav Jain, modificado hace 11 años.

RE: logout problem

Regular Member Mensajes: 145 Fecha de incorporación: 31/01/11 Mensajes recientes
Syed Umair:
Hi Subhash Pavuskar,

thnx for reply, but I have tried this one. It works for all pages even if user is signed in. I want to disable back only when user is sign out.


You may put this script in condition so that it should be applied only when user is signed-out
Syed Umair, modificado hace 11 años.

RE: logout problem

Junior Member Mensajes: 36 Fecha de incorporación: 11/10/12 Mensajes recientes
Gaurav, can you explain the condition that should be applied. I am unable to do this.
thumbnail
Nikhil Nishchal, modificado hace 11 años.

RE: logout problem

Regular Member Mensajes: 174 Fecha de incorporación: 22/06/12 Mensajes recientes
you can hook to login portlet that after clicking logout button or visiting logout url this JS should call.

Also can be manage by theme if logout button manage through theme.
Syed Umair, modificado hace 11 años.

RE: logout problem (Respuesta)

Junior Member Mensajes: 36 Fecha de incorporación: 11/10/12 Mensajes recientes
If anyone interested, I have solved my problem by add following code in portal-ext.properties file.
browser.cache.signed.in.disabled=true
NIRALI A JOSHI, modificado hace 8 años.

RE: logout problem

New Member Mensajes: 2 Fecha de incorporación: 21/02/15 Mensajes recientes
Hi Syed,

Thank u very much for your Solution.
I use it in my Application and it works.
thumbnail
Bart Simpson, modificado hace 11 años.

RE: logout problem

Liferay Master Mensajes: 522 Fecha de incorporación: 29/08/11 Mensajes recientes
When user revisits the portal page by back button, does it show the user as logged in? I saw this once in one of the beta versions of Liferay, and specifically for IE but I think it was reported to Liferay.
Syed Umair, modificado hace 11 años.

RE: logout problem

Junior Member Mensajes: 36 Fecha de incorporación: 11/10/12 Mensajes recientes
Hi Bart Simpson,

It shows all private pages and user can navigate only by back button, yes no links work but I want that user should not see my private pages data as well.
thumbnail
Bart Simpson, modificado hace 11 años.

RE: logout problem

Liferay Master Mensajes: 522 Fecha de incorporación: 29/08/11 Mensajes recientes
something similar , has been reported, check the fix http://issues.liferay.com/browse/LPS-16367
Syed Umair, modificado hace 11 años.

RE: logout problem

Junior Member Mensajes: 36 Fecha de incorporación: 11/10/12 Mensajes recientes
yeah, I have seen this fix. But don't know why, I am still facing this problem... emoticon