Αυτός ο ιστότοπος θα έχει περιορισμένη λειτουργικότητα, όσο εκτελούμε εργασίες συντήρησης για να βελτιώσουμε την εμπειρία σας. Αν ένα άρθρο δεν επιλύει το ζήτημά σας και θέλετε να κάνετε μια ερώτηση, η κοινότητα υποστήριξής μας είναι έτοιμη να σας βοηθήσει στο Twitter (@FirefoxSupport) και στο Reddit (/r/firefox).

Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Μάθετε περισσότερα

When FF30 restores a session it truncates each tab’s “back” history to the 10 most recent pages. What happened?

  • 3 απαντήσεις
  • 3 έχουν αυτό το πρόβλημα
  • 1 προβολή
  • Τελευταία απάντηση από cor-el

more options

Previously FF would save all the previously visited pages up to the max specified in about:config (usually 50), but not it limits the number of "back" links to 10 + the current page. Addons like Session Manager have also been affected as any new session saved includes only the 10 most recent visited links. With FF's propensity to crash this is a major issue for me losing my browsing history.

Previously FF would save all the previously visited pages up to the max specified in about:config (usually 50), but not it limits the number of "back" links to 10 + the current page. Addons like Session Manager have also been affected as any new session saved includes only the 10 most recent visited links. With FF's propensity to crash this is a major issue for me losing my browsing history.

Όλες οι απαντήσεις (3)

more options

Ten seems low to me, but I haven't tested.

Meanwhile, could you confirm that the per-tab history depth of 50 has not been lowered?

(1) In a new tab, type or paste about:config in the address bar and press Enter. Click the button promising to be careful.

(2) In the search box above the list, type or paste sess and pause while the list is filtered

(3) Scan down for the browser.sessionhistory.max_entries preference, which as you point out has a default value of 50.

(If you need to restore it to its original value, you can right-click > Reset it. Or you can double-click to enter a different value.)

more options

Okay, I see now. There are some new preferences that you will need to adjust.

(1) In a new tab, type or paste about:config in the address bar and press Enter. Click the button promising to be careful.

(2) In the search box that appears above the list, type or paste sess and pause while the list is filtered

(3) Double-click the browser.sessionstore.max_serialize_back preference (default=10) and enter the desired number of pages you want to be able to go Back in a restored tab. I haven't checked the source to see whether there is a limit.

(4) Double-click the browser.sessionstore.max_serialize_forward preference (default=-1) and enter the desired number of pages you want to be able to go Forward in a restored tab. I haven't checked the source to see whether there is a limit.

Note to self: Bug 943339

Τροποποιήθηκε στις από το χρήστη jscher2000 - Support Volunteer

more options

See also:

  • bug 943339 - [Session Restore] Cap the amount of history we save

  • resource:///defaults/preferences/firefox.js
// number of back button session history entries to restore (-1 = all of them)
pref("browser.sessionstore.max_serialize_back", 10);
// number of forward button session history entries to restore (-1 = all of them)
pref("browser.sessionstore.max_serialize_forward", -1);

Τροποποιήθηκε στις από το χρήστη cor-el