Make firefox stop trying to force https for a site

From HeepyWiki
Revision as of 22:26, 16 July 2015 by Morris (talk | contribs) (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 ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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
$