Winter's Roar site compatability with Firefox.

torke

Dalayan Beginner
Heyo. I prefer using Mozilla's Firefox over Microsoft's I.E. But when I go to www.wintersroar.com from my mozilla broswer, the news is from may 13 I think, and the server population doesnt show. Is the site not meant to be viewed with Firefox?
 
Woohaohaohawohwoahwo

Ahh. I think It was my custom theme. I do not know why, or if it was for certain. But now using the default one the site seems to be normal with Firefox. :)
 
my cookies got bugged w/ firefox a few days ago, they didnt update a wow msg board for over a week, finally i just deleted em and it works fine.
 
That's a terrible terrible tweak, it puts a really heavy strain on servers for no reason (tiny speed increase if any) and can get you auto-banned from some (hopefully :mad:), its effect is also detrimental to everyone elses browsing and i'd hate to see every WR forum goer trying to make 30 connections with the phpbb server as they browsed here if its still shared with the game :psyduck:

Edit: Here's some info from SA's SH/SC forum

Pipelining Tweaks
These usually take the form of telling you to adjust settings in the "network.http.pipelining..." tree. These are quite safe, but may cause problems with older web servers which do not understand pipelining properly. Pipelining works by sending requests simultaneously over a single connection - this avoids the delay incurred by the latency between you and the server. Traditionally, HTTP clients go:

REQUEST ->
<- RESPONSE
REQUEST ->
<- RESPONSE


Pipelining changes this to:

REQUEST REQUEST ->
<- RESPONSE RESPONSE


This is a good optimization/tweak to apply as it increases speed for both you and the web server.

Connection Tweaks
The "other" type of optimization commonly seen instructs you to alter the "network.http.max-persistent-connections-per-server", "network.http.max-connections-per-server" and other related settings. These are EXTREMELY DAMAGING "optimizations" to apply and should be avoided at all costs. These settings violate the HTTP protocol, which recommends a limit of 2 connections per server. When you increase it beyond that, a lot of bad things begin to happen:

The web server is often the hardest hit. The Apache web server maintains a number of "slots" which are processes lying around to handle requests as they come in. Since they usually come in at a steady rate, the server can create and destroy extra processes as needed to handle the load. When you and your "optimized" settings hit the server however, almost all of the slots that are idle are suddenly taken up by your browser. This forces the server to suddenly create a bunch of new processes to handle other traffic which is a CPU-intensive task. When you are done hogging up the slots, the server suddenly finds itself with way more processes than are needed for normal traffic, so it will kill off the extra ones.

What's worse is that since most tweaks involve such a high number of connections, once one element has been transferred, the connection is never used again. This forces the web server to hold all the connections in "keepalive" state as under normal circumstances, more than one request is sent per connection. TCP never gets a chance to automatically find the best RWIN for greatest speeds, load on routers between you and the server is increased thanks to all the extra packets... the whole basis of the HTTP/1.1 specification was to get away from the "one connection per element" days of HTTP/1.0, by applying these tweaks you are simply going back to the 1.0 days.

It's also worth pointing out that there exists an Apache module and netfilter settings that could cause your additional connections to be blocked from the server, resulting in very slow page load times, broken images and possibly even a complete IP ban for this "flooding" behaviour. Please, stick with pipelining and do not touch these settings. There is a very good reason why they are not the default.

If you have read and understood this entry thoroughly, you will notice that enabling pipelining will give you HIGHER performance than increasing the maximum number of connections! This is because with pipelining, even though there are only 2 connections to the target web server, you are still sending all your requests at once. Since you are re-using the same connection, TCP has a chance to tune the Receive Window, keep-alive is made useful and everyone is happy.
 
Back
Top Bottom