LHC is always required me to login because IP change
Hi, from my house "office" the internet IP is always the same so I do not have issue on LHC but the static IP is something who are supported currently only from my house "office" provider.
When I use LHC out of this network IP are changing every day so LHC ask me always to insert username and password on PC startup.
I checked "remember me" option but seems if the IP change this is not working so every time I turn on the PC I have to login back on LHC.
Can be added an option to ignore the IP and let the remember me continue to work? Will this cause a less security on LHC?
With IPv6 and rolling privacy addresses this will become a much bigger problem too. When using SSL at least sessions really shouldn't be tied to IP addresses.
If not using SSL they probably should be tied to IP addresses at least optionally.
Hope this can be fixed. Now i do not have anymore internet connection with IP static so every time IP change the live chat require to login so i miss chat and notification. Can you please implement a fix to allow to stay connected also if IP change?
Hope this can be fixed soon.
// ==UserScript==
// @name LHC
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match *chatbot/index.php/site_admin/user/login*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var $ = window.jQuery;
$('[type="submit"]')[0].click();
// Your code here...
})();