Activity Stream
48,167 MEMBERS
6844 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 12
  1.     
    #1
    Banned
    Website's:
    WarezRelease.org ThatHosting.co

    Default linkback check

    Fixed an removed
    Chris2k Reviewed by Chris2k on . linkback check Fixed an removed Rating: 5

  2.   Sponsored Links

  3.     
    #2
    Member
    on the last 3 lines.
    unexpected T_VARIABLE
    ;


  4.     
    #3
    Respected Member
    Website's:
    DL4Everything.com Soft2050.in
    On Line 26, you didn't end the statement by semi-colon

    PHP Code: 
    die('We cant find our link on your site, please add it.'
    You need to add semi-colon

    PHP Code: 
    die('We cant find our link on your site, please add it.'); 

  5.     
    #4
    Banned
    Website's:
    WarezRelease.org ThatHosting.co
    it works as i planned, not bad for a noob. 1 prob, its not blacklisting heres m y code:

    PHP Code: 
    function linkback($link$ururl)  
    {  
        
    $ch curl_init($link);  
        
    curl_setopt($chCURLOPT_RETURNTRANSFER1);  
        
    curl_setopt($chCURLOPT_HEADER0);  
        
    curl_setopt($chCURLOPT_FOLLOWLOCATION1);  
        
    curl_setopt($chCURLOPT_USERAGENT'Opera/9.80 (Windows NT 5.1; U; en) Presto/2.7.62 Version/11.01');  
        
    $page curl_exec($ch);  
        
    curl_close($ch); 
        if (
    stripos($page,$ururl)===false
          return 
    false
        else 
          return 
    true;
    }

    $ururl "http://warezrelease.org";

    $reason "Add our linkback, then email us.";

    $date date("d-m-Y");

      if(
    linkback($surl,$ururl)==true)
      {
    mysql_query("INSERT INTO wcddl_queue (sid,title,type,url) VALUES ('".mysql_real_escape_string($sid)."','".mysql_real_escape_string($titles[$i])."','".mysql_real_escape_string($types[$i])."','".mysql_real_escape_string($urls[$i])."')");
      }
      else
      {
      die(
    'We cant find our link on your site, please add it.');
       
      
    $b mysql_query("INSERT INTO wcddl_blacklist VALUES ('".mysql_real_escape_string($surl)."','".mysql_real_escape_string($reason)."','".mysql_real_escape_string($date)."','".mysql_real_escape_string($email)."')");
      } 
    can some1 take a look.

  6.     
    #5
    Banned
    Website's:
    WarezRelease.org ThatHosting.co
    done it, btw when im displaying the error: (no linkback error) it shows succes msg too anyway to hide it?

  7.     
    #6
    Member
    Just a tip, this is redundant:

    Code: 
    if(linkback($surl,$ururl)==true)
    Should be:

    Code: 
    if(linkback($surl,$ururl))
    If the linkback() function returns true, it will evaluate the if statement to true, if it returns false, it will evaluate it to false. There's no need to do a comparison in the if statement.

  8.     
    #7
    Retired NinJa
    Website's:
    loledhard.com
    got disconnected anyways u just called die() b4 adding site to blacklist just made a change. Look if this works

    PHP Code: 
    function linkback($link$ururl)  
    {  
        
    $ch curl_init($link);  
        
    curl_setopt($chCURLOPT_RETURNTRANSFER1);  
        
    curl_setopt($chCURLOPT_HEADER0);  
        
    curl_setopt($chCURLOPT_FOLLOWLOCATION1);  
        
    curl_setopt($chCURLOPT_USERAGENT'Opera/9.80 (Windows NT 5.1; U; en) Presto/2.7.62 Version/11.01');  
        
    $page curl_exec($ch);  
        
    curl_close($ch); 
        if (
    stripos($page,$ururl)===false
          return 
    false
        else 
          return 
    true;
    }

    $ururl "http://warezrelease.org";
    $date date("d-m-Y");

      if(
    linkback($surl,$ururl))
      {
        
    mysql_query("INSERT INTO wcddl_queue (sid,title,type,url) VALUES ('".mysql_real_escape_string($sid)."','".mysql_real_escape_string($titles[$i])."','".mysql_real_escape_string($types[$i])."','".mysql_real_escape_string($urls[$i])."')");
      }
      else
      {
        
    mysql_query("INSERT INTO wcddl_blacklist VALUES ('".mysql_real_escape_string($surl)."','".mysql_real_escape_string($reason)."','".mysql_real_escape_string($date)."','".mysql_real_escape_string($email)."')");
        die(
    'We cant find our link on your site, please add it.');
      } 



    You don't hate Justin bieber.You hate the fact you ain't Justin Bieber!

  9.     
    #8
    Banned
    Website's:
    WarezRelease.org ThatHosting.co
    oh yea, i fixed tht aready, btw when im displaying the error: (no linkback error) it shows succes msg too anyway to hide it?

  10.     
    #9
    Retired NinJa
    Website's:
    loledhard.com
    ^ cant say/advice much without proper screenshot & the code of the page u are talking about



    You don't hate Justin bieber.You hate the fact you ain't Justin Bieber!

  11.     
    #10
    Banned
    Website's:
    WarezRelease.org ThatHosting.co
    Here's SS:



    the code for success msg: core->Output

    the code for error msg: code->error

    ^^ submit.php

    PHP Code: 
    function linkback($link$ururl) {
    $ch curl_init($link);  
    curl_setopt($chCURLOPT_RETURNTRANSFER1);  
    curl_setopt($chCURLOPT_HEADER0);  
    curl_setopt($chCURLOPT_FOLLOWLOCATION1);  
    curl_setopt($chCURLOPT_USERAGENT'Opera/9.80 (Windows NT 5.1; U; en) Presto/2.7.62 Version/11.01');  
    $page curl_exec($ch);  
    curl_close($ch); 

    if (
    stripos($page,$ururl)===false
    return 
    false
    else 
    return 
    true;
    }

    $ururl "http://warezrelease.org";

    $reason "Add our linkback, then email us.";

    $date date("d-m-Y");

    if(
    linkback($surl,$ururl)) {
    mysql_query("INSERT INTO wcddl_queue (sid,title,type,url) VALUES ('".mysql_real_escape_string($sid)."','".mysql_real_escape_string($titles[$i])."','".mysql_real_escape_string($types[$i])."','".mysql_real_escape_string($urls[$i])."')");
    } else {
    $this->error .= 'We cant find our link on your site, please add it.';
    mysql_query("INSERT INTO wcddl_blacklist (url,reason,dat,email) VALUES ('".mysql_real_escape_string($surl)."','".mysql_real_escape_string($reason)."','".mysql_real_escape_string($date)."','".mysql_real_escape_string($email)."')");

    ^^ funcs.php

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. Linkback limit
    By ShareShiz in forum Forum and DDL Discussion
    Replies: 2
    Last Post: 11th Apr 2011, 07:15 PM
  2. [Selling] PR4 LinkBack (CHEAP!!)
    By ushare in forum Completed Transactions
    Replies: 8
    Last Post: 8th Jan 2011, 10:21 PM
  3. All ddl sites without requring linkback
    By ahsanalishahid in forum Forum and DDL Discussion
    Replies: 2
    Last Post: 24th Sep 2010, 05:40 PM
  4. Need DDL w/o linkback
    By CyberDeViLZ in forum Community Cooperative
    Replies: 5
    Last Post: 26th Jun 2010, 07:40 AM
  5. DDL's that require no linkback
    By ElementSnake in forum General Discussion
    Replies: 5
    Last Post: 19th Feb 2010, 02:25 PM

Tags for this Thread

BE SOCIAL