Search found 2 matches
- Thu Sep 28, 2006 3:20 pm
- Forum: Hardware Queries
- Topic: JJTech / Gadspot NC1200 W10 - Image capture error
- Replies: 38
- Views: 47774
- Tue Sep 26, 2006 11:20 am
- Forum: Hardware Queries
- Topic: JJTech / Gadspot NC1200 W10 - Image capture error
- Replies: 38
- Views: 47774
I had the same problem with NC1200 and I made the following script to return the correct Content-type: <? $host=$_GET['host']; if ($host!="") { $x = file_get_contents("http://".$host."/cgi-bin/getimage.cgi?motion=0"); header("Content-type: image/jpeg"); header("Content-Length: ".strlen($x)); echo $x ...