Forums de discussion

logout problem

Syed Umair, modifié il y a 11 années.

logout problem

Junior Member Publications: 36 Date d'inscription: 11/10/12 Publications récentes
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, modifié il y a 11 années.

RE: logout problem

Regular Member Publications: 234 Date d'inscription: 13/03/12 Publications récentes
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, modifié il y a 11 années.

RE: logout problem

Junior Member Publications: 36 Date d'inscription: 11/10/12 Publications récentes
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, modifié il y a 11 années.

RE: logout problem

Regular Member Publications: 145 Date d'inscription: 31/01/11 Publications récentes
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, modifié il y a 11 années.

RE: logout problem

Junior Member Publications: 36 Date d'inscription: 11/10/12 Publications récentes
Gaurav, can you explain the condition that should be applied. I am unable to do this.
thumbnail
Nikhil Nishchal, modifié il y a 11 années.

RE: logout problem

Regular Member Publications: 177 Date d'inscription: 22/06/12 Publications récentes
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, modifié il y a 11 années.

RE: logout problem (Réponse)

Junior Member Publications: 36 Date d'inscription: 11/10/12 Publications récentes
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, modifié il y a 8 années.

RE: logout problem

New Member Publications: 2 Date d'inscription: 21/02/15 Publications récentes
Hi Syed,

Thank u very much for your Solution.
I use it in my Application and it works.
thumbnail
Bart Simpson, modifié il y a 11 années.

RE: logout problem

Liferay Master Publications: 522 Date d'inscription: 29/08/11 Publications récentes
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, modifié il y a 11 années.

RE: logout problem

Junior Member Publications: 36 Date d'inscription: 11/10/12 Publications récentes
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, modifié il y a 11 années.

RE: logout problem

Liferay Master Publications: 522 Date d'inscription: 29/08/11 Publications récentes
something similar , has been reported, check the fix http://issues.liferay.com/browse/LPS-16367
Syed Umair, modifié il y a 11 années.

RE: logout problem

Junior Member Publications: 36 Date d'inscription: 11/10/12 Publications récentes
yeah, I have seen this fix. But don't know why, I am still facing this problem... emoticon