Scandal
10-25-2014, 10:00 PM
A template modification for session auto-refresh! :up:
What does this mod do?
By default, vbulletin refreshes the session only on a page refresh - move to new page by the user. With this, when a user has not close the browser, it continuous display as ONLINE, on the page the browser is.
Copy and paste the following code at the end of your headinclude template and you're ready!
On the *zip package below you can find also the code for vB3 version.
Credits: to madness85 (https://vborg.vbsupport.ru/member.php?u=480334) for him idea and the donation for creating this hack. :)
<vb:if condition="$show[member]">
<script type="text/javascript">
var sc_sessionrefresh_handleSuccess = function(o)
{
if(o.responseText !== undefined)
{
if (sc_sessionrefresh_callback.object_name[o.tId] !== undefined)
{
fetch_object(sc_sessionrefresh_callback.object_nam e[o.tId]).innerHTML = o.responseText;
}
}
}
var sc_sessionrefresh_handleFailure = function(o)
{
if(o.responseText !== undefined)
{
alert(o.responseText);
}
}
var sc_sessionrefresh_callback =
{
success: sc_sessionrefresh_handleSuccess,
failure: sc_sessionrefresh_handleFailure,
timeout: vB_Default_Timeout,
cache: false,
object_name: new Array()
}
function sc_sessionrefresh_fetch()
{
var sUrl = document.URL;
var request = YAHOO.util.Connect.asyncRequest('GET', sUrl, sc_sessionrefresh_callback);
return true;
}
setInterval(function () {
sc_sessionrefresh_fetch();
}, {vb:raw vboptions.cookietimeout} * 1000);
</script>
</vb:if>
What does this mod do?
By default, vbulletin refreshes the session only on a page refresh - move to new page by the user. With this, when a user has not close the browser, it continuous display as ONLINE, on the page the browser is.
Copy and paste the following code at the end of your headinclude template and you're ready!
On the *zip package below you can find also the code for vB3 version.
Credits: to madness85 (https://vborg.vbsupport.ru/member.php?u=480334) for him idea and the donation for creating this hack. :)
<vb:if condition="$show[member]">
<script type="text/javascript">
var sc_sessionrefresh_handleSuccess = function(o)
{
if(o.responseText !== undefined)
{
if (sc_sessionrefresh_callback.object_name[o.tId] !== undefined)
{
fetch_object(sc_sessionrefresh_callback.object_nam e[o.tId]).innerHTML = o.responseText;
}
}
}
var sc_sessionrefresh_handleFailure = function(o)
{
if(o.responseText !== undefined)
{
alert(o.responseText);
}
}
var sc_sessionrefresh_callback =
{
success: sc_sessionrefresh_handleSuccess,
failure: sc_sessionrefresh_handleFailure,
timeout: vB_Default_Timeout,
cache: false,
object_name: new Array()
}
function sc_sessionrefresh_fetch()
{
var sUrl = document.URL;
var request = YAHOO.util.Connect.asyncRequest('GET', sUrl, sc_sessionrefresh_callback);
return true;
}
setInterval(function () {
sc_sessionrefresh_fetch();
}, {vb:raw vboptions.cookietimeout} * 1000);
</script>
</vb:if>