Active Topics

 


Reply
Thread Tools
NightShift79's Avatar
Posts: 417 | Thanked: 200 times | Joined on Apr 2010 @ Germany
#11
Originally Posted by hutchinsfairy View Post
Remove all "never sites"
[LIST=1][*]Launch sqlite3
Code:
$ sqlite3 /home/user/.mozilla/microb/signons.sqlite
[*]Search for entry
To delete all "Never Remember" sites skip to next step
Code:
SELECT * FROM moz_disabledHosts WHERE hostname LIKE '%URL%';
Where URL is part of the website for which you hit "Never Remember".
If you don't have many "Never" sites you could just try:
Code:
SELECT * FROM moz_disabledHosts;
[*]Delete entry
Once you have managed to limit your search results to only the URL you want (or all of them if you want to delete all "Never" sites) replace "SELECT *" with "DELETE":
e.g.
Code:
DELETE FROM moz_disabledHosts WHERE hostname LIKE '%URL%';
OR
Code:
DELETE FROM moz_disabledHosts
[*]Quite sqlite3
Code:
.quit
[/LIST
Which there would be a microb password app.
 
Reply


 
Forum Jump


All times are GMT. The time now is 09:11.