Difference between revisions of "Make firefox stop trying to force https for a site"

From HeepyWiki
Jump to navigation Jump to search
(Created page with "Recent builds of firefox, if they have ever seen https on a particular hostname, will refuse to ever again load http from that hostname, even if the name moves to a different ...")
 
(No difference)

Latest revision as of 22:26, 16 July 2015

Recent builds of firefox, if they have ever seen https on a particular hostname, will refuse to ever again load http from that hostname, even if the name moves to a different server or owner or whatever. If it does this, the only way to fix it is to manually remove entries for that host from a private sqlite db it keeps.

$ sqlite3 /home/.mozilla/forefox/BLABLABLA.default/permissions.sqlite
sqlite> delete from moz_hosts where host = "hostname.com";
sqlite3> quit
$