Difference between revisions of "Firefox permission reset for a particular site"

From Notes_Wiki
(Created page with "<yambe:breadcrumb>Firefox|Firefox</yambe:breadcrumb> =Firefox permission reset for a particular site= Firefox plugins (eg flash plugin) may store preferences for a particular...")
 
m
 
Line 1: Line 1:
<yambe:breadcrumb>Firefox|Firefox</yambe:breadcrumb>
[[Main Page|Home]] > [[CentOS]] > [[CentOS 6.x]] > [[Desktop tools]] > [[Firefox]] > [[Firefox permission reset for a particular site]]
=Firefox permission reset for a particular site=


Firefox plugins (eg flash plugin) may store preferences for a particular site permanently.  To reset such stored permissions use:
Firefox plugins (eg flash plugin) may store preferences for a particular site permanently.  To reset such stored permissions use:
Line 10: Line 9:
# delete from moz_hosts where id=<first-col-value>;
# delete from moz_hosts where id=<first-col-value>;
# .quit
# .quit
[[Main Page|Home]] > [[CentOS]] > [[CentOS 6.x]] > [[Desktop tools]] > [[Firefox]] > [[Firefox permission reset for a particular site]]

Latest revision as of 13:30, 24 August 2022

Home > CentOS > CentOS 6.x > Desktop tools > Firefox > Firefox permission reset for a particular site

Firefox plugins (eg flash plugin) may store preferences for a particular site permanently. To reset such stored permissions use:

  1. cd ~/.mozilla
  2. cat profiles.ini
  3. cd <default-profile-folder>
  4. sqlite3 permissions.sqlite
  5. select * from moz_hosts where lower(host) like '%<site>%';
  6. delete from moz_hosts where id=<first-col-value>;
  7. .quit


Home > CentOS > CentOS 6.x > Desktop tools > Firefox > Firefox permission reset for a particular site