Results 1 to 4 of 4
-
17th Oct 2010, 07:22 PM #1OPMemberWebsite's:
MP3SearchEngines.net LatestMovieTrailers.org Talking.soMass url checker ?
I'm not talking about file host link checker.
Is there any tool or website where I can put about 50-100 urls together and check whether that site still exists?
Like I want to check whether these few urls are working:
http://katz.cd/submit
http://atomicwarez.com/submit.php
http://twilight.ws/submit
and so on..nYXem Reviewed by nYXem on . Mass url checker ? I'm not talking about file host link checker. Is there any tool or website where I can put about 50-100 urls together and check whether that site still exists? Like I want to check whether these few urls are working: http://katz.cd/submit http://atomicwarez.com/submit.php http://twilight.ws/submit and so on.. Rating: 5
-
18th Oct 2010, 04:51 AM #2Probation
I think this is going to be useful. Thanks for sharing
-
18th Oct 2010, 09:30 AM #3MemberWebsite's:
epicimagehost.comShould look something like this..
Made it in a hurry tho, so probably has some bugs.
Also I suggest to check headers.
PHP Code:<?php
function check_site($url){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$data = curl_exec($ch);
curl_close($ch);
if($data === false)
return false;
else
return true;
}
if(!empty($_POST['sites'])){
$sites = explode("\n",$_POST['sites']);
foreach($sites as $site){
$alive = check_site($site);
if($alive)
echo 'Site '.$site.' is alive<br />';
else
echo 'Site '.$site.' is dead<br />';
}
}else{
?>
<html>
<head></head>
<body>
<form method="POST">
<textarea name="sites"></textarea>
<input type="submit" name="submit" value="submit" />
</form>
</body>
</html>
<?php
}
?>
-
18th Oct 2010, 11:59 AM #4OPMemberWebsite's:
MP3SearchEngines.net LatestMovieTrailers.org Talking.so@hacktutors : Mate, I shared nothing, read again
@Robin H : Thanks mate! It works, but a bit slow
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Review mass pr checker
By roadrunner in forum Site ReviewsReplies: 2Last Post: 5th Nov 2012, 10:14 AM -
LE with Mass PR Checker - SEO type sites only.
By roadrunner in forum Link ExchangeReplies: 2Last Post: 24th Oct 2012, 05:51 AM -
Google Mass PageRank Checker Free Web Tool
By errabbaa in forum Webmaster ResourcesReplies: 1Last Post: 7th Oct 2012, 11:42 AM -
Mass Rapidshare Account Checker - PHP
By Sp32 in forum Webmaster ResourcesReplies: 6Last Post: 15th Sep 2009, 10:57 PM
themaCreator - create posts from...
Version 3.47 released. Open older version (or...