How to bypass the salespage and go directly to the order page

Discussion in 'ClickBank' started by just_life, Jan 11, 2008.

  1. #1
    Hi CB Gurus,

    Anyone here using ways to bypass the original sales page and go directly to the order page with aff id intact and cookie set?

    Thanks for sharing.
     
    just_life, Jan 11, 2008 IP
  2. falafelfro

    falafelfro Peon

    Messages:
    440
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    0
    #2
    I was wondering this too? How do we set up our affiliate credit directly in the link to the clickbank order page of the publisher?
     
    falafelfro, Jan 11, 2008 IP
  3. anarmyofme

    anarmyofme Well-Known Member

    Messages:
    1,136
    Likes Received:
    17
    Best Answers:
    0
    Trophy Points:
    130
  4. flip

    flip Peon

    Messages:
    691
    Likes Received:
    16
    Best Answers:
    0
    Trophy Points:
    0
    #4
    affiliate cloner...
     
    flip, Jan 11, 2008 IP
  5. GeorgR.

    GeorgR. Peon

    Messages:
    2,831
    Likes Received:
    78
    Best Answers:
    0
    Trophy Points:
    0
    #5
    do NOT do this! There has been a thread just a few days ago that CB stopped supporting this way of linking! You will not get any commission (anymore) !
     
    GeorgR., Jan 11, 2008 IP
  6. WilsonA

    WilsonA Active Member

    Messages:
    847
    Likes Received:
    18
    Best Answers:
    0
    Trophy Points:
    60
    #6
    it is no longer working if you try you are going to lose sales
    like crazy
     
    WilsonA, Jan 11, 2008 IP
  7. anarmyofme

    anarmyofme Well-Known Member

    Messages:
    1,136
    Likes Received:
    17
    Best Answers:
    0
    Trophy Points:
    130
    #7
    Thanks for the clarification guys!
     
    anarmyofme, Jan 11, 2008 IP
  8. Dagon

    Dagon Active Member

    Messages:
    122
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #8
    Actually it DOES work again!
     
    Dagon, Jan 11, 2008 IP
  9. WilsonA

    WilsonA Active Member

    Messages:
    847
    Likes Received:
    18
    Best Answers:
    0
    Trophy Points:
    60
    #9
    delete your cookies and try it
     
    WilsonA, Jan 11, 2008 IP
  10. ziffgone

    ziffgone Peon

    Messages:
    63
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #10
    Hi Just_Life,

    See my other thread, I created a Link Cloaker to do just this sort of thing:
    http://forums.digitalpoint.com/showthread.php?t=648039

    The bonus with the above link cloaker is that your cookie gets set before your visitor even clicks on the link.

    No, it still works fine. Plus there is a way of doing so that ClickBank can't do anything about.

    Regards,
    Perry.
     
    ziffgone, Jan 11, 2008 IP
  11. Dagon

    Dagon Active Member

    Messages:
    122
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #11
    It really works...check the site in my sig and try one of the buy buttons.
     
    Dagon, Jan 11, 2008 IP
  12. konradbraun

    konradbraun Peon

    Messages:
    842
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    0
    #12
    I still do it... works great!

    All you need is a little script that you implant on your website. PM me with "CB Code" in subject line if you want this code. Thanks!
     
    konradbraun, Jan 11, 2008 IP
  13. Dagon

    Dagon Active Member

    Messages:
    122
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #13
    I wrote a script to check whether your direct links still work. You can cron it and get a mail when the order page fails to include your affiliate id.

    <?php
    // modify this :
    $affiliateid = "myaffiliateid";
    $email = "test@test.com";
    // stop
    
    $url = "http://www.clickbank.net/sell.cgi?".$affiliateid."_5buckguy/1/5+Bucks+a+Day";
    $curl = curl_init();
    curl_setopt($curl, CURLOPT_HEADER, 1); 
    curl_setopt($curl, CURLOPT_URL, $url); 
    curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); 
    curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false); 
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
    $str = curl_exec($curl); 
    curl_close($curl);
    
    if (preg_match("/CLICKBANK SECURE ORDER FORM/", $str) and !preg_match("/affiliate = $affiliateid/i", $str))
    {
      // Enter actions to perform if your affiliate id is not on the order page, for example a warning mail:
      @mail($email,"Warning: ClickBank links broken","Your direct link to the clickbank order page has failed on ".date("d/m/Y H:i:s"));
    } 
    ?>
    PHP:
     
    Dagon, Jan 11, 2008 IP