DIY: How to speed up firefox. - 8th Generation Honda Civic Forum
8thCivic.com

Go Back   8th Generation Honda Civic Forum > Off Topic > Water Cooler

Reply
 
LinkBack (1) Thread Tools Display Modes
Old 12-06-2007, 09:41 AM   1 links from elsewhere to this Post. Click to view. #1 (permalink)
Member # 4524
 
GlxyGry06Si's Avatar
 
Join Date: May 2006
Age: 26
Posts: 9,758
DIY: How to speed up firefox.

Just found this and it is a night and day difference:

Useful guide on speeding up firefox for broadband users

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.

(the trick here is clicking the false word and it will change to true)


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.

If you're using a broadband connection you'll load pages MUCH faster now!
__________________
Quote:
Originally Posted by TheIncident88 View Post
Sometimes I actually wonder if you are serious or just ******* with me. If it's the latter, then well played sir. If not, then I shall return my palm to it's previous position upon my face.
GlxyGry06Si is offline  
Reply With Quote
Sponsored Links
Advertisement
 
Old 12-06-2007, 09:46 AM   #2 (permalink)
Senior Member
 
XSRCivic's Avatar
 
Join Date: Feb 2007
Location: Houma, LA
Posts: 2,861
m4tt
I think Firefox just gained 12 whp. Good tip, I notice a difference immediately. + Rep for you
XSRCivic is offline   Reply With Quote
Old 12-06-2007, 09:48 AM   #3 (permalink)
Tuna Fiddle
 
twistedframe's Avatar
 
Join Date: Jan 2006
Location: NoVA
Age: 26
Posts: 19,133
Dave
gonna try this when I get home! Thanks for the info!
__________________
twistedframe is offline   Reply With Quote
Old 12-06-2007, 11:27 AM   #4 (permalink)
Member
 
Join Date: Mar 2007
Location: Aurora, CO
Age: 44
Posts: 62
Very nice. Now if work would just upgrade our proxies, I'd be golden.

Have to try it at home too.
splatterson is offline   Reply With Quote
Old 12-06-2007, 11:35 AM   #5 (permalink)
Senior Member
 
Join Date: Sep 2007
Location: Detroit MI
Age: 28
Posts: 1,876
Holy F'ing...

You just made my Firefox hit VTAK, +rep
gx4th is offline   Reply With Quote
Old 12-06-2007, 11:38 AM   #6 (permalink)
Senior Member
 
Join Date: May 2006
Posts: 341
i got some boost site.... didnt say anything like u said to scroll down n look for maybe i missed it
2006BlackSi is offline   Reply With Quote
Old 12-06-2007, 11:39 AM   #7 (permalink)
Senior Member
 
drunkrusski101's Avatar
 
Join Date: Jul 2007
Location: baltimore
Age: 22
Posts: 579
Anton
Hey man Thanks this works, + Rep for you
drunkrusski101 is offline   Reply With Quote
Old 12-06-2007, 11:40 AM   #8 (permalink)
ms3 fail.
 
vtak07's Avatar
 
Join Date: Jul 2007
Age: 22
Posts: 8,338
Jed
works great! +rep
vtak07 is offline   Reply With Quote
Old 12-06-2007, 12:16 PM   #9 (permalink)
Senior Member
 
chrisfrofro's Avatar
 
Join Date: Jul 2007
Location: College Station/Frisco, Texas
Posts: 5,809
Sun*Works
wow great find! works immediately

+1 REP to you sir
chrisfrofro is offline   Reply With Quote
Old 12-06-2007, 12:42 PM   #10 (permalink)


 
dentrecords's Avatar
 
Join Date: Apr 2006
Location: The Great White North
Age: 30
Posts: 141,754
Dent
your exact post in the comments section here, word for word....

Geek to Live: Top Firefox 2 config tweaks

Here's a more comprehensive guide:

Tweakfactor.com: Firefox Tweak Guide - Page 1 - Get your tweak on!

And some common configurations for different computers with different connections.

The Firefox Tweak Guide has the full details on how to speed up Firefox regardless of your connection or hardware, reprinted in part below. Don’t forget that the easiest way to tweak user files is with chromEdit extension.

Common to all configurations

These are the settings that seem to be common to all configuration files regardless of connection speed or computer speed with a couple of additions - plugin paths can be found with aboutlugins and the bookmark menu delay is turned off.

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);
Fast Computer Fast Connection

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);

A couple settings of note - Firefox is allocated 4096 KB of memory by default and in this configuration we give it roughly 65MB as denoted by the last line. This can be changed according to what is used.
Fast Computer, Slower Connection

This configuration is more suited to people without ultra fast connections. We are not talking about dial up connections but slower DSL / Cable connections.

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

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

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);

One of the changes made for this particular configuration is the final line where the status bar is disabled for changing web pages to save processor time.
Slow Computer, Slow Connection

We have entered the doldrums of the dial-up user

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);
__________________

Quote:
Originally Posted by GeezerSi View Post
stroke this
Quote:
Originally Posted by Sleepy View Post
I haz no bawlz

Last edited by dentrecords; 12-06-2007 at 06:57 PM.
dentrecords is offline   Reply With Quote
Old 12-06-2007, 12:47 PM   #11 (permalink)
Member # 4524
 
GlxyGry06Si's Avatar
 
Join Date: May 2006
Age: 26
Posts: 9,758


mine was a lot easier. jk
__________________
Quote:
Originally Posted by TheIncident88 View Post
Sometimes I actually wonder if you are serious or just ******* with me. If it's the latter, then well played sir. If not, then I shall return my palm to it's previous position upon my face.
GlxyGry06Si is offline   Reply With Quote
Old 12-06-2007, 12:49 PM   #12 (permalink)
Senior Member
 
06si's Avatar
 
Join Date: Feb 2006
Location: South Florida
Age: 26
Posts: 4,649
Kenny G
you must spread some reputation around before giving it to GlxyGry06Si again
06si is offline   Reply With Quote
Old 12-06-2007, 01:08 PM   #13 (permalink)
Senior Member
 
Duce2k's Avatar
 
Join Date: Apr 2007
Location: Houston, TX
Posts: 3,134
Gotta try this when I get home
Duce2k is offline   Reply With Quote
Old 12-06-2007, 01:23 PM   #14 (permalink)
Member # 4524
 
GlxyGry06Si's Avatar
 
Join Date: May 2006
Age: 26
Posts: 9,758
Quote:
Originally Posted by Duce2k View Post
Gotta try this when I get home
let me know how it works. i had great results with mine and apparantly so did a lot others.



__________________
Quote:
Originally Posted by TheIncident88 View Post
Sometimes I actually wonder if you are serious or just ******* with me. If it's the latter, then well played sir. If not, then I shall return my palm to it's previous position upon my face.
GlxyGry06Si is offline   Reply With Quote
Old 12-06-2007, 02:54 PM   #15 (permalink)
Senior Member
 
jerhunter's Avatar
 
Join Date: Oct 2007
Location: Abilene, Texas
Age: 29
Posts: 3,046
Jeremiah
it definitely works, but now i just have issues loading images.....seems to be taking longer
jerhunter is offline   Reply With Quote
Old 12-06-2007, 02:58 PM   #16 (permalink)
Member
 
wwbaker3's Avatar
 
Join Date: Jun 2007
Location: Mill Creek, WA
Posts: 73
Bill
my mac's handling of firefox was pretty fast already...so i didn't see much of an increase in speed - if any.

nonetheless, i'm glad it's working out for other users out there.
wwbaker3 is offline   Reply With Quote
Old 12-06-2007, 02:59 PM   #17 (permalink)
Senior Member
 
foolio_67's Avatar
 
Join Date: Aug 2006
Location: Kamloops
Posts: 1,009
I see some difference, thank you!
foolio_67 is offline   Reply With Quote
Old 12-06-2007, 03:01 PM   #18 (permalink)
Member # 4524
 
GlxyGry06Si's Avatar
 
Join Date: May 2006
Age: 26
Posts: 9,758
Quote:
Originally Posted by jerhunter View Post
it definitely works, but now i just have issues loading images.....seems to be taking longer
mine seemed about the same.

Quote:
Originally Posted by wwbaker3 View Post
my mac's handling of firefox was pretty fast already...so i didn't see much of an increase in speed - if any.

nonetheless, i'm glad it's working out for other users out there.
same here. just subtle differences.

Quote:
Originally Posted by foolio_67 View Post
I see some difference, thank you!
welcome.
__________________
Quote:
Originally Posted by TheIncident88 View Post
Sometimes I actually wonder if you are serious or just ******* with me. If it's the latter, then well played sir. If not, then I shall return my palm to it's previous position upon my face.
GlxyGry06Si is offline   Reply With Quote
Old 12-06-2007, 03:06 PM   #19 (permalink)
Member
 
wwbaker3's Avatar
 
Join Date: Jun 2007
Location: Mill Creek, WA
Posts: 73
Bill
Safari (mac browser) sucks btw, hahaha, but I guess that goes without saying.
wwbaker3 is offline   Reply With Quote
Old 12-06-2007, 05:00 PM   #20 (permalink)
Member # 4524
 
GlxyGry06Si's Avatar
 
Join Date: May 2006
Age: 26
Posts: 9,758
Quote:
Originally Posted by wwbaker3 View Post
Safari (mac browser) sucks btw, hahaha, but I guess that goes without saying.
what?
__________________
Quote:
Originally Posted by TheIncident88 View Post
Sometimes I actually wonder if you are serious or just ******* with me. If it's the latter, then well played sir. If not, then I shall return my palm to it's previous position upon my face.
GlxyGry06Si is offline   Reply With Quote
Sponsored Links
Advertisement
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


LinkBacks (?)
LinkBack to this Thread: http://www.8thcivic.com/forums/water-cooler/68134-diy-how-speed-up-firefox.html
Posted By For Type Date
Yet another Firefox update - Bad Astronomy and Universe Today Forum This thread Refback 12-08-2007 08:24 AM

Similar Threads
Thread Thread Starter Forum Replies Last Post
Si a little "twitchy" at high speed?? JerrfyLube Civic SI 96 12-21-2007 02:46 AM
World's fastest car in top speed NitrousG35 Garage 21 11-05-2007 06:37 PM
Speeding Tickets RealDeal Dealership Experience 64 01-04-2007 01:11 PM
Honda Racing F1 team sets new Bonneville speed records marc-o-lishuz Garage 0 08-11-2006 12:28 AM


All times are GMT -4. The time now is 12:55 AM.



Powered by vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.3.2
Garage Plus vBulletin Plugins by Drive Thru Online, Inc.
copyright 8thcivic.com - all rights reserved