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

Recalling a page from History erases the old history date. Any way to retain that older history entry along with the current one?

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

more options

Example. I visited the Wikipedia ten days ago to learn about e.g. the Lorentz force. Today I want to recall, and return to, the same page. I open History on Firefox, select the past (i.e. current) month, and scroll down until I see the Wikipedia entry. If I double click on it, the remembered page will display under the current browser tab. However, that old history entry disappears! Only the new present day history entry for that web page now exists. It is often useful to recall what sequence of web pages was visited in the past, and what pages were visited successively around some past time. If the old history could be retained, that would be useful. Is there a setting that will ensure this behavior?

Example. I visited the Wikipedia ten days ago to learn about e.g. the Lorentz force. Today I want to recall, and return to, the same page. I open History on Firefox, select the past (i.e. current) month, and scroll down until I see the Wikipedia entry. If I double click on it, the remembered page will display under the current browser tab. However, that old history entry disappears! Only the new present day history entry for that web page now exists. It is often useful to recall what sequence of web pages was visited in the past, and what pages were visited successively around some past time. If the old history could be retained, that would be useful. Is there a setting that will ensure this behavior?

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

more options

I don't think there is any built-in way to do this. The Library dialog will always show only the latest visit date.

The places.sqlite database certainly retains much more information, but it is inconvenient to query. You can run custom searches using the SQLite Manager extension (screen shot example attached), but this is quite inconvenient.

There might be other add-ons that extend Firefox's history feature. When I searched, most seemed to be for clearing history rather than researching it. You could take a further look, check reviews, and see whether any look useful: https://addons.mozilla.org/en-US/firefox/

P.S. The query in the attached screenshot:

SELECT url, title, datetime(visit_date/1000000,'unixepoch') AS visited
FROM moz_places INNER JOIN moz_historyvisits ON moz_historyvisits.place_id = moz_places.id
WHERE url LIKE '%jeffersonscher.com/res%'
ORDER BY url ASC, visited DESC

Được chỉnh sửa bởi jscher2000 - Support Volunteer vào

more options

You can create SQLite queries to show specific history entries.

This query shows the visits made in December:

place:beginTime=1385856000000000&endTime=1388534399000000&sort=4&type=1

All history items:

place:sort=4&type=1

You can create a bookmark with the location set to the place query.
You need to close and restart Firefox to make the query work properly.