Hey,
I've been struggling to find out why it didnt die but stopped outputting logs..
When trying to retrieve the minified version of jQuery (jquery-1.3.2.min.js) it just never came back,
I solved it by adding these lines in PHPCrawlerPageRequest::receivePage() at line 233:
if (false === $line_read && !feof($handle)) {
// something went really wrong. PHPCrawl looped for ever in this situation
$stop = true;
$error_code = "2000";
$error_string = "The file retrieval failed, unexpected end of stream: " . $url_to_crawl;
}
Didnt test it it still retrieve other pages normally. But in PHP Manual, thats the way they use to throw an error.
Anonymous
Hi,
thanks for the report!
Could you please tell me the exact URL of the jquery-download-page where this behaviour occurs?
Thx!