Menu
Home
Forums
New posts
Search forums
What's new
New posts
Latest activity
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Reply to thread
Click here to become an Official Member of BMW Club Malaysia
Download Form
Home
Forums
General Forums
Interesting Downloads
Mozilla Firefox
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Message
<blockquote data-quote="zackertashia" data-source="post: 68613" data-attributes="member: 649"><p>The majority of the information comes from <a href="http://forums.mozillazine.org/viewtopic.php?t=53650&postdays=0&postorder=asc&postsperpage=15&start=0" target="_blank">this excellent thread</a> over at the MozillaZine Forum.</p><p></p><p>First, install <a href="http://www.extensionsmirror.nl/index.php?showtopic=21" target="_blank">Chromedit</a> extension. It make it easier to edit user files.</p><p></p><p>Now, run Firefox, go to Tools > Edit User Files, click user.js tab.</p><p></p><p></p><p>Insert the following texts based on your PC speed and internet connection.</p><p></p><p>Common to all configurations</p><p></p><p>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 about<img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="smilie smilie--sprite smilie--sprite7" alt=":p" title="Stick Out Tongue :p" loading="lazy" data-shortname=":p" />lugins and the bookmark menu delay is turned off.</p><p>[code]</p><p>user_pref("network.http.pipelining", true);</p><p>user_pref("network.http.proxy.pipelining", true);</p><p>user_pref("network.http.pipelining.maxrequests", 8);</p><p>user_pref("content.notify.backoffcount", 5);</p><p>user_pref("plugin.expose_full_path", true);</p><p>user_pref("ui.submenuDelay", 0);</p><p>[/code]</p><p></p><p>Fast Computer Fast Connection</p><p>[code]</p><p>user_pref("content.interrupt.parsing", true);</p><p>user_pref("content.max.tokenizing.time", 2250000);</p><p>user_pref("content.notify.interval", 750000);</p><p>user_pref("content.notify.ontimer", true);</p><p>user_pref("content.switch.threshold", 750000);</p><p>user_pref("nglayout.initialpaint.delay", 0);</p><p>user_pref("network.http.max-connections", 48);</p><p>user_pref("network.http.max-connections-per-server", 16);</p><p>user_pref("network.http.max-persistent-connections-per-proxy", 16);</p><p>user_pref("network.http.max-persistent-connections-per-server", 8);</p><p>user_pref("browser.cache.memory.capacity", 65536);</p><p>[/code]</p><p></p><p>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.</p><p></p><p>Fast Computer, Slower Connection</p><p></p><p>This configuration is more suited to people without ultra fast connections. We are not talking about dial up connections but slower DSL / Cable connections.</p><p>[code]</p><p>user_pref("content.max.tokenizing.time", 2250000);</p><p>user_pref("content.notify.interval", 750000);</p><p>user_pref("content.notify.ontimer", true);</p><p>user_pref("content.switch.threshold", 750000);</p><p>user_pref("network.http.max-connections", 48);</p><p>user_pref("network.http.max-connections-per-server", 16);</p><p>user_pref("network.http.max-persistent-connections-per-proxy", 16);</p><p>user_pref("network.http.max-persistent-connections-per-server", 8);</p><p>user_pref("nglayout.initialpaint.delay", 0);</p><p>user_pref("browser.cache.memory.capacity", 65536);</p><p>[/code]</p><p></p><p>Fast Computer, Slow Connection</p><p>[code]</p><p>user_pref("browser.xul.error_pages.enabled", true);</p><p>user_pref("content.interrupt.parsing", true);</p><p>user_pref("content.max.tokenizing.time", 3000000);</p><p>user_pref("content.maxtextrun", 8191);</p><p>user_pref("content.notify.interval", 750000);</p><p>user_pref("content.notify.ontimer", true);</p><p>user_pref("content.switch.threshold", 750000);</p><p>user_pref("network.http.max-connections", 32);</p><p>user_pref("network.http.max-connections-per-server", 8);</p><p>user_pref("network.http.max-persistent-connections-per-proxy", 8);</p><p>user_pref("network.http.max-persistent-connections-per-server", 4);</p><p>user_pref("nglayout.initialpaint.delay", 0);</p><p>user_pref("browser.cache.memory.capacity", 65536);</p><p>[/code]</p><p></p><p>Slow Computer, Fast Connection</p><p>[code]</p><p>user_pref("content.max.tokenizing.time", 3000000);</p><p>user_pref("content.notify.backoffcount", 5);</p><p>user_pref("content.notify.interval", 1000000);</p><p>user_pref("content.notify.ontimer", true);</p><p>user_pref("content.switch.threshold", 1000000);</p><p>user_pref("content.maxtextrun", 4095);</p><p>user_pref("nglayout.initialpaint.delay", 1000);</p><p>user_pref("network.http.max-connections", 48);</p><p>user_pref("network.http.max-connections-per-server", 16);</p><p>user_pref("network.http.max-persistent-connections-per-proxy", 16);</p><p>user_pref("network.http.max-persistent-connections-per-server", 8);</p><p>user_pref("dom.disable_window_status_change", true);</p><p>[/code]</p><p></p><p>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.</p><p></p><p>Slow Computer, Slow Connection</p><p></p><p>We have entered the doldrums of the dial-up user</p><p></p><p>[code]</p><p>user_pref("content.max.tokenizing.time", 2250000);</p><p>user_pref("content.notify.interval", 750000);</p><p>user_pref("content.notify.ontimer", true);</p><p>user_pref("content.switch.threshold", 750000);</p><p>user_pref("nglayout.initialpaint.delay", 750);</p><p>user_pref("network.http.max-connections", 32);</p><p>user_pref("network.http.max-connections-per-server", 8);</p><p>user_pref("network.http.max-persistent-connections-per-proxy", 8);</p><p>user_pref("network.http.max-persistent-connections-per-server", 4);</p><p>user_pref("dom.disable_window_status_change", true);</p><p>[/code]</p><p></p><p>Click Save and restart Firefox</p><p></p><p>Happy surfing..</p><p></p><p>-------------------------------------------------------</p><p></p><p>another speed tweak..</p><p></p><p>Open Firefox.. type about:config</p><p></p><p>look for network.dns.disableIPv6</p><p></p><p>Double click to toggle it to 'true' and then restart Firefox. You should notice a speed increase, page to page.</p><p></p><p>This tweak disabe IPv6 in Firefox, because most if not all of the web is still using IPv4. IPv4 and v6 are internet protocols... how the data is transferred... v4 is the standard now and v6 is slowly being implemented around the world... it wont come into full swing until 2008-2010 sadly... it's a huge infrastructure change, but the benefits will be great.</p><p></p><p><a href="http://www.neowin.net/forum/index.php?showtopic=243929" target="_blank">Source</a></p></blockquote><p></p>
[QUOTE="zackertashia, post: 68613, member: 649"] The majority of the information comes from [url=http://forums.mozillazine.org/viewtopic.php?t=53650&postdays=0&postorder=asc&postsperpage=15&start=0]this excellent thread[/url] over at the MozillaZine Forum. First, install [url=http://www.extensionsmirror.nl/index.php?showtopic=21]Chromedit[/url] extension. It make it easier to edit user files. Now, run Firefox, go to Tools > Edit User Files, click user.js tab. Insert the following texts based on your PC speed and internet connection. 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 about:plugins and the bookmark menu delay is turned off. [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); [/code] 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); [/code] 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. [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); [/code] 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); [/code] 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); [/code] 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 [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); [/code] Click Save and restart Firefox Happy surfing.. ------------------------------------------------------- another speed tweak.. Open Firefox.. type about:config look for network.dns.disableIPv6 Double click to toggle it to 'true' and then restart Firefox. You should notice a speed increase, page to page. This tweak disabe IPv6 in Firefox, because most if not all of the web is still using IPv4. IPv4 and v6 are internet protocols... how the data is transferred... v4 is the standard now and v6 is slowly being implemented around the world... it wont come into full swing until 2008-2010 sadly... it's a huge infrastructure change, but the benefits will be great. [url=http://www.neowin.net/forum/index.php?showtopic=243929]Source[/url] [/QUOTE]
Verification
Post reply
Home
Forums
General Forums
Interesting Downloads
Mozilla Firefox
Top
Bottom