Results 1 to 5 of 5

Thread: Speed up Firefox

  1. #1
    hippychick's Avatar Memo, what memo? BT Rep: +5
    Join Date
    Dec 2003
    Location
    In a State Of Confusion
    Posts
    2,973
    I searched and cound't find this posted already.
    I found this on another site and its useful guide on speeding up firefox for broadband users. basically after getting to the hidden config settings you set the browser to request more data that it usually does.
    If someone else already posted this I swarry...


    1.Type “about:config” into the address bar and hit return. Scroll down and look for the following entries:

    network.http.pipelining network.http.proxy.pipelining network.http.pipelining.maxrequests

    Normally the browser will make one request to a web page at a time. When you enable pipelining it will make several at once, which really speeds up page loading.

    2. Alter the entries as follows:

    Set “network.http.pipelining” to “true”

    Set “network.http.proxy.pipelining” to “true”

    Set “network.http.pipelining.maxrequests” to some number like 30. This means it will make 30 requests at once.

    3. Lastly right-click anywhere and select New-> Integer. Name it “nglayout.initialpaint.delay” and set its value to “0”. This value is the amount of time the browser waits before it acts on information it receives.

    browser.turbo.enabled True

    If you’re using a broadband connection you’ll load pages MUCH faster now!

  2. Software & Hardware   -   #2
    Filliz's Avatar ______________
    Join Date
    Apr 2004
    Age
    43
    Posts
    1,468
    It's been posted a couple of times before.
    And it really does speed up firefox

    hmm...asspie

  3. Software & Hardware   -   #3
    tesco's Avatar woowoo
    Join Date
    Aug 2003
    Location
    Canadia
    Posts
    21,669
    Yep works great.

    and ya this has been posted a few times before, but always good to keep spreading it around.

  4. Software & Hardware   -   #4
    Poster
    Join Date
    Jan 2003
    Location
    Belle Vernon, PA, USA
    Posts
    638
    I don't know why people keep telling others to use 'about:config'. That's a bigger hassle than it needs to be...

    Just create a file called 'user.js' in the following folder:
    ..\Documents and Settings\<user>\Application Data\Mozilla\Firefox\Profiles\<random>.default
    ...and place this inside of it:

    user_pref("network.http.pipelining", true);
    user_pref("network.http.proxy.pipelining", true);
    user_pref("network.http.pipelining.maxrequests", 30);
    user_pref("nglayout.initialpaint.delay", 0);
    user_pref("browser.turbo.enabled", true);
    So much easier.

    Personally, though, I prefer these settings:
    user_pref("network.http.max-connections", 40);
    user_pref("network.http.max-connections-per-server", 16);
    user_pref("network.http.max-persistent-connections-per-server", 16);
    user_pref("network.http.max-persistent-connections-per-proxy", 16);

    // Enable HTTP pipelining
    user_pref("network.http.pipelining", true);
    user_pref("network.http.proxy.pipelining", true);
    user_pref("network.http.pipelining.maxrequests", 8);
    Besides... read the comments here. Apparently the 'network.http.pipelining.maxrequests' is limitted to 8, so setting it to 30 is utterly useless. Setting 'nglayout.initialpaint.delay' to 0 can also create longer page loads on slower computers or connections.

    Also, read this.
    Last edited by Cl1mh4224rd; 01-22-2005 at 10:08 AM.

  5. Software & Hardware   -   #5
    Retired
    Join Date
    Feb 2003
    Posts
    12,488
    has been posted before

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
  •