View Single Post
Old Nov 29, 2005 | 03:39 PM
  #33  
clickwir's Avatar
clickwir
Floppy Death! noES!!!
 
Joined: Oct 2002
Posts: 21,218
Likes: 0
From: Scranton, PA
Default

Originally Posted by Anthony
feels slower....
Have you created and tweaked your user.js file?

Do you have a decently fast pc?

edit: Here's a copy of my user.js file. You can get instructions on how to make your user.js (if you haven't already) here: http://www.mozilla.org/support/firefox/edit#user
Only extra thing you need to do is create a folder called "firefoxcache" right in the root of your c: drive. It helps things out a bit.

Code:
user_pref("network.http.pipelining", true);
user_pref("network.http.proxy.pipelining", true);
user_pref("network.http.pipelining.maxrequests", 50);
user_pref("content.notify.backoffcount", 5);
user_pref("plugin.expose_full_path", true);
user_pref("ui.submenuDelay", 0); 
user_pref("content.interrupt.parsing", true);
user_pref("content.max.tokenizing.time", 2250000);
user_pref("content.notify.interval", 5000);
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); 
user_pref("browser.cache.disk.parent_directory","C:\\firefoxcache");

// Put an end to blinking text!
user_pref("browser.blink_allowed", false);

// Force frames to be resizable
user_pref("layout.frames.force_resizability", true);

// More DOM/JavaScript options  
// Make sure all pop-up windows are resizable: 
user_pref("dom.disable_window_open_feature.resizable", true);  
// Make sure all pop-up windows are minimizable: 
user_pref("dom.disable_window_open_feature.minimizable", true);  
// Always display the menu in pop-up windows: 
user_pref("dom.disable_window_open_feature.menubar", true);  
// Always display the Navigation Toolbar in pop-up windows: 
user_pref("dom.disable_window_open_feature.location", true);

// Find As You Type Configuration:
// Set this pref to false to disable Find As You Type:
user_pref("accessibility.typeaheadfind", true);
// If you set this pref to true, typing can automatically start Find As You Type.
// If false (default), you must hit / (find text) or ' (find links) before your search.
user_pref("accessibility.typeaheadfind.autostart", true);
// Set this pref to false if you want Find As You Type to search normal text too:
user_pref("accessibility.typeaheadfind.linksonly", false);
// Set this pref to true if you require that the link starts with the entered text:
user_pref("accessibility.typeaheadfind.startlinksonly", false);
// This is the time in milliseconds for the Find As You Type to stop watching for keystrokes:
user_pref("accessibility.typeaheadfind.timeout", 3000);
Reply