GetSecondsBeforeUserLogout is requested in Backoffice even if the functionality was disabled in the config file
Hi,
Does anybody also encounter the same. I'm using a firebug and it's calling the webservice every sec that it makes our back office site hang. I already disabled the setting in the umbracoSettings.config.
GetSecondsBeforeUserLogout is requested in Backoffice even if the functionality was disabled in the config file
Hi,
Does anybody also encounter the same. I'm using a firebug and it's calling the webservice every sec that it makes our back office site hang. I already disabled the setting in the umbracoSettings.config.
Anybody have a solution on this? I'm using 4.7.2
Yes, i have the same issue. I'm not sure what setting you changed in umbracoSettings.config, but looking at the code I don't see a way to disable it.
You can issue the following command the firebug js console to turn it off temporarily:
pauseKeepAlive()
or if you have greasemonkey installed, you can use this script:
// ==UserScript==
// @name Disable Umbraco KeepAlive
// @namespace umbraco
// @include /^https*://(.+)/umbraco/umbraco\.aspx(.*)/
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js
// @version 1
// ==/UserScript==
console.log("Umbraco Greasemonkey script");
jQuery(function($) {
if (typeof unsafeWindow.pauseKeepAlive == 'function') {
console.log('disabling keepAlive');
unsafeWindow.pauseKeepAlive();
}
});
hth
is working on a reply...