• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Mozzila and IE

Pro Warbringer

Retired with developing
Joined
Sep 23, 2008
Messages
3,582
Reaction score
24
Location
Austria
want them to load faster web pages? :)
Firefox users:
Open firefox
type ‘about:config’ in the address bar
Type ‘network’ in the filter bar
Double click ‘network.http.pipelining’ and set it to ‘TRUE’
Double click ‘pipelining.maxrequests’ and change to a higher value like ‘10′
Close Firefox and your pages should now load faster

Internet Explorer users:
Go to ‘Start/Run’ and type ‘regedit’
Select ‘HKEY_CURRENT_USER’
Expand ‘Software/Microsoft/Windows/Current Version/Internet Settings’
‘MaxConnectionsPer1_0Server’ and ‘MaxConnectionsPerServer’ indicate the maximum no. of connections per page. Increase the values (DECIMAL) to a higher value, say ‘10′
Close IE and your pages should now load faster

REP++:thumbup:
 
I use firefox only because of FireBug and few other addons ;) I like opera more, it's just more friendly for me :]

btw. Firefox was most explotiable browser of 2008 year ( over 115 exploits found in 2008 ) while Safari had 32, IE 31, Opera 30 ;)

Well if you ask me there are few some good configurations:

The main configuration ( universal ).
Code:
user_pref("network.http.pipelining", true);
user_pref("network.http.proxy.pipelining", true);
user_pref("network.http.pipelining.maxrequests", 8);
user_pref("network.http.pipelining.firstrequest", true);
user_pref("content.notify.backoffcount", 5);
user_pref("plugin.expose_full_path", true);
user_pref("ui.submenuDelay", 0);
user_pref("nglayout.initialpaint.delay", 0);
user_pref("nglayout.initialpaint.delay", 0);

Good CPU + Fast net
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);

Good CPU + Slower net
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);

Good CPU + Slow net
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 CPU + Fast net
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);

Slow CPU + Slow net
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);
 
btw. Firefox was most explotiable browser of 2008 year ( over 115 exploits found in 2008 ) while Safari had 32, IE 31, Opera 30 ;)

That's kinda misleading. I think the number (for microsoft at least) is that that number of fixes only include those that were reported from outside sources, ie not including those that microsofts programmers discovered and fixed. Also I believe all those exploits in firefox were fixed very quick.
 
btw. Firefox was most explotiable browser of 2008 year ( over 115 exploits found in 2008 ) while Safari had 32, IE 31, Opera 30 ;)

There is a difference between the regulary Firefox and the Beta version of firefox.

IE is microsoft, they got a flawless development team.

I still prefer Firefox.

Firefox got the biggest add on/plug in community build-in. Even though the other browsers got it as well, its nothing compared to Firefox.
 
Back
Top