I think I found the code in active_users_inc.asp but I am not sure if this is it:
'Clean up old users
'Initilse sql statement
If strDatabaseType = "SQLServer" Then
strSQL = "EXECUTE " & strDbProc & "DeleteActiveUser"
Else
strSQL = "DELETE FROM " & strDbTable & "ActiveUser WHERE " & strDbTable & "ActiveUser.Active < Now() - 0.0070;"
End If
I assume that I need to modify the Now() - 0.0070 part, but I am not familiar what 0.0070 actually means. It looks like it is measuring time in clock ticks or something like that, not minutes. Of course, I am not an asp programmer, so I'm just guessing what 0.0070 means.
Am I looking in the right place? If so, how do I convert minutes to whatever format that is expresses in?