Page 1 of 5 123 ... LastLast
Results 1 to 10 of 42

Thread: HOWTO: Speed up Firefox II

  1. #1
    Join Date
    Apr 2006
    Location
    Too far away
    Beans
    8
    Distro
    Ubuntu 6.10 Edgy

    HOWTO: Speed up Firefox II

    You can speed up your Firefox browser by doing the following:

    Code:
    cd ~/.mozilla/firefox/*.default/
    Code:
    gedit user.js
    Everyone should put there:

    Code:
    user_pref("network.http.pipelining", true);
    user_pref("network.http.proxy.pipelining", true);
    user_pref("network.http.pipelining.maxrequests", 8);
    user_pref("content.notify.backoffcount", 5);
    user_pref("plugin.expose_full_path", true);
    user_pref("ui.submenuDelay", 0);
    and after that one of the following depending on your computer and your connection:

    FAST COMPUTER, FAST CONNECTION

    Code:
    user_pref("content.interrupt.parsing", true);
    user_pref("content.max.tokenizing.time", 2250000);
    user_pref("content.notify.interval", 750000);
    user_pref("content.notify.ontimer", true);
    user_pref("content.switch.threshold", 750000);
    user_pref("nglayout.initialpaint.delay", 0);
    user_pref("network.http.max-connections", 48);
    user_pref("network.http.max-connections-per-server", 16);
    user_pref("network.http.max-persistent-connections-per-proxy", 16);
    user_pref("network.http.max-persistent-connections-per-server", 8);
    user_pref("browser.cache.memory.capacity", 65536);
    FAST COMPUTER, SLOWER CONNECTION

    Code:
    user_pref("content.max.tokenizing.time", 2250000);
    user_pref("content.notify.interval", 750000);
    user_pref("content.notify.ontimer", true);
    user_pref("content.switch.threshold", 750000);
    user_pref("network.http.max-connections", 48);
    user_pref("network.http.max-connections-per-server", 16);
    user_pref("network.http.max-persistent-connections-per-proxy", 16);
    user_pref("network.http.max-persistent-connections-per-server", 8);
    user_pref("nglayout.initialpaint.delay", 0);
    user_pref("browser.cache.memory.capacity", 65536);
    FAST COMPUTER, SLOW CONNECTION

    Code:
    user_pref("browser.xul.error_pages.enabled", true);
    user_pref("content.interrupt.parsing", true);
    user_pref("content.max.tokenizing.time", 3000000);
    user_pref("content.maxtextrun" 8191);
    user_pref("content.notify.interval", 750000);
    user_pref("content.notify.ontimer", true);
    user_pref("content.switch.threshold", 750000);
    user_pref("network.http.max-connections", 32);
    user_pref("network.http.max-connections-per-server", 8);
    user_pref("network.http.max-persistent-connections-per-proxy", 8);
    user_pref("network.http.max-persistent-connections-per-server", 4);
    user_pref("nglayout.initialpaint.delay", 0);
    user_pref("browser.cache.memory.capacity", 65536);
    SLOW COMPUTER, FAST CONNECTION

    Code:
    user_pref("content.max.tokenizing.time", 3000000);
    user_pref("content.notify.backoffcount", 5);
    user_pref("content.notify.interval", 1000000);
    user_pref("content.notify.ontimer", true);
    user_pref("content.switch.threshold", 1000000);
    user_pref("content.maxtextrun", 4095);
    user_pref("nglayout.initialpaint.delay", 1000);
    user_pref("network.http.max-connections", 48);
    user_pref("network.http.max-connections-per-server", 16);
    user_pref("network.http.max-persistent-connections-per-proxy", 16);
    user_pref("network.http.max-persistent-connections-per-server", 8);
    user_pref("dom.disable_window_status_change", true);
    DIAL-UP

    Code:
    user_pref("content.max.tokenizing.time", 2250000);
    user_pref("content.notify.interval", 750000);
    user_pref("content.notify.ontimer", true);
    user_pref("content.switch.threshold", 750000);
    user_pref("nglayout.initialpaint.delay", 750);
    user_pref("network.http.max-connections", 32);
    user_pref("network.http.max-connections-per-server", 8);
    user_pref("network.http.max-persistent-connections-per-proxy", 8);
    user_pref("network.http.max-persistent-connections-per-server", 4);
    user_pref("dom.disable_window_status_change", true);
    From: http://www.tweakfactor.com/articles/...oxtweak/4.html
    Last edited by Pjotor; October 30th, 2006 at 12:30 PM. Reason: typo

  2. #2
    Join Date
    Mar 2006
    Location
    Maine
    Beans
    360

    Re: HOWTO: Speed up Firefox II

    sounds Identical to faster fox of winows

  3. #3
    Join Date
    Sep 2005
    Location
    Cleveland, Ohio
    Beans
    346
    Distro
    Ubuntu 6.06

    Re: HOWTO: Speed up Firefox II

    exactly what i was thinking. that extension is often overlooked.
    Simply the KING

  4. #4
    Join Date
    Jun 2006
    Beans
    25

    Re: HOWTO: Speed up Firefox II

    Minor correction.

    Shouldn't there be a starting double quotes in line 7 of the

    FAST COMPUTER, FAST CONNECTION

    So it should read

    user_pref("content.interrupt.parsing", true);
    user_pref("content.max.tokenizing.time", 2250000);
    user_pref("content.notify.interval", 750000);
    user_pref("content.notify.ontimer", true);
    user_pref("content.switch.threshold", 750000);
    user_pref("nglayout.initialpaint.delay", 0);
    user_pref("network.http.max-connections", 48);
    user_pref("network.http.max-connections-per-server", 16);
    user_pref("network.http.max-persistent-connections-per-proxy", 16);
    user_pref("network.http.max-persistent-connections-per-server", 8);
    user_pref("browser.cache.memory.capacity", 65536);



    Correct?

  5. #5
    Join Date
    Oct 2005
    Location
    London
    Beans
    305

    Re: HOWTO: Speed up Firefox II

    Most of these settings are available in FasterFox, and many of them are irresponsible and cause excess traffic on websites, thus pushing up bandwidth bills. Re-posting this by telling people to edit user.js instead of the usual about:config doesn't change how old and bad these 'improvements' are.

  6. #6
    Join Date
    May 2006
    Location
    SoCal
    Beans
    27
    Distro
    Ubuntu Mate

    Re: HOWTO: Speed up Firefox II

    Not sure if i'm the only one, but doing those changes actually slowed down firefox for me.

  7. #7
    Join Date
    Feb 2006
    Location
    australia
    Beans
    147
    Distro
    Ubuntu 6.10 Edgy

    Re: HOWTO: Speed up Firefox II

    I think it would be nice if you would provide more detailed info about the connection speed these mods are optimized for.

    For example, I have 512KB broadband. I know it's not a slow connection, but does it count as a fast connection or a slower connection?

    much appreciated.

  8. #8
    Join Date
    Jun 2006
    Beans
    6

    Re: HOWTO: Speed up Firefox II

    How about just typing "about:config" in the address bar?

    I know I've done this in other distro's.

  9. #9
    Join Date
    Jan 2006
    Beans
    1,113
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    Re: HOWTO: Speed up Firefox II

    Quote Originally Posted by dr_d
    I think it would be nice if you would provide more detailed info about the connection speed these mods are optimized for.

    For example, I have 512KB broadband. I know it's not a slow connection, but does it count as a fast connection or a slower connection?

    much appreciated.
    I would think that it would be a faster connection. That's just my optinion since it generally is a fairly fast connection and slow connections means dial-uo or isdn.

  10. #10
    Join Date
    May 2006
    Location
    The Netherlands
    Beans
    395
    Distro
    Ubuntu Development Release

    Re: HOWTO: Speed up Firefox II

    Thx for the info is there a big diffrence in using fasterfox?

    also i thing this is wrong
    Code:
    gedit user.js
    it should be
    Code:
    gedit prefs.js
    Thx again 8)

    Ps this is wrong info prefs.js gets overwriten i have made a new file called user.js and used it
    Last edited by TuxCrafter; July 20th, 2006 at 02:20 PM. Reason: I was wrong :-D

Page 1 of 5 123 ... LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •