Fórumok

Nyitólap » Liferay Portal » English » 2. Using Liferay » General

Kombinált nézet Egyszerű nézet Fa-nézet
Szálak [ Előző | Következő ]
toggle
Subhash S Chandran
Liferay session timeout change
2009. június 24. 0:35
Válasz

Subhash S Chandran

Rangsorolás: New Member

Hozzászólások: 13

Csatlakozás dátuma: 2008. augusztus 28.

Legújabb hozzászólások

We changed the timeout value in web.xml from 30 to 43200. Now we are getting this message every one minute, and Liferay logs me out after that (if I don't extend the session). This happens in Firefox 3.0.3 in Linux environment when using Liferay 5.1.2. Same instance tested in IE6 works fine.
Melléklet

Mellékletek: session.png (8,7k)
Aarti Jain
RE: Liferay session timeout change
2009. június 24. 6:26
Válasz

Aarti Jain

Rangsorolás: Regular Member

Hozzászólások: 116

Csatlakozás dátuma: 2008. szeptember 2.

Legújabb hozzászólások

Hi,

You can try putting following properties in portal-ext.properties:

session.timeout=5
session.timeout.warning=0
session.timeout.auto.extend=true

This will automatically extend your session.

You will not face problem by changing the value in web.xml, if the value is small.


Regards,
Aarti
Ray Vin
Extends not working
2009. július 1. 7:23
Válasz

Ray Vin

Rangsorolás: New Member

Hozzászólások: 13

Csatlakozás dátuma: 2008. október 14.

Legújabb hozzászólások

hi,

I have exactly the same configuration - :

1session.timeout=5
2session.timeout.warning=0
3session.timeout.auto.extend=true


I use the ext environment and put them into the portal-ext.properties. BUT if the user without closing the browser or something else waits longer than five minutes he must login again. I thought it is the last property that should handle this - automatically extending the session.

Working setup:
- Liferay 5.2.2 from SVN
- Build from ext-environment
- FireFox 3 / OS Windows Vista

Can you explain this behavior?

Thanks a lot.
Aarti Jain
RE: Extends not working
2009. július 1. 11:27
Válasz

Aarti Jain

Rangsorolás: Regular Member

Hozzászólások: 116

Csatlakozás dátuma: 2008. szeptember 2.

Legújabb hozzászólások

Hi,

This is working fine with liferay 5.1.2 and liferay 5.2.1. This type of behavior was never seen.

Never used it with liferay 5.2.2.

Regards,
Aarti Jain
Impetus Infotech Pvt. Ltd.
Noida
Ray Vin
RE: Extends not working
2009. július 1. 15:00
Válasz

Ray Vin

Rangsorolás: New Member

Hozzászólások: 13

Csatlakozás dátuma: 2008. október 14.

Legújabb hozzászólások

thanks for the quick reply - I have no idea. after 5 min. the user must login again ?!? have you a hint where to look in the implementation to figure out if something changed?
Victor Zorin
RE: Extends not working
2009. július 1. 15:49
Válasz

Victor Zorin

Rangsorolás: Liferay Legend

Hozzászólások: 1129

Csatlakozás dátuma: 2008. április 14.

Legújabb hozzászólások

Funny enough, but to make auto.extend working, you would have to make
session.timeout.warning=1

The auto extension function is written in
docroot/html/common/themes/session_timeout.jsp (session_timeout.jspf for 5.2.2)

Search for SESSION_TIMEOUT_EUTO_EXTEND.


We usually make session length of 8 hours and then autoextend
# 10hrs
session.timeout=600
session.timeout.warning=1
session.timeout.auto.extend=true
Ray Vin
RE: Extends not working
2009. július 2. 0:00
Válasz

Ray Vin

Rangsorolás: New Member

Hozzászólások: 13

Csatlakozás dátuma: 2008. október 14.

Legújabb hozzászólások

Thanks a lot. Now it is working in the desired way. I am wondering about something - I set session.timeout.warning to 0 because I do not want that the user is informed about this sweet little box on the top of his browser. but with your described setting I've tested the box never appeared. so because of setting this property now to the value 1 nothing happened. fine for me. but not really transparent.

thx.
Victor Zorin
RE: Extends not working
2009. július 2. 0:34
Válasz

Victor Zorin

Rangsorolás: Liferay Legend

Hozzászólások: 1129

Csatlakozás dátuma: 2008. április 14.

Legújabb hozzászólások

If auto.extend=true warning does not show.

In regards to why do we need timeout.warning setting, [without analyzing the code] I suspect the reason for it is fairly simple:

- we are dealing with client (browser) and server(webserver), and, abstractly speaking, both of them are "tracking" the timeout. (even if it is the same http session object)

- when client detects that session is about to expire, client makes background call '/c/portal/extend_session' and server is extending the session

If client makes such call exactly at a timeout expiration time, there is a good chance that the timeout would already expire on server end.

So the design by liferay implies that call 'c/portal/extend_session' shall be made earlier, i.e. at warning time, which in your case we set at 1 minute. At this time it is guaranteed that the call would be delivered to the webserver before the actual expiration time.
That's it.
Kyrre Myrbostad
RE: Extends not working
2009. augusztus 7. 0:55
Válasz

Kyrre Myrbostad

Rangsorolás: Junior Member

Hozzászólások: 37

Csatlakozás dátuma: 2009. január 21.

Legújabb hozzászólások

Thx for the tip, this fooled me also.

Maybe the text in portal.properties could be changed to something like:

#
# Set the auto-extend mode to true to avoid having to ask the user whether
# to extend the session or not. Instead it will be automatically extended.
# The purpose of this mode is to keep the session open as long as the user
# browser is open and with a portal page loaded. It is recommended to use
# this setting along with a smaller "session.timeout", such as 5 minutes for
# better performance.
#
# Note that session.timeout.warning must be set to 1 for this to work. No warnings will be issued at the client.
#
session.timeout.auto.extend=true
Jonas Yuan
RE: Extends not working
2009. szeptember 3. 14:55
Válasz

Jonas Yuan

Rangsorolás: Liferay Master

Hozzászólások: 993

Csatlakozás dátuma: 2007. április 26.

Legújabb hozzászólások

Hi Victor,

Thank you. This is very useful message, funny enough ...

1session.timeout=5
2session.timeout.warning=1
3session.timeout.auto.extend=true


Jonas Yuan

-----------------
Liferay Books

Liferay Portal 5.2 Systems Development
Liferay Portal Enterprise Intranets
Chris King
RE: Liferay session timeout change
2009. szeptember 11. 12:06
Válasz

Chris King

Rangsorolás: New Member

Hozzászólások: 4

Csatlakozás dátuma: 2008. október 14.

Legújabb hozzászólások

Is it possible to set session.timeout.auto.extend=true dynamically or for a subset of users or communities? We would like to have anyone with a 10.* IP address auto extend, but if anyone hits the site from outside the firewall hits the site, then we want them to timeout. We are currently running code that looks at the IP address of the user. Is there an API we could call to set this property?
Jonas Yuan
RE: Extends not working
2009. október 14. 6:44
Válasz

Jonas Yuan

Rangsorolás: Liferay Master

Hozzászólások: 993

Csatlakozás dátuma: 2007. április 26.

Legújabb hozzászólások

The pre-condition is session.timeout.warning.

Only it (session.timeout.warning) is set as 1 as shown in following code, then
session.timeout.auto.extend and session.timeout.redirect.on.expire would get checked.

code in 5.3.
 1
 2[b]<c:if test="<%= sessionTimeoutWarning > 0 %>">[/b]
 3AUI().use(
 4'liferay-session',
 5function(A) {
 6Liferay.Session.init(
 7{
 8[b]autoExtend: <%= PropsValues.SESSION_TIMEOUT_AUTO_EXTEND %>,[/b]
 9timeout: <%= sessionTimeout %>,
10timeoutWarning: <%= sessionTimeoutWarning %>,
11[b]redirectOnExpire: <%= PropsValues.SESSION_TIMEOUT_REDIRECT_ON_EXPIRE %>[/b]
12}
13);
14}
15);
16</c:if>


Thanks

Jonas Yuan
-----------------
The Author of Liferay Books:
Liferay Portal 5.2 Systems Development
Liferay Portal Enterprise Intranets
Matus Ferko
RE: Extends not working
2009. december 3. 1:41
Válasz

Matus Ferko

Rangsorolás: Junior Member

Hozzászólások: 26

Csatlakozás dátuma: 2009. június 5.

Legújabb hozzászólások

I am sorry for the following stupid question, but:

If I set
1session.timeout.warning=1
2session.timeout.auto.extend=true


does it mean the session never expire?
If yes there could be one additional property session.timeout.never. It would be less confusing emoticon
Pravin Bansal
RE: Extends not working
2010. március 12. 5:15
Válasz

Pravin Bansal

Rangsorolás: New Member

Hozzászólások: 4

Csatlakozás dátuma: 2010. március 12.

Legújabb hozzászólások

Guys be careful though, while updating your portal-ext.properties.
Any settings written ext properties will not take effect as long as there is a session time out entry in web.xml (of root in tomcat) clean it before you add any session entries to take effect in your portal-ext properties..
Cheer's
Matus Ferko
RE: Extends not working
2010. április 19. 3:26
Válasz

Matus Ferko

Rangsorolás: New Member

Hozzászólások: 1

Csatlakozás dátuma: 2010. március 3.

Legújabb hozzászólások

There is following configuration in web.xml file in portal sources:
1<session-config>
2    <session-timeout>30</session-timeout>
3</session-config>


Do I have to delete it, to make my configuration from portlet-ext.properties working? If yes it means that value from portal-ext.properties will never take effect. ?!
Pravin Bansal
RE: Extends not working
2010. május 25. 4:27
Válasz

Pravin Bansal

Rangsorolás: New Member

Hozzászólások: 4

Csatlakozás dátuma: 2010. március 12.

Legújabb hozzászólások

Hi Matus,

Certainly you need to delete entries
<session-config>
<session-timeout>30</session-timeout>
</session-config>
from web.xml in order ext properties to take effect for session time out.
Please find me for any further questions.

Thank you,
Pravin
sandhya shendre
RE: Extends not working
2011. január 23. 22:26
Válasz

sandhya shendre

Rangsorolás: New Member

Hozzászólások: 5

Csatlakozás dátuma: 2011. január 21.

Legújabb hozzászólások

Hi All,

I have set the session-timeout as 30 min in tomcat\conf\web.xml file and 65 min in root\web-inf\web.xml. Which session-timeout value will be taken in consideration?

I'm getting time out message after 30 min.



Regards,
Sandhya Shendre
Fateh Alchhabi
RE: Extends not working
2011. január 24. 4:14
Válasz

Fateh Alchhabi

Rangsorolás: Junior Member

Hozzászólások: 58

Csatlakozás dátuma: 2010. december 1.

Legújabb hozzászólások

Hi sandhya shendre
regarding to your Question :when you add the 65 values in "root\web-inf\web.xml"

This value is always overridden by the value set in tomcat\conf\web.xml under the folder $PORTAL_WEB_INF_HOME
Tor Iver Wilhelmsen
RE: Extends not working
2011. február 14. 1:14
Válasz

Tor Iver Wilhelmsen

Rangsorolás: Junior Member

Hozzászólások: 60

Csatlakozás dátuma: 2008. december 3.

Legújabb hozzászólások

Matus Ferko:
does it mean the session never expire?

No, it means that Javascript will be used to refresh the session via "invisible" calls to the web server. This will continue until the browser window (or tab?) showing the site is closed.
Koen Vermeulen
RE: Extends not working
2013. március 19. 5:22
Válasz

Koen Vermeulen

Rangsorolás: New Member

Hozzászólások: 13

Csatlakozás dátuma: 2010. február 16.

Legújabb hozzászólások

Im trying this in 6.1.20 EE

portal-ext.properties:
session.timeout=1
session.timeout.warning=0

I also changed the entry in web.xml to a session timeout of 1

The warning doesnt come up - But the session doenst get expired after 1 minute.
If i take take away the session.timeout.warning property then it does get expired after one minute.

anyone seen this same problem?
Vijay Chandra
RE: Extends not working
2013. április 18. 2:26
Válasz

Vijay Chandra

Rangsorolás: New Member

Hozzászólások: 8

Csatlakozás dátuma: 2013. április 4.

Legújabb hozzászólások

Thanks Pravin to u n u r post ... from past 5 to 6 hrs i was looking fr the solution of how to give user define session time out... recently we migrated to 6.1 from 6.0 ... i was working on with portal-ext.properties by changing the values of session time out .. but it was not effecting ... following u r suggestion i went to web.xml file in
Liferay\bundles\liferay-portal-6.0.6\tomcat-6.0.29\webapps\ROOT\WEB-INF\web.xml and commented out this below lines, for default values of session time out

<session-config>
<session-timeout>30</session-timeout>
</session-config>
and it worked like butter ... thanks man 1ce again ... emoticon