Anidazen Posted July 18, 2006 Share Posted July 18, 2006 I was working on a script using complicated parsing on some external websites.One of the scripts suddenly started returning nothing but an asterix! Any idea why this is?Curl code being used is as follows. URL is definitely still correct.$ch = curl_init();curl_setopt($ch, CURLOPT_URL, $url);curl_setopt($ch, CURLOPT_HEADER, 0);ob_start(); curl_exec($ch); curl_close($ch); $content = ob_get_contents(); ob_end_clean(); Link to comment https://forums.phpfreaks.com/topic/14930-curl-suddenly-returning-for-one-page/ Share on other sites More sharing options...
Anidazen Posted July 18, 2006 Author Share Posted July 18, 2006 Any ideas?Possibly they banned me, but I only hit the site like 19 times total while working on parsing... Link to comment https://forums.phpfreaks.com/topic/14930-curl-suddenly-returning-for-one-page/#findComment-60164 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.