Author |
Message |
Guest
Offline
|
Posted: Sun Feb 13, 2005 1:55 pm Post maybe stupid Post subject: IE Question |
 |
|
|
|
My Internet Explorer can current download only 2 files from the same site at the time, how do I redefine the setting?
Help me, Thanks!  |
|
Back to top |
|
 |
CypherJF I gargle nitroglycerin

Gender: Joined: Aug 14 2003 Posts: 2582 Location: USA Offline
|
Posted: Sun Feb 13, 2005 2:18 pm Post maybe stupid Post subject: |
 |
|
|
|
I don't know, since I don't use it.  _________________ Performance is often the art of cheating carefully. - James Gosling |
|
Back to top |
|
 |
Solo Ace Yeah, I'm in touch with reality...we correspond from time to time.

Age:38 Gender: Joined: Feb 06 2004 Posts: 2583 Location: The Netherlands Offline
|
Posted: Sun Feb 13, 2005 2:36 pm Post maybe stupid Post subject: |
 |
|
|
|
I guess you mean the files IE displays in the browser window, if so, you're correct.
IE only downloads 2 of the files on a website at the same time per instance and there's no way to change it in IE's settings.
Maybe you could change it in some configuration file or in the registry (no idea where or how).
Otherwise, if you mean files it cannot display (like .exe or .tar etc.) it should be able to download more than 2 of those at the same time.
If this is your problem then maybe the server you're trying to download from doesn't allow you to have more than 2 (or any other number) connections.
If you're trying to download files, not browse them, get an alternate download program.
I used to like NetTransport, but the guy who took over development from his dad made it partially paid software now.
A ported version of "wget" might be cool to use too.  |
|
Back to top |
|
 |
Cyan~Fire I'll count you!

Age:37 Gender: Joined: Jul 14 2003 Posts: 4608 Location: A Dream Offline
|
Posted: Sun Feb 13, 2005 3:27 pm Post maybe stupid Post subject: |
 |
|
|
|
I think Cypher's hitting it a bit closer... just don't use IE. _________________ This help is informational only. No representation is made or warranty given as to its content. User assumes all risk of use. Cyan~Fire assumes no responsibility for any loss or delay resulting from such use.
Wise men STILL seek Him. |
|
Back to top |
|
 |
Phyran I privately speak in public
Gender: Joined: Dec 25 2003 Posts: 280 Offline
|
Posted: Sun Feb 13, 2005 4:48 pm Post maybe stupid Post subject: |
 |
|
|
|
Die! nothing wrong with IE X[ |
|
Back to top |
|
 |
Bak ?ls -s 0 in

Age:26 Gender: Joined: Jun 11 2004 Posts: 1826 Location: USA Offline
|
Posted: Sun Feb 13, 2005 8:25 pm Post maybe stupid Post subject: |
 |
|
|
|
yes there is, but firefox does the same thing (2 dls at a time). Maybe it's a webserver limitation so no one can download the entire site and lock everyone else up? _________________ SubSpace Discretion: A Third Generation SubSpace Client |
|
Back to top |
|
 |
Solo Ace Yeah, I'm in touch with reality...we correspond from time to time.

Age:38 Gender: Joined: Feb 06 2004 Posts: 2583 Location: The Netherlands Offline
|
Posted: Sun Feb 13, 2005 8:36 pm Post maybe stupid Post subject: |
 |
|
|
|
I guess you're ignoring me; I just said that.  |
|
Back to top |
|
 |
Mine GO BOOM Hunch Hunch What What

Age:42 Gender: Joined: Aug 01 2002 Posts: 3615 Location: Las Vegas Offline
|
Posted: Sun Feb 13, 2005 11:37 pm Post maybe stupid Post subject: |
 |
|
|
|
This is standard. The HTTP standards say that you should have no more than two concurrent connections to any one server. IE, Firefox, Opera, etc all follow this rule. Some servers even force it, though most don't. Abusing this standard harms webservers, because then you attempt to open 50 different connections to one server, thus making Apache/whatever open up 50 threads just so you could load images half a second faster. If you want to bypass this 2 concurrent connections per server for downloads, I'd suggest using any of the numerous file downloading softwares. WackGet, based on WGet, is a very good free downloading tool.
That all being said, there are two methods to help speed things up. The first is called pipelining, which is supported in about everything except IE. This is where in one connection, it attempts to download everything on the site at once. So it would act exactly like opening 50 threads, except uses a hell of a lot less resources on the server side because it is all sent down one connection.
The second option would be to edit your registry file and change the coded maximum limit. If you don't know how to use the registry editor, use one of the registry files for either 2000/XP or 9x/ME.
HKEY_USERS.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Internet Settings
"MaxConnectionsPerServer"=dword:00000020
"MaxConnectionsPer1_0Server"=dword:00000020
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings
"MaxConnectionsPerServer"=dword:00000020
"MaxConnectionsPer1_0Server"=dword:00000020 |
I'd seriously recommend not changing the concurrent connection settings. Some sites may send you garbage if you attempt to open too many concurrent connections with them, because it is beyond the HTTP specs, and because all normal web browsers don't make it very easy to change it. |
|
Back to top |
|
 |
Gravitron VIE Vet

Age:43 Gender: Joined: Aug 02 2002 Posts: 993 Location: Israel Offline
|
Posted: Mon Feb 14, 2005 4:24 am Post maybe stupid Post subject: |
 |
|
|
|
And why should they?
It's hard in this day and age to fight for bandwidth.
The last thing a host or hosted need is someone psuedo-DDOSing them just so he can get the page to load faster. |
|
Back to top |
|
 |
lp_street_soldier Thing 1

Age:34 Gender: Joined: Apr 24 2004 Posts: 352 Location: Britain Offline
|
Posted: Mon Feb 14, 2005 4:24 am Post maybe stupid Post subject: |
 |
|
|
|
Anyways, just stop using IE..
Phyran, find out why IE is so bad at www.stopie.com. You can find an alternative there.
Erm, yeah... go Mozilla Firefox! $$ |
|
Back to top |
|
 |
Bak ?ls -s 0 in

Age:26 Gender: Joined: Jun 11 2004 Posts: 1826 Location: USA Offline
|
Posted: Mon Feb 14, 2005 9:56 am Post maybe stupid Post subject: |
 |
|
|
|
apache uses threads? coulda sworn it spawned processes for each new connection... |
|
Back to top |
|
 |
Mine GO BOOM Hunch Hunch What What

Age:42 Gender: Joined: Aug 01 2002 Posts: 3615 Location: Las Vegas Offline
|
Posted: Mon Feb 14, 2005 11:55 am Post maybe stupid Post subject: |
 |
|
|
|
It depends. Under Linux, its not a normal threading of what you'd think. You can fork() or clone(), but there is no kernel threading in Linux. Under NT, I'd guess they'd use the kernel threading, though only a guess.
Read up a bit on user-level threads and kernel threading. PThreads, which is what ASSS uses, is a user-level threading library, while CreateThread() under NT actually makes a new kernel thread. In most cases, it won't make a differance, which is why I went with threading for the example above, even though Apache may fork() instead.
Technically, Linux doesn't distinguish between processes and threads. Instead, they call them tasks. |
|
Back to top |
|
 |
Gravitron VIE Vet

Age:43 Gender: Joined: Aug 02 2002 Posts: 993 Location: Israel Offline
|
Posted: Mon Feb 14, 2005 12:05 pm Post maybe stupid Post subject: |
 |
|
|
|
Unf. |
|
Back to top |
|
 |
Mine GO BOOM Hunch Hunch What What

Age:42 Gender: Joined: Aug 01 2002 Posts: 3615 Location: Las Vegas Offline
|
|
Back to top |
|
 |
Solo Ace Yeah, I'm in touch with reality...we correspond from time to time.

Age:38 Gender: Joined: Feb 06 2004 Posts: 2583 Location: The Netherlands Offline
|
Posted: Mon Feb 14, 2005 1:22 pm Post maybe stupid Post subject: |
 |
|
|
|
People who know how to browse know how to stay away from spy / adware. |
|
Back to top |
|
 |
SuSE Me measures good

Joined: Dec 02 2002 Posts: 2307 Offline
|
Posted: Mon Feb 14, 2005 1:24 pm Post maybe stupid Post subject: |
 |
|
|
|
no, they really don't  |
|
Back to top |
|
 |
Phyran I privately speak in public
Gender: Joined: Dec 25 2003 Posts: 280 Offline
|
Posted: Mon Feb 14, 2005 1:25 pm Post maybe stupid Post subject: |
 |
|
|
|
and for those who have trouble getting rid of spywares and trojans
check out this site...very helpful ppl
http://computercops.biz/forum67.html |
|
Back to top |
|
 |
Solo Ace Yeah, I'm in touch with reality...we correspond from time to time.

Age:38 Gender: Joined: Feb 06 2004 Posts: 2583 Location: The Netherlands Offline
|
Posted: Mon Feb 14, 2005 2:38 pm Post maybe stupid Post subject: |
 |
|
|
|
Lies SuSE.
Gotta love it how friends ask "Oooh, so you have to click NO there!?" when they see me rejecting an ActiveX component in IE.
I think it's sad how all these people get owned by spy/adware, just because they're too stupid to use their browser right.
What happens in that movie you posted there only happens to newbies.
Stop blaming the browsers.
Blame the spy/adware spreading companies, and, of course, yourself.
I don't think this is available in English, but I thought it was pretty good since it combines all the known powerful spy/adware removal tools and configures them automatically. |
|
Back to top |
|
 |
Phyran I privately speak in public
Gender: Joined: Dec 25 2003 Posts: 280 Offline
|
Posted: Mon Feb 14, 2005 3:12 pm Post maybe stupid Post subject: |
 |
|
|
|
all u really need is spybot, adaware pro, hijackthis
and maybe spywareblaster and spyhunter |
|
Back to top |
|
 |
Solo Ace Yeah, I'm in touch with reality...we correspond from time to time.

Age:38 Gender: Joined: Feb 06 2004 Posts: 2583 Location: The Netherlands Offline
|
Posted: Mon Feb 14, 2005 3:17 pm Post maybe stupid Post subject: |
 |
|
|
|
Hijackthis isn't user/newb friendly.
Those programs are what it combines and controls. |
|
Back to top |
|
 |
Gravitron VIE Vet

Age:43 Gender: Joined: Aug 02 2002 Posts: 993 Location: Israel Offline
|
Posted: Mon Feb 14, 2005 3:36 pm Post maybe stupid Post subject: |
 |
|
|
|
Oh, is that what movie is about? LoL.
It's like putting a movie about getting infected by virii and saying : well, if you had linux (or MAC, since they brag about that) it wouldn't happen.
LoL.
Getting infected by stupid activeX crap, haha, how newbish. |
|
Back to top |
|
 |
Dr Brain Flip-flopping like a wind surfer

Age:39 Gender: Joined: Dec 01 2002 Posts: 3502 Location: Hyperspace Offline
|
Posted: Mon Feb 14, 2005 4:14 pm Post maybe stupid Post subject: |
 |
|
|
|
People who know how to browse are also smart enough to use a better browser.
Yes, savvy users can use IE without problems, but the savvy people almost always choose to use something else.
There's really no good reason to use IE for longer than it takes to install Firefox on a fresh install. _________________ Hyperspace Owner
Smong> so long as 99% deaths feel lame it will always be hyperspace to me |
|
Back to top |
|
 |
Gravitron VIE Vet

Age:43 Gender: Joined: Aug 02 2002 Posts: 993 Location: Israel Offline
|
Posted: Mon Feb 14, 2005 4:16 pm Post maybe stupid Post subject: |
 |
|
|
|
Yes!
Because then, you can goto a site, where you will be linked to an e-bay fraudulant site with spoofed credentials, try to buy something, give them your CC and get mugged!
Hooray for firefox! |
|
Back to top |
|
 |
Phyran I privately speak in public
Gender: Joined: Dec 25 2003 Posts: 280 Offline
|
Posted: Mon Feb 14, 2005 4:19 pm Post maybe stupid Post subject: |
 |
|
|
|
Solo Ace wrote: | Hijackthis isn't user/newb friendly.
Those programs are what it combines and controls. |
thats why i posted that link in an earlier post
ill post again
http://computercops.biz/forum67.html
the people there are very helpful in finding whats wrong from yer hijackthis log and pointing it out to you so u can safely remove malicious stuff.
Quote: | Oh, is that what movie is about? LoL.
It's like putting a movie about getting infected by virii and saying : well, if you had linux (or MAC, since they brag about that) it wouldn't happen.
LoL.
Getting infected by stupid activeX crap, haha, how newbish. |
bleh -.- i did something stupid like that once, but mercy has been shown in the form of castle cops forum (link above) |
|
Back to top |
|
 |
Gravitron VIE Vet

Age:43 Gender: Joined: Aug 02 2002 Posts: 993 Location: Israel Offline
|
Posted: Mon Feb 14, 2005 4:24 pm Post maybe stupid Post subject: |
 |
|
|
|
AdaWare is a good friend. |
|
Back to top |
|
 |
|