Never been to TextSnippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)

About this user

Jamie Wilkinson http://tramchase.com

« Newer Snippets
Older Snippets »
3 total  XML / RSS feed 

Increase the number of simultaneous XmlHttpRequests in Firefox

Firefox doesn't do a lot of simultaneous AJAX (or any kind of HTTP) requests. IE caps it at 2, too. This will allow you to test your XHR overload scripts, or just load pages faster in general.

1. Go to "about:config"
2. Find and edit the following
* network.http.pipelining=false
* network.http.pipelining.maxrequests=4
* network.http.proxy.pipeline=false
3. Make the false's true; I set my maxrequests at 20

Fix Firefox search engine ordering

1. Type about:config at your Firefox address bar.
2. Type browser.search.order at the filter bar.
3. Change browser.search.order.1 to Google.

The new del.icio.us extension broke my search engine order... cheeky plugin placed itself #1

Getting rid of 'port has been disabled for security reasons' in Firefox

1. Type about:config at your Firefox address bar.
2. Right click -> Select 'New String' -> Type network.security.ports.banned.override
3. Enter your ports

I allow port 113 for various sundry firewall-related reasons

More info see: http://www.mozilla.org/projects/netlib/PortBanning.html
« Newer Snippets
Older Snippets »
3 total  XML / RSS feed