留言板

logout problem

Syed Umair,修改在11 年前。

logout problem

Junior Member 帖子: 36 加入日期: 12-10-11 最近的帖子
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,修改在11 年前。

RE: logout problem

Regular Member 帖子: 234 加入日期: 12-3-13 最近的帖子
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,修改在11 年前。

RE: logout problem

Junior Member 帖子: 36 加入日期: 12-10-11 最近的帖子
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,修改在11 年前。

RE: logout problem

Regular Member 帖子: 145 加入日期: 11-1-31 最近的帖子
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,修改在11 年前。

RE: logout problem

Junior Member 帖子: 36 加入日期: 12-10-11 最近的帖子
Gaurav, can you explain the condition that should be applied. I am unable to do this.
thumbnail
Nikhil Nishchal,修改在11 年前。

RE: logout problem

Regular Member 帖子: 177 加入日期: 12-6-22 最近的帖子
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,修改在11 年前。

RE: logout problem (答复)

Junior Member 帖子: 36 加入日期: 12-10-11 最近的帖子
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,修改在8 年前。

RE: logout problem

New Member 帖子: 2 加入日期: 15-2-21 最近的帖子
Hi Syed,

Thank u very much for your Solution.
I use it in my Application and it works.
thumbnail
Bart Simpson,修改在11 年前。

RE: logout problem

Liferay Master 帖子: 522 加入日期: 11-8-29 最近的帖子
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,修改在11 年前。

RE: logout problem

Junior Member 帖子: 36 加入日期: 12-10-11 最近的帖子
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,修改在11 年前。

RE: logout problem

Liferay Master 帖子: 522 加入日期: 11-8-29 最近的帖子
something similar , has been reported, check the fix http://issues.liferay.com/browse/LPS-16367
Syed Umair,修改在11 年前。

RE: logout problem

Junior Member 帖子: 36 加入日期: 12-10-11 最近的帖子
yeah, I have seen this fix. But don't know why, I am still facing this problem... emoticon