Open GoogleCodeExporter opened 8 years ago
You must use custom_context or get source via CURL. Server reject connection if
user agent is not specified or is incorrect (some parser?) for simple
preventing to get site souce by basic functions or flood/ddos maybe.
Try this:
$opts = array(
'http'=> array(
//'method'=> "GET",
'user_agent'=> $_SERVER['HTTP_USER_AGENT']
)
);
// Parse the google code website into a DOM
$html = file_get_dom('http://www.hisradio.com/', true, false,
stream_context_create($opts))
echo $html;
This use your user-agent in request to hisradio.com. Of course if your PHP
version is >=5.0.0
Original comment by bartek12...@gmail.com
on 3 Feb 2014 at 11:42
Original issue reported on code.google.com by
apt94je...@gmail.com
on 31 Aug 2013 at 3:22