HI all, I'm in Germany and there is a website in the UK that I want to d/l some videos from, but the site blocks all non-UK addresses. I think that I can get around this by using a proxy, but I'm not sure. Is there a way to have FireFox use a proxy for this website only? If so, how. OR can someone suggest a better way to d/l these videos? Thanks, JIM -- Jim Hatridge Linux User #88484 Ebay ID: WartHogBulletin ------------------------------------------------------ WartHog Bulletin Info about new German Stamps http://www.WartHogBulletin.de Many Enemies -- Much Honor! Anti-US Propaganda stamp collection http://www.manyenemies-muchhonor.info An American in Bavaria http://www.gaubodengalerie.de -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
James Hatridge wrote:
I'm in Germany and there is a website in the UK that I want to d/l some videos from, but the site blocks all non-UK addresses. I think that I can get around this by using a proxy, but I'm not sure. Is there a way to have FireFox use a proxy for this website only? If so, how. OR can someone suggest a better way to d/l these videos?
You can write a little auto proxy config script - it's a javascript function and would look like this: function FindProxyForURL(url, host) { if ( isPlainHostName(host) ) return "DIRECT"; else if ( isInNet(host,"192.168.0.0","255.255.0.0") ) return "DIRECT"; else if ( isInNet(host,"nnn.nn.220.64","255.255.255.224") ) return "PROXY host.name:80"; else return "PROXY squid.local.net:3128; DIRECT"; } This script is what we use internally - local addresses are direct, some external addresses use one proxy, the rest another (=squid). You make the script available to FF under Preferrences->Network->Connection->Settings->Automatic proxy configuration URL. /Per Jessen, Zürich -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
Hi! Am Montag, 13. Oktober 2008 09:15 schrieb Per Jessen:
James Hatridge wrote:
I'm in Germany and there is a website in the UK that I want to d/l some videos from, but the site blocks all non-UK addresses. I think that I can get around this by using a proxy, but I'm not sure. Is there a way to have FireFox use a proxy for this website only? If so, how. OR can someone suggest a better way to d/l these videos?
You can write a little auto proxy config script - it's a javascript function and would look like this:
However it is probably easier to use the Firefox-Addon Foxy-Proxy (might be spelled slightly different. Regards, Matthias -- Matthias Bach www.marix.org -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
Hi all! On Monday 13 October 2008 10:28:01 Matthias Bach wrote:
Hi!
Am Montag, 13. Oktober 2008 09:15 schrieb Per Jessen:
James Hatridge wrote:
I'm in Germany and there is a website in the UK that I want to d/l some videos from, but the site blocks all non-UK addresses. I think that I can get around this by using a proxy, but I'm not sure. Is there a way to have FireFox use a proxy for this website only? If so, how. OR can someone suggest a better way to d/l these videos?
You can write a little auto proxy config script - it's a javascript function and would look like this:
However it is probably easier to use the Firefox-Addon Foxy-Proxy (might be spelled slightly different.
Regards, Matthias -- Matthias Bach www.marix.org
Thanks for this, I'll check it out! Now the next question is: How do I find a good proxy for the UK? Thanks JIM -- Jim Hatridge Linux User #88484 Ebay ID: WartHogBulletin ------------------------------------------------------ WartHog Bulletin Info about new German Stamps http://www.WartHogBulletin.de Many Enemies -- Much Honor! Anti-US Propaganda stamp collection http://www.manyenemies-muchhonor.info An American in Bavaria http://www.gaubodengalerie.de -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
participants (3)
-
James Hatridge
-
Matthias Bach
-
Per Jessen