搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

how do I sort autofill data?

  • 3 回覆
  • 1 有這個問題
  • 19 次檢視
  • 最近回覆由 cor-el

more options

How do I get form data sorted properly. I have already done the browser.formfill.bucketsize = 999999999. However it still sorts "[email protected]" and "[email protected]" ahead of "[email protected]".

How do I get form data sorted properly. I have already done the browser.formfill.bucketsize = 999999999. However it still sorts "[email protected]" and "[email protected]" ahead of "[email protected]".

所有回覆 (3)

more options

You can try to do the sorting with the SQLite Manager extension.

  1. Open formhistory.sqlite (you may need to do this on a copy of the file)
  2. Hit the Execute SQL tab
  3. Drop the existing moz_formhistory_index and create a new moz_formhistory_index
drop index "main"."moz_formhistory_index";
CREATE INDEX moz_formhistory_index ON moz_formhistory (fieldname,value);

Use this for case insensitive sorting:

CREATE INDEX moz_formhistory_index ON moz_formhistory (fieldname,value COLLATE NOCASE);

more options

Where do I find formhistory.sqlite?

Never mind I found it. But I don't understand what I am supposed to do with it. I need an exact step by step instruction.

由 jdevlin 於 修改

more options

That is a file in the Firefox Profile Folder. SQLite Manager has a button (Select Profile Database) to open files in the Firefox Profile Folder.