No Pages were crawled, Please make sure you have set your site domain correctly and you have valid connection to host';
_echo($urls);
_cache(md5(SITE),($r=1));
$took = round(_time()-$start_time, 2);
if( $took > CRAWL_TIME_OUT )
$finish = 'Crawler Timed out after '.CRAWL_TIME_OUT.' seconds while ' ;
elseif( _mem() > MEMORY_LIMIT )
$finish = 'Memory Limit '.MEMORY_LIMIT.'MB reached while ';
else
$finish = 'Finished ';
echo '
'.$finish.'crawling '.SITE.', Crawled '.count($urls).' links
Took '.$took.' Seconds, using '._mem().'MB memory';
break;
default:
break;
}
?>