I was trying to use URL command (CGI script) of a security IP camera from PHP script. The The php script is hosted in Bluehost server. I checked the cURL version and other stuff , all appears ok. The URL command works on web browser but not in this script??
Thanks for support!
<?php
$url = "http://80.101.186.XX:8372/cgi-bin/viewer/recall.cgi?recall=5AB";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt ($ch, CURLOPT_PORT , 8372);
curl_setopt ($ch, CURLOPT_TIMEOUT , 300);
curl_setopt($ch, CURLOPT_USERPWD, "XXXXX:XXXXXX");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
curl_close($ch);
echo $result;
?>
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:10.0.2) Gecko/20100101 Firefox/10.0.2');– AndrewR Mar 6 '12 at 20:41