Fórum

logout problem

Syed Umair, modificado 11 Anos atrás.

logout problem

Junior Member Postagens: 36 Data de Entrada: 11/10/12 Postagens Recentes
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 11 Anos atrás.

RE: logout problem

Regular Member Postagens: 234 Data de Entrada: 13/03/12 Postagens Recentes
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 11 Anos atrás.

RE: logout problem

Junior Member Postagens: 36 Data de Entrada: 11/10/12 Postagens Recentes
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 11 Anos atrás.

RE: logout problem

Regular Member Postagens: 145 Data de Entrada: 31/01/11 Postagens Recentes
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 11 Anos atrás.

RE: logout problem

Junior Member Postagens: 36 Data de Entrada: 11/10/12 Postagens Recentes
Gaurav, can you explain the condition that should be applied. I am unable to do this.
thumbnail
Nikhil Nishchal, modificado 11 Anos atrás.

RE: logout problem

Regular Member Postagens: 176 Data de Entrada: 22/06/12 Postagens Recentes
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 11 Anos atrás.

RE: logout problem (Resposta)

Junior Member Postagens: 36 Data de Entrada: 11/10/12 Postagens Recentes
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 8 Anos atrás.

RE: logout problem

New Member Postagens: 2 Data de Entrada: 21/02/15 Postagens Recentes
Hi Syed,

Thank u very much for your Solution.
I use it in my Application and it works.
thumbnail
Bart Simpson, modificado 11 Anos atrás.

RE: logout problem

Liferay Master Postagens: 522 Data de Entrada: 29/08/11 Postagens Recentes
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 11 Anos atrás.

RE: logout problem

Junior Member Postagens: 36 Data de Entrada: 11/10/12 Postagens Recentes
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 11 Anos atrás.

RE: logout problem

Liferay Master Postagens: 522 Data de Entrada: 29/08/11 Postagens Recentes
something similar , has been reported, check the fix http://issues.liferay.com/browse/LPS-16367
Syed Umair, modificado 11 Anos atrás.

RE: logout problem

Junior Member Postagens: 36 Data de Entrada: 11/10/12 Postagens Recentes
yeah, I have seen this fix. But don't know why, I am still facing this problem... emoticon