Results 1 to 10 of 17
-
10th Dec 2009, 11:03 PM #1OPMemberWebsite's:
4rc.org pivx.net mambaturk.comRapidshare link check
Hiya mates,
i have new project website and i need some snippets
http://rapidlinks.ru /link/?lnk=146446like in example checking rapidshare links showing status (dead or alive) and their size, if dead delete from database
how can i do this with curl or rapidshare api?
Any idea?
PHP Code:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<body>
<center>
<form method="post" action="">
Rapidshare Links:<br />
<textarea name="url" rows="10" cols="50"></textarea><br /><br /><input type="submit" name="submit" value="Check Links"> | <input type="reset" value="Clear">
</form>
<?php
if(isset($_REQUEST['submit'])){
echo "<br />-------------------------------------------------<br />";
$url = @$_POST['url'];
if ($url == ""){
echo "Invalid URL(s)";
} else {
$url = explode(" ", $url);
$url = implode("\n", $url);
$url = explode("\n", $url);
$url = array_unique($url);
foreach ($url as $urls){
$rsurls = @file_get_contents($urls);
if (preg_match("/FILE DOWNLOAD/", $rsurls)){
$url = trim($url); #before $url = explode(" ", $url);
#then i add option to view the size of the files :
$pos1 = strpos($rsurls,">| ");
$pos2 = strpos($rsurls," KB");
echo substr($rsurls, $pos1+3, $pos2-$pos1)." ";
# all lines right after if (preg_match("/FILE DOWNLOAD/", $rsurls)){
echo '<a href="'.$urls.'"><font color="green">'.$urls.'</font></a> - Valid<br />';
} else {
echo '<a href="'.$urls.'"><font color="red">'.$urls.'</font></a> - Dead<br />';
}
}
echo "<br /><font size=\"2\">".sizeof($url)." Links Checked</font>";
}
}
?>
<br /><br />
</center>
</body>
</html>masterofdeath Reviewed by masterofdeath on . Rapidshare link check Hiya mates, i have new project website and i need some snippets http://rapidlinks.ru /link/?lnk=146446like in example checking rapidshare links showing status (dead or alive) and their size, if dead delete from database how can i do this with curl or rapidshare api? Any idea? <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> Rating: 5
- DisRespected: Dlow (Still he owe me 30$)
- My Websites are again up!!!!Moved own server
- DisRespected: Dlow (Still he owe me 30$)
-
10th Dec 2009, 11:12 PM #2Respected DeveloperWebsite's:
wrzc.orgHmm dump that script as it's using file_get_contents.
If your after ''some snippets'' then just search for Dman's link checker's, Cyberj did a basic one recently and Navzi/Nadi/N**** had a few IPB ones too. You can also look at the Link Hound and Link Detective (both old and not that stable) for PHPBB if your looking for ideas or see how they work. Their's also a few for vBulletin.
Study the above to see how they work and get some ideas. You didn't mention what forum this is for though.Tutorial How to SEO your Warez Site a guide to help you increase your organic traffic
Huge list of Warez Sites and free Multiposter Templates
-
10th Dec 2009, 11:26 PM #3OPMemberWebsite's:
4rc.org pivx.net mambaturk.comi dont search addon for forums
i will build new site exactly like rapidlinks.ru but i need only that rapidshare api page..i couldnt write by myself. can you help me?
- DisRespected: Dlow (Still he owe me 30$)
- My Websites are again up!!!!Moved own server
- DisRespected: Dlow (Still he owe me 30$)
-
11th Dec 2009, 12:12 AM #4Respected DeveloperWebsite's:
wrzc.orgFor anyone else reading this thread check out here first http://www.besthostingforums.com/sho...d.php?p=169728
Sorry, don't have the time to help code a site from scratch.Tutorial How to SEO your Warez Site a guide to help you increase your organic traffic
Huge list of Warez Sites and free Multiposter Templates
-
11th Dec 2009, 01:45 AM #5MemberWebsite's:
warezxtc.comYou're modding my link checker lol, ripper.
-
11th Dec 2009, 09:07 AM #6BannedWebsite's:
RavenFaust.com USAWarez.com DLThe.Net DLThe.ComLinkzBot.com is best no cpusage and very fast.
-
11th Dec 2009, 11:58 AM #7OPMemberWebsite's:
4rc.org pivx.net mambaturk.comi want to hire coder for clone website of rapidlinks.ru
- DisRespected: Dlow (Still he owe me 30$)
- My Websites are again up!!!!Moved own server
- DisRespected: Dlow (Still he owe me 30$)
-
11th Dec 2009, 12:40 PM #8ლ(ಠ益ಠლ)Website's:
extremecoderz.comshow us the color of ur money
- will be a big-ass job.
-
11th Dec 2009, 01:21 PM #9Respected DeveloperWebsite's:
wrzc.orgHe's offering $250 in the Buy Sell area but it's not near enough for the size of the project. I had a look and their's a mountain of work and features on that site. It could end up taking months between the designing, writing and testing to reach the required level. Also found a few posts where masterofdeath has asked on other sites all with no luck.
Seriously need to reconsider the budget.Tutorial How to SEO your Warez Site a guide to help you increase your organic traffic
Huge list of Warez Sites and free Multiposter Templates
-
11th Dec 2009, 02:33 PM #10Member
http://www.besthostingforums.com/showthread.php?t=17264 the linkbot i posted the code for uses rapidshare API checking, just take the code from there.
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
do you have bot auto check link
By bills4 in forum Webmaster ResourcesReplies: 1Last Post: 3rd Feb 2012, 06:58 PM -
check link live or die ?
By ^.^! in forum WordpressReplies: 0Last Post: 18th Nov 2011, 06:59 PM -
Link check mod for vbulletin 4.0.7 ?
By Webestrian in forum vBulletinReplies: 3Last Post: 19th Oct 2010, 02:40 PM -
Check your resource usage on Rapidshare API - For link checkers
By Gavo in forum Webmaster ResourcesReplies: 3Last Post: 29th Jun 2010, 11:08 PM -
Link check before post
By narutoroot in forum vBulletinReplies: 0Last Post: 4th Jul 2009, 03:52 AM
themaCreator - create posts from...
Version 3.56 released. Open older version (or...