Free £25 Bet!
Free £200 Bet - Register on Saturday or Sunday
Free £25 Bet!

In association with Sports-Punter Free Bets Odds Comparison BetHelp Limso

We are the Official Forum of FreeBetting.net & FCBet.com


Sports News Sports Stats Live Scores OddsChecker Place Bets Suggest a Site


Go Back   The Punters Lounge - The World's Best Betting Forum > General Discussion > Tech & Gaming Forum

Tech & Gaming Forum This is the place for all your technical related questions about computers, programs or whatever...

UK & Irish Football Forum | Western European Football Forum | UEFA Cup & Champions League Football Forum | International Football Forum | Eastern & Southern European Football Forum | Nordic & Scandinavian Football Forum | Non European Football Forum | At The Races Forum | At The Races Systems Forum | Other Sports Forum | USA Sports Forum | Fantasy & Fun Comps Forum | Free Bets Forum | Systems & Strategy Forum | Glory Hunter's Forum | Tipster's Challenge Forum | Daily Racing Comp Forum | Euro & Worldwide Comp Forum | Poker Tourneys Forum | Poker Strategy Forum | Poker Chat Forum | Poker Live Forum | Poker Challenges Forum | Poker Staking Forum | Poker Leagues Forum | Bookmakers & Exchanges Forum | Punter's Tools/Betting Help Forum | General Chat Forum | Tech & Gaming Forum | Sports Banter Forum | Live Sports Feeds Forum

Reply
 
Thread Tools Display Modes
Old 29-12-2004, 12:17   #21 (permalink)
ROTW Team Punter
 
cluelessG's Avatar
 
Join Date: 14 Aug 2002
Posts: 1,286
Default Re: Firefox Internet Browser

Thanks for speeding up my Firefox, Komp

If anyone has problems with pages designed for Internet Explorer, there's a nice IE View extension that adds "Open link target in IE" to the context menu in Firefox:
https://addons.update.mozilla.org/ex...id=35&vid=1179
cluelessG is offline   Reply With Quote
Old 29-12-2004, 13:28   #22 (permalink)
Banned
 
Join Date: 26 Oct 2004
Age: 38
Posts: 0
Default Re: Firefox Internet Browser

Cheers G, just went and got a load of extentions
kompressaur is offline   Reply With Quote
Old 29-12-2004, 19:59   #23 (permalink)
ROTW Team Punter
 
cluelessG's Avatar
 
Join Date: 14 Aug 2002
Posts: 1,286
Default Re: Firefox Internet Browser

While we're one the subject of tweaking Firefox - I found this interesting (and long) post:

Performance Settings - Firefox

One of the limitations of pretty much all computer applications is the need to target for a general audience because of the wide array of computer components and varied network infrastructure. This is where tweaking comes in. Firefox by default is aimed at a general audience too and hopefully we can tune it more to the needs of the individual. The majority of the information comes from this excellent thread over at the MozillaZine Forum. The first post in particular goes through in great detail what each of the settings do. The thread however gets fairly long and convoluted and we attempt to summarize the contents of this thread along with a couple other sources into something that is easier to digest. As with the settings on the previous page, the contents are copied into the user.js file. We do not go into major detail about the setting as the thread goes into detailed explanations of what the settings mean in the first post. Instead, the configurations are culled from the thread of what people have reported to have worked for them along with some modifications on our end.

Quick and Dirty Settings

user_pref("network.http.pipelining", true);
user_pref("network.http.pipelining.firstrequest", true);
user_pref("network.http.pipelining.maxrequests", 8 );
user_pref("nglayout.initialpaint.delay", 0);

These were some settings I ran across sometime ago. Pipelining does multiple data requests at once and should speed things up. I believe IE did this before and this was partially attributable to the speed advantage that IE had over older versions of Mozilla/Netscape. Initial Paint Delay actually slows down the rendering of the ENTIRE page but since users tend to start reading before the entire page is rendered, setting this to a low value gives the impression that the page loads faster.

The following configurations are based off of recommendations off of the Mozillazine thread with some editing on points that I do not agree with
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.

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);

Fast Computer Fast Connection

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);

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.

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);

Fast Computer, Slow Connection
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 Computer, Fast Connection
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);

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

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);

Some of the options we chose not to include as opposed to suggestions on the Mozillazine threads included the suggestion of catching SSL pages. Regardless of computer speed, one of the common trends is that pipelining is a good thing. Those with faster computers and gobs of memory may want to up the amount of memory available to Firefox while those with slower computers can still increase the default 4MB to something higher. This was not done in our configuration files however. Powerusers are also welcome to disable the status bar to eek out that extra CPU cycle or two.
cluelessG is offline   Reply With Quote
Old 05-02-2008, 20:52   #24 (permalink)
Dedicated Punter
 
Join Date: 19 Feb 2006
Location: Birmingham, England
Age: 37
Posts: 253
Default Re: Firefox Internet Browser

I've switched to firefox and it seems better than IE.
The only problem I've got is that some actions are still trying to open IE (I think). For example, just tried to open chat on Bet365 poker (does anybody know what GP means by the way, as in $5000 GP R&A) and it wont open and just kind of stalls the system.
I've tried setting default browser to firefox but it wouldn't let me do it.
misky is offline   Reply With Quote
Old 05-02-2008, 21:33   #25 (permalink)
Senior Punter
 
Join Date: 01 Nov 2004
Posts: 191
Default Re: Firefox Internet Browser

http://ieview.mozdev.org/

extension allows you to open those IE problem pages from firefox.
robert99 is offline   Reply With Quote
Old 05-02-2008, 22:49   #26 (permalink)
Antipodean Punter
 
jeffers's Avatar
 
Join Date: 16 Jul 2001
Location: In your face
Age: 27
Posts: 3,882
Default Re: Firefox Internet Browser

Quote:
Originally Posted by jeffers View Post
I would move to a different browser (tried Opera for a while) but the fact that sites mostly are designed for IE made me change back.

It's catch 22, as sites are designed for IE because most people use IE
I've been using Firefox now for nearly a year. IE is THE WORST piece of software ever made. I have no idea how Microsoft actually get away with how bad it is.
jeffers is offline   Reply With Quote
Old 05-02-2008, 23:04   #27 (permalink)
The Real Deal ©
 
ads25's Avatar
 
Join Date: 27 Jul 2006
Location: Australia
Age: 24
Posts: 2,721
Default Re: Firefox Internet Browser

Quote:
Originally Posted by jeffers View Post
I've been using Firefox now for nearly a year. IE is THE WORST piece of software ever made. I have no idea how Microsoft actually get away with how bad it is.
IE worst software ever made? What about iTunes..?
ads25 is offline   Reply With Quote
Old 05-02-2008, 23:12   #28 (permalink)
Sabbatical punter
 
PAULM03's Avatar
 
Join Date: 27 Nov 2000
Age: 29
Posts: 10,391
Default Re: Firefox Internet Browser

Quote:
Originally Posted by ads25 View Post
IE worst software ever made? What about iTunes..?
Aye, that runs it a close second. I got an IPod at christmas, and itunes is awful. Windows media player pisses all over it.

What's the deal with having to supply a credit card number to access free album art? And Macs are over rated cnutbubbles IMO, only really liked by contrarian idiots with more money than sense.
__________________

PAULM03 is offline   Reply With Quote
Old 08-02-2008, 04:19   #29 (permalink)
Antipodean Punter
 
jeffers's Avatar
 
Join Date: 16 Jul 2001
Location: In your face
Age: 27
Posts: 3,882
Default Re: Firefox Internet Browser

Yep, iTunes is a complete fcuk up. Why oh why can't we just have drag and drop with a file-tree I have no idea, would make things much easier.

Infact I did find a program where you could do that with an iPod once, I'll see if I can find it.

Last edited by jeffers; 08-02-2008 at 04:19.
jeffers is offline   Reply With Quote
Old 08-02-2008, 04:55   #30 (permalink)
AJ
Punter Punter
 
AJ's Avatar
 
Join Date: 06 Jan 2002
Location: Auckland
Age: 37
Posts: 10,506
Awards Showcase
Oscars Tipsters Challenge 
Total Awards: 2
Default Re: Firefox Internet Browser

I don't see the problem with IE tbh, it's a reasonable browser. Much of a muchness these days, sure firefox had a clear lead against ie6, but it's all evened out these days.

Don't use either all that much myself though, switched to Apple Safari a while back, that's what all the cool kids are using. It's a seriously good bit of software

http://www.apple.com/safari/download/
AJ is offline   Reply With Quote
Old 08-02-2008, 19:21   #31 (permalink)
theunknown
 
chiqo's Avatar
 
Join Date: 18 Aug 2006
Location: europe
Posts: 959
Default Re: Firefox Internet Browser

Quote:
I would move to a different browser (tried Opera for a while) but the fact that sites mostly are designed for IE made me change back.
That“s right mate. But the fact is that Microsoft break the web standards and do what they want. IE interpret international css standards different and microsoft know it. They done not enough against it. With IE 7 they modulate a bit more in standard but Firefox is the browser who interpret the web standard right...

I use Firefox for years since 1.0.x version and also Opera. I made a lot of web sites and spite myself about these fukcin misinterpretations... .

Please - use the alternative browsers to show microsoft that they couldn“t do what they want.



DO IT
__________________
www.gamblers-delight.de
chiqo is offline   Reply With Quote
Old 18-02-2008, 18:28   #32 (permalink)
Dedicated Punter
 
Dices's Avatar
 
Join Date: 18 Dec 2006
Location: Greece
Age: 39
Posts: 251
Default Re: Firefox Internet Browser

Testing firefox for a week and i have problems with CPU usage at some pages.
Racingpost, Sportinglife and Punterslouge (little) shows sometimes 100% usage at my Celeron. Navigation is almost impossible.
Do you guys have the same problems?
Dices is offline   Reply With Quote
Old 20-02-2008, 19:00   #33 (permalink)
Vienti Tres
 
Valiant23's Avatar
 
Join Date: 06 Aug 2005
Location: On the road
Age: 40
Posts: 13,477
Default Re: Firefox Internet Browser

Yes.


Maybe try opera or safari.
__________________
You can spend your time alone re digesting past regrets,
Or you can come to terms and realize you're the only one who can forgive yourself.
Makes much more sense to live in the present tense.
Valiant23 is offline   Reply With Quote
Old 20-02-2008, 19:21   #34 (permalink)
Dedicated Punter
 
Dices's Avatar
 
Join Date: 18 Dec 2006
Location: Greece
Age: 39
Posts: 251
Default Re: Firefox Internet Browser

I'm back to my Maxthon witch i'm using last 3-4 years. Tabed browsing, based on IE. Maxthon is an excellent IE modification.
Basicly i'm trying to find a tab browser that can be set to open links from pages in other tabs (background) with the left -usual- button AND whenever i want open links at the current page by the midlle button. Some pages need to be opened in the current page for no errors.
Green browser - tab browser based on IE- will may add this midlle button action at a gesture, but in the future.
Dices is offline   Reply With Quote
Old 20-02-2008, 19:32   #35 (permalink)
God Punter
 
Galronix's Avatar
 
Join Date: 02 Jan 2006
Age: 48
Posts: 5,726
Awards Showcase
Daily Horse Racing Competition 
Total Awards: 1
Default Re: Firefox Internet Browser

Quote:
Originally Posted by PAULM03 View Post
Aye, that runs it a close second. I got an IPod at christmas, and itunes is awful. Windows media player pisses all over it.

What's the deal with having to supply a credit card number to access free album art? And Macs are over rated cnutbubbles IMO, only really liked by contrarian idiots with more money than sense.

Funny you should mention Mac's Paul, a bloke at work has a Mac laptop and swears by it.

He uses no virus software. I told him he was stupid and all he said was run google and find how many viruses there are for Macs.

I did and..............
__________________
There he goes, one of gods own prototypes. Some kind of high powered mutant, never even considered for mass production. Too weird to live, too rare to die.
Raoul Duke
Galronix is offline   Reply With Quote
Old 01-03-2008, 13:30   #36 (permalink)
Newbie Punter
 
Join Date: 03 Nov 2004
Posts: 25
Default Re: Firefox Internet Browser

Fair play to that tip on speeding up firefox - works a treat - almost equivalent of a new lap top here - cheers!
mpearce is offline   Reply With Quote
Old 02-03-2008, 12:27   #37 (permalink)
theunknown
 
chiqo's Avatar
 
Join Date: 18 Aug 2006
Location: europe
Posts: 959
Default Re: Firefox Internet Browser

Quote:
Tabed browsing, based on IE
No tabbed browsing isn“t developed by microsoft mate. They wrapped it from Opera and Mozilla.
__________________
www.gamblers-delight.de
chiqo is offline   Reply With Quote
Old 03-03-2008, 00:01   #38 (permalink)
Back In Work Punter
 
Ell Ess Dee's Avatar
 
Join Date: 21 Apr 2001
Location: Wiltshire
Age: 35
Posts: 2,950
Default Re: Firefox Internet Browser

Quote:
Originally Posted by Dices View Post
IBasicly i'm trying to find a tab browser that can be set to open links from pages in other tabs (background) with the left -usual- button AND whenever i want open links at the current page by the midlle button.
Opera works the other way round. Middle button opens up new tab while left mouse button opens link in current tab should be easy enough to get the hang of.


to the 3 and a bit year thread - a record??????

Last edited by Ell Ess Dee; 03-03-2008 at 00:02.
Ell Ess Dee is offline   Reply With Quote
Old 04-03-2008, 18:18   #39 (permalink)
Dedicated Punter
 
Dices's Avatar
 
Join Date: 18 Dec 2006
Location: Greece
Age: 39
Posts: 251
Default Re: Firefox Internet Browser

[quote=Ell Ess Dee;1016663]Opera works the other way round. Middle button opens up new tab while left mouse button opens link in current tab should be easy enough to get the hang of.
quote]

Didnt manage it. What settings required? Currently all links open in current tab. And i didnt see at gestures one that can move from one tab to another. This will also be a major problem.
Dices is offline   Reply With Quote
Old 04-03-2008, 19:22   #40 (permalink)
Dedicated Punter
 
SilentJay's Avatar
 
Join Date: 24 Nov 2007
Location: Germany
Age: 32
Posts: 221
Default Re: Firefox Internet Browser

Quote:
Originally Posted by chiqo View Post
I use Firefox for years since 1.0.x version
So I guess you like to torture yourself? Why would you keep using the consistently worst browser on the market?? (Both in my own experience and various comparison tests.)

Quote:
Please - use the alternative browsers to show microsoft that they couldn“t do what they want.
Will do... once one of them actually works properly. I quite like Opera. But even that is simply no match for IE7 at the moment. I don't care if IE is from Microsoft or not - it does by far the best job overall, so that's what I'll keep using...
SilentJay is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts



All times are GMT. The time now is 01:28.


Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.

Free £100 Bet!
Online Bookmakers
Free £100 Bet!

Recommended Bookies: Bet365 | BetDirect | | Blue Square | Canbet | Centrebet | Coral | Eurobet | Ladbrokes | Paddy Power | Party Bets | Pinnacle Sports | Skybet | SportingBet | Stan James | ToteSport | VCBet

Recommended Betting Exchanges: | Betfair | WBX

Recommended for Spread Betting: Sporting Index |
Partner Sites
Football Betting Tips Australian Free Bets HOT Free Bets HOT Odds Comparison Soccer Punter
Bookmakers Livescore SoccerVista Asian Handicap Betting Guide Euroleague Betting Picks
Soccer Picks

Contact Us | Disclaimer


© 2008 PuntersLounge.Com Ltd | Gambling Problems?

Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.