留言板

Liferay session timeout change

Subhash S Chandran,修改在14 年前。

Liferay session timeout change

New Member 帖子: 13 加入日期: 08-8-28 最近的帖子
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.
thumbnail
Aarti Jain,修改在14 年前。

RE: Liferay session timeout change

Regular Member 帖子: 116 加入日期: 08-9-2 最近的帖子
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
Life Ray,修改在14 年前。

Extends not working

New Member 帖子: 13 加入日期: 08-10-14 最近的帖子
hi,

I have exactly the same configuration - :

session.timeout=5
session.timeout.warning=0
session.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.
thumbnail
Aarti Jain,修改在14 年前。

RE: Extends not working

Regular Member 帖子: 116 加入日期: 08-9-2 最近的帖子
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
Life Ray,修改在14 年前。

RE: Extends not working

New Member 帖子: 13 加入日期: 08-10-14 最近的帖子
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?
thumbnail
Victor Zorin,修改在14 年前。

RE: Extends not working

Liferay Legend 帖子: 1228 加入日期: 08-4-14 最近的帖子
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
Life Ray,修改在14 年前。

RE: Extends not working

New Member 帖子: 13 加入日期: 08-10-14 最近的帖子
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.
thumbnail
Victor Zorin,修改在14 年前。

RE: Extends not working

Liferay Legend 帖子: 1228 加入日期: 08-4-14 最近的帖子
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.
thumbnail
Jonas Yuan,修改在14 年前。

RE: Extends not working

Liferay Master 帖子: 993 加入日期: 07-4-27 最近的帖子
Hi Victor,

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

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


Jonas Yuan

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

Liferay Portal 5.2 Systems Development
Liferay Portal Enterprise Intranets
thumbnail
Jonas Yuan,修改在14 年前。

RE: Extends not working

Liferay Master 帖子: 993 加入日期: 07-4-27 最近的帖子
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.
 
[b]<c:if test="<%= sessionTimeoutWarning > 0 %>">[/b]
AUI().use(
'liferay-session',
function(A) {
Liferay.Session.init(
{
[b]autoExtend: &lt;%= PropsValues.SESSION_TIMEOUT_AUTO_EXTEND %&gt;,[/b]
timeout: &lt;%= sessionTimeout %&gt;,
timeoutWarning: &lt;%= sessionTimeoutWarning %&gt;,
[b]redirectOnExpire: &lt;%= PropsValues.SESSION_TIMEOUT_REDIRECT_ON_EXPIRE %&gt;[/b]
}
);
}
);
</c:if>


Thanks

Jonas Yuan
-----------------
The Author of Liferay Books:
Liferay Portal 5.2 Systems Development
Liferay Portal Enterprise Intranets
thumbnail
coffy_ sk,修改在14 年前。

RE: Extends not working

Junior Member 帖子: 26 加入日期: 09-6-5 最近的帖子
I am sorry for the following stupid question, but:

If I set
session.timeout.warning=1
session.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,修改在14 年前。

RE: Extends not working

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

RE: Extends not working

New Member 发布: 1 加入日期: 10-3-3 最近的帖子
There is following configuration in web.xml file in portal sources:
<session-config>
	<session-timeout>30</session-timeout>
</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,修改在13 年前。

RE: Extends not working

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

RE: Extends not working

New Member 帖子: 5 加入日期: 11-1-21 最近的帖子
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
thumbnail
Fateh al chhabi,修改在13 年前。

RE: Extends not working

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

RE: Extends not working

Junior Member 帖子: 82 加入日期: 14-12-29 最近的帖子
hi friends ....

i am using portlet page but tomcat session timeout 30 min ...
so portlet page session timeout ..
how to increase session timeout in portlet page ...

"Warning! Due to inactivity, your session has expired. Please save any data you may have entered before refreshing the page."

how to solve ....???
kindly help me...

Regards ...
Eswaran.R
Eswaran R,修改在9 年前。

RE: Extends not working

Junior Member 帖子: 82 加入日期: 14-12-29 最近的帖子
hi..

my portlet page using at the time session timeout...

how to solve this error ????

my portlet page idle session timeout but now i am using portlet page at the time session timeout ....

thanks..

Regards

Eswaran.R
thumbnail
amir keshavarz,修改在8 年前。

RE: Extends not working

Junior Member 帖子: 54 加入日期: 10-10-9 最近的帖子
sandhya shendre:
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


My tests show that root\web-inf\web.xml is taken.
Vijay Chandra,修改在10 年前。

RE: Extends not working

New Member 帖子: 8 加入日期: 13-4-4 最近的帖子
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
Tor Iver Wilhelmsen,修改在13 年前。

RE: Extends not working

Junior Member 帖子: 60 加入日期: 08-12-3 最近的帖子
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.
thumbnail
Koen Vermeulen,修改在11 年前。

RE: Extends not working

New Member 帖子: 13 加入日期: 10-2-16 最近的帖子
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?
Ripal thakkar,修改在10 年前。

RE: Extends not working

New Member 帖子: 14 加入日期: 11-6-30 最近的帖子
Hi,

did you get any solution on this?

Thanks,
Ripal
Ripal thakkar,修改在10 年前。

RE: Extends not working

New Member 帖子: 14 加入日期: 11-6-30 最近的帖子
I got it...

In the session_timeout.jsp, liferay checks if sessionTimeoutWarning is greater than 0 (<c:if test="<%= sessionTimeoutWarning > 0 %>">) then only it calls a liferay.session function which takes care for session expiration and all.

By removing this condition in hook , session is expiring.

Regards,
Ripal Thakkar
Eswaran R,修改在9 年前。

RE: Extends not working

Junior Member 帖子: 82 加入日期: 14-12-29 最近的帖子
hi,,,
my portlet page using at the time session timeout...

how to solve this error ????

my portlet page idle session timeout but now i am using portlet page at the time session timeout ....
thumbnail
Kyrre Myrbostad,修改在14 年前。

RE: Extends not working

Junior Member 帖子: 37 加入日期: 09-1-21 最近的帖子
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
Eswaran R,修改在9 年前。

RE: Extends not working

Junior Member 帖子: 82 加入日期: 14-12-29 最近的帖子
hi,,,

i am using portlet page but tomcat session timeout 30 min ...
so portlet page session timeout ..
how to increase session timeout in portlet page ...

"Warning! Due to inactivity, your session has expired. Please save any data you may have entered before refreshing the page."

how to solve ....???
kindly help me...

Regards ...
Eswaran.R
Eswaran R,修改在9 年前。

RE: Extends not working

Junior Member 帖子: 82 加入日期: 14-12-29 最近的帖子
hi,,,

my portlet page using at the time session timeout...

how to solve this error ????

my portlet page idle session timeout but now i am using portlet page at the time session timeout ....
Chris King,修改在14 年前。

RE: Liferay session timeout change

New Member 帖子: 4 加入日期: 08-10-14 最近的帖子
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?
Eswaran R,修改在9 年前。

RE: Liferay session timeout change

Junior Member 帖子: 82 加入日期: 14-12-29 最近的帖子
hi friends ....

i am using portlet page but tomcat session timeout 30 min ...
so portlet page session timeout ..
how to increase session timeout in portlet page ...

"Warning! Due to inactivity, your session has expired. Please save any data you may have entered before refreshing the page."

how to solve ....???
kindly help me...

Regards ...
Eswaran.R