Activity Stream
48,167 MEMBERS
61063 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Page 1 of 2 12 LastLast
Results 1 to 10 of 17
  1.     
    #1
    Member
    Website's:
    4rc.org pivx.net mambaturk.com

    Question 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?

    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


  2.   Sponsored Links

  3.     
    #2
    Respected Developer
    Website's:
    wrzc.org
    Hmm 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

  4.     
    #3
    Member
    Website's:
    4rc.org pivx.net mambaturk.com
    i 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


  5.     
    #4
    Respected Developer
    Website's:
    wrzc.org
    For 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

  6.     
    #5
    Member
    Website's:
    warezxtc.com
    You're modding my link checker lol, ripper.

  7.     
    #6
    Banned
    Website's:
    RavenFaust.com USAWarez.com DLThe.Net DLThe.Com
    LinkzBot.com is best no cpusage and very fast.

  8.     
    #7
    Member
    Website's:
    4rc.org pivx.net mambaturk.com
    i 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


  9.     
    #8
    ლ(ಠ益ಠლ)
    Website's:
    extremecoderz.com
    show us the color of ur money - will be a big-ass job.

  10.     
    #9
    Respected Developer
    Website's:
    wrzc.org
    He'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

  11.     
    #10
    Member
    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.

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. do you have bot auto check link
    By bills4 in forum Webmaster Resources
    Replies: 1
    Last Post: 3rd Feb 2012, 06:58 PM
  2. check link live or die ?
    By ^.^! in forum Wordpress
    Replies: 0
    Last Post: 18th Nov 2011, 06:59 PM
  3. Link check mod for vbulletin 4.0.7 ?
    By Webestrian in forum vBulletin
    Replies: 3
    Last Post: 19th Oct 2010, 02:40 PM
  4. Replies: 3
    Last Post: 29th Jun 2010, 11:08 PM
  5. Link check before post
    By narutoroot in forum vBulletin
    Replies: 0
    Last Post: 4th Jul 2009, 03:52 AM

Tags for this Thread

BE SOCIAL