Quote:
Originally Posted by dublin
I'm not sure what you are asking...? If you want to bypass geoblock using that 'x-forwarded-for' header trick you don't need tor or proxy.
If you want download/watch bbc streams just replace 1.2.3.4 with any uk ip, then bbc server will think that you are from uk.
|
Thanks for your quick reply.
Unfortunately, it does not work for me, even though I have located with "http://www.utrace.de/" some UK IPs by larger companies and have entered into the script. Unfortunately, I am not familiar with programming, but I thought I would have done this right. Where is my fault?
Code:
// function headers()
// {
// $headers[] = 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8';
// $headers[] = 'Connection: Keep-Alive';
// return $headers;
// }
function headers()
{
$headers[] = 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8';
$headers[] = 'Connection: Keep-Alive';
$headers[] = 'X-Forwarded-For: 134.223.2.33';
return $headers;
}