Hi I have the following code I use for link checkers. It works on most sites but filesonic.com return 200 ok but does not check the link. Anyone know what's wrong or have working code for filesonic? Thanks.

Code: 
<?php
	 $ch = curl_init();
	 $data['redirect'] = '/'; 
	 $data['links'] = "http://www.filesonic.com/file/25157719/Available.zip\n";
	curl_setopt($ch, CURLOPT_URL, 'http://filesonic.com/link-checker');
	curl_setopt($ch, CURLOPT_REFERER, 'http://filesonic.com/link-checker');
	curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/4.73 [en] (X11; U; Linux 2.2.15 i686)');
	curl_setopt($ch, CURLOPT_HTTPHEADER,array("Expect:"));
	curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 8);
	curl_setopt($ch, CURLOPT_TIMEOUT, 8);
	curl_setopt($ch, CURLOPT_HEADER, true);
	curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
	curl_setopt($ch, CURLOPT_POST, 1);
	curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
	$page = curl_exec($ch);
	print  $page ;  
	curl_close($ch);
?>
Lock Down Reviewed by Lock Down on . Filesonic curl code not working??? Hi I have the following code I use for link checkers. It works on most sites but filesonic.com return 200 ok but does not check the link. Anyone know what's wrong or have working code for filesonic? Thanks. <?php $ch = curl_init(); $data = '/'; $data = "http://www.filesonic.com/file/25157719/Available.zip\n"; curl_setopt($ch, CURLOPT_URL, 'http://filesonic.com/link-checker'); curl_setopt($ch, CURLOPT_REFERER, 'http://filesonic.com/link-checker'); curl_setopt($ch, Rating: 5