Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Sherry Ann Hernandez 320 posts 344 karma points
    Jul 11, 2012 @ 17:13
    Sherry Ann Hernandez
    0

    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

  • Jeff Herald 5 posts 35 karma points
    Jul 13, 2012 @ 16:35
    Jeff Herald
    0

    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

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies