Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi all,
How can I prolong session for logged in frontend members?
Hi,
Try adding the following key to the web.config (change 120 to whatever you need). I think this affects backoffice users too.
V7
<add key="umbracoTimeOutInMinutes" value="120" />
V8
<add key="Umbraco.Core.TimeOutInMinutes" value="120" />
In the past (from a distant memory) I had to create a keep alive ajax call to extend only members whilst they watched a long video. I just hit an API endpoint which returned true after checking the member status if that helps?
Steve
Hi Steve,
Its working for Backofice users, but frontend members are stil not afected.
BR
Try increasing the length of the session state - add / amend this key inside the
<sessionState timeout="60"/>
I changed this line:
<membership defaultProvider="UmbracoMembershipProvider" userIsOnlineTimeWindow="60">
Looks like its working
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Frontend members loggin session
Hi all,
How can I prolong session for logged in frontend members?
Hi,
Try adding the following key to the web.config (change 120 to whatever you need). I think this affects backoffice users too.
V7
V8
In the past (from a distant memory) I had to create a keep alive ajax call to extend only members whilst they watched a long video. I just hit an API endpoint which returned true after checking the member status if that helps?
Steve
Hi Steve,
Its working for Backofice users, but frontend members are stil not afected.
BR
Try increasing the length of the session state - add / amend this key inside the
I changed this line:
Looks like its working
is working on a reply...