Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

Address bar autocomplete does not work

  • 1 trả lời
  • 2 gặp vấn đề này
  • 8 lượt xem
  • Trả lời mới nhất được viết bởi aspis

more options

This is not a new phenomenon, neither is the thread. But I have not found in here a real solution. I mean they all suggest to delete all the "places" files from FF profile, restart in Safe mode etc. I have enough of this. I have done it in the past and I do it again and it doesn't solve the problem. That's why I am here with the same issue, actually **UNSOLVED**

I give you an example proving that the problem is idependent of "places":

1) I type 'ishow.gr' in the Address bar 2) I enter the site 3) I go back to the previous page 4) I start typing 'is..." 5) No autocomplete

It's as simple as that. And this did not happen in the past (before Firefox Quantum).

This is not a new phenomenon, neither is the thread. But I have not found in here a real solution. I mean they all suggest to delete all the "places" files from FF profile, restart in Safe mode etc. I have enough of this. I have done it in the past and I do it again and it doesn't solve the problem. That's why I am here with the same issue, actually **UNSOLVED** I give you an example proving that the problem is idependent of "places": 1) I type 'ishow.gr' in the Address bar 2) I enter the site 3) I go back to the previous page 4) I start typing 'is..." 5) No autocomplete It's as simple as that. And this did not happen in the past (before Firefox Quantum).

Giải pháp được chọn

Finally, I had to manually patch places.sqlite, using Python sqlite3 (for lack of a decent SQLITE editor), to make autocomplete work. The first thing I observed when I was able to read the DB, was that the column "typed" in "moz_hosts" table carried '0' for all records! And I have been typing a lot of them regularly every day! So, I changed the "typed" flag of my regular "hosts" to '1' in places.sqlite and on the next run, what do you know? Problem fixed! Everyone of them was autocompleted by typing just the 1-2 letters, i.e. as expected.

Now that I could control places.sqlite, I did a test by typing a couple of URLs at the address bar and then examining the updated places.sqlite: the new URLs were recorded alright, but the value of "type" column for them was always '0' !!! How could then autocompletion work?

So, the "no-autocompletion bug" becomes more specific:

       * Firefox does not record typed URLs as such *

I wish FF developers pass from here to read this (although I doubt ...)

Đọc câu trả lời này trong ngữ cảnh 👍 0

Tất cả các câu trả lời (1)

more options

Giải pháp được chọn

Finally, I had to manually patch places.sqlite, using Python sqlite3 (for lack of a decent SQLITE editor), to make autocomplete work. The first thing I observed when I was able to read the DB, was that the column "typed" in "moz_hosts" table carried '0' for all records! And I have been typing a lot of them regularly every day! So, I changed the "typed" flag of my regular "hosts" to '1' in places.sqlite and on the next run, what do you know? Problem fixed! Everyone of them was autocompleted by typing just the 1-2 letters, i.e. as expected.

Now that I could control places.sqlite, I did a test by typing a couple of URLs at the address bar and then examining the updated places.sqlite: the new URLs were recorded alright, but the value of "type" column for them was always '0' !!! How could then autocompletion work?

So, the "no-autocompletion bug" becomes more specific:

       * Firefox does not record typed URLs as such *

I wish FF developers pass from here to read this (although I doubt ...)