Y T Nuke  
Results 1 to 42 of 42
Hey guys, below is info on DMR's that you may know or not know and ...
  1. #1
    seikooc's Avatar
    seikooc is offline Jr. VIP
    Join Date
    Aug 2008
    Location
    Blackhat World
    Posts
    275
    Reputation
    20
    Thanks
    20
    Thanked 125 Times in 57 Posts

    Default Blank Referer V2.0 - Meta-refresh DMR

    Hey guys, below is info on DMR's that you may know or not know and a solution for some traffic that would be otherwise lost.

    Here is the deal with DMR's that many people do not realize. With most scripts you meta-refresh to the 2nd page instantly whether or not it was blank or has a referer. Not a big deal right - WRONG!!

    The Normal Solution is that we are sending that traffic to another page that will see that the referer is not blank so it will not send. That precious traffic is now gone and will not make it to the aff link.

    The Problem: It is a big deal because some of your traffic will be blank from the get go in instances when you email and in a few other situations. And some of that blank traffic will be using browsers like Opera and Safari, and once it attempts to go through your DMR it will then carry your 1st page .php link as a referer to the second page which will now stop your traffic from reaching the aff link because it now has a referer. If we knew it was blank from the beginning then we should let the traffic continue to the aff link using a pass through method such as header("Location hxxp://affiliatelink.c0m"); ... This method will work on all browsers since it's not doing a meta-refresh and since it's blank and we know it then it's fine to just let it pass through.

    Now some people will say just send that traffic to an aff link that does not mind your referer, but remember that your referer is now just the 1st redirect page due to the full link being carried by those certain browsers (I don't care for any AM to know that link)...

    My solution: Send traffic to abc.php -----> Evaluates if blank or has a referer -------> If referer is blank send to aff link using header("location....) request and you are done! (no need to send to 2nd page and no need to use a meta-refresh)
    (if referer is present send to 2nd page using a meta-refresh) -------> 2nd page will determine if it is now blank ---------> If blank go to aff link -------> if not blank (usually due to browser) go to any other site.....

    These are typical situations:
    1. Blank referer with browser that allows DMR
    2. Non-blank referer with browser that allows DMR
    3. Blank referer with browser that does not allow DMR (NOW SOLVED)

    4. Non-blank referer with browser that does not allow DMR (have to dump that traffic, which this script does)

    So here are the scripts and the instructions to implement them:

    Script 1. Replace bing.com with your affiliate link & replace yoursite.com with whatever your site name is (xyz.php is file 2 so keep that intact after whatever your site name is .com ... example: http://billybobskoolaucitons.com/xyz.php)

    Save this file as abc.php
    PHP Code:
    <?php

        $referer 
    $_SERVER['HTTP_REFERER'];

        if(
    $referer == "")
        
    {

    header("Location: http://bing.com");

    }else{

    echo 
    "<meta http-equiv=\"refresh\"content=\"0;url=http://yoursite.com/xyz.php\">";

    }
    ?>
    Script 2. Replace bing.com with your affiliate link & replace dumpsite6000.com with any site that you want to dump non-blank traffic.

    Save this file as xyz.php
    PHP Code:
    <?php

        $referer 
    $_SERVER['HTTP_REFERER'];

        if(
    $referer == "")
        
    {

    header("Location: http://bing.com");

    }else{

    echo 
    "<meta http-equiv=\"refresh\"content=\"0;url=http://dumpsite6000.com\">";

    }
    ?>
    Now upload these 2 files to the root directory which is usually: /home/someusername/public_html/

    Then point your traffic to yoursite.c0m/abc.php

    Test it for yourself on browsers like FF vs Safari having no referer to begin with. And try it using a traditional DMR. The difference is the new one will make it to the aff link the old one will be wasted.

    If you get a good amount of email traffic this will help you out quite a bit. Works great for me.

    Hope you guys like it!!!

  2. The Following 24 Users Say Thank You to seikooc For This Useful Post:

    callmelucid (06-30-2009), cantzme (07-06-2009), cookiestuffing (07-04-2009), djedje70 (06-16-2009), gbherson (10-19-2009), gbmack (06-16-2009), haydenm92 (06-18-2009), hyp959 (06-18-2009), imshinji (04-04-2012), Jcsarokin (06-25-2009), kemetian (07-21-2009), lexus7 (10-04-2009), mojstermiha (06-10-2011), MR.blackhat (07-09-2009), multimedia (06-30-2009), Olegan (06-19-2009), pavionjsl (07-07-2009), pewep (08-03-2009), platinvm (06-30-2009), Spounki (06-25-2009), UncleJJ (09-11-2009), viptravis (07-05-2009), Vrindavan (07-17-2009), White-Collar (08-05-2009)

  3. #2
    gbmack is offline Power Member
    Join Date
    Apr 2009
    Posts
    688
    Reputation
    81
    Thanks
    315
    Thanked 635 Times in 188 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    Here are my results:

    1. I used http://www.svyt.com/referral.php as my "affiliate" link. This website lets you know if you got referred or not. Let's pretend I visited that website from google. The website would then say "You came from google."

    So I implemented these scripts... I made a post on my blog which hyperlinked to the DMRs. Guess what? It worked.

    I clicked on my hyperlink on my blog, it went straight to http://www.svyt.com/referral.php, and it said "No referral, Yay!"


    2. I tested this on Safari. I clicked on my hyperlink, and I went to google (i set the fallback link to google).



    Did you say that internet explorer and safari users will still make it to the CPA offer or not? I didn't quite get what you said.

    EDIT:
    I pm'd the OP and he said that internet explorer users will be able to get to the CPA offer via the DMR, but Safari users will not. I will test this tomorrow.

    It is confirmed that the DMR works, and Safari users go straight to the dumpsite.

    Now I just gotta test if internet explorer users will pass.

    I'm sure it will, so I'll give a rep ^_^.
    This is going to be VERY useful in my craigslist campaign. Thanks.
    Last edited by gbmack; 06-16-2009 at 05:00 AM.

  4. #3
    seikooc's Avatar
    seikooc is offline Jr. VIP
    Join Date
    Aug 2008
    Location
    Blackhat World
    Posts
    275
    Reputation
    20
    Thanks
    20
    Thanked 125 Times in 57 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    As long as you are using both files then IE and FF will work when coming in with a referer and without.

    For Safari and Opera you have to do a couple of things to test the difference between this script and a traditional DMR.

    1. Using my DMR open Opera or Safari and just type in your first php file link. This is using no referer from the get go. Then it should make it to your so called Aff link.

    2. Do the same thing, again no referer but using the old method of DMR and it will not go to the aff link as the first DMR will inject a referer and the 2nd PHP file will not allow it to pass.

    There is the difference between old and new.

  5. The Following User Says Thank You to seikooc For This Useful Post:

    multimedia (06-30-2009)

  6. #4
    Mr.Whitehat's Avatar
    Mr.Whitehat is offline Regular Member
    Join Date
    Apr 2009
    Location
    Behind The Yard !
    Posts
    234
    Reputation
    11
    Thanks
    47
    Thanked 48 Times in 26 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    Grt work bro

  7. #5
    haydenm92's Avatar
    haydenm92 is offline Junior Member
    Join Date
    Apr 2008
    Location
    Idaho
    Posts
    132
    Reputation
    10
    Thanks
    50
    Thanked 36 Times in 23 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    I will definitely be saving these scripts, they are awesome! Much appreciated

  8. #6
    seikooc's Avatar
    seikooc is offline Jr. VIP
    Join Date
    Aug 2008
    Location
    Blackhat World
    Posts
    275
    Reputation
    20
    Thanks
    20
    Thanked 125 Times in 57 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    Glad you guys like it. This script works on any site or hosting account that supports PHP.

  9. #7
    jabbidoo's Avatar
    jabbidoo is offline Junior Member
    Join Date
    Oct 2008
    Posts
    170
    Reputation
    25
    Thanks
    63
    Thanked 141 Times in 39 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    Okay, that the header redirect usually passes the referer isn't knew...but theoretically might be browsers or browser versions out there which do something different, because the BROWSER gets the header redirect and the BROWSER decides what he wants to do with it. So it might be possible that there are browser which leave a referer and does not pass it with h header redirect like not all browsers blank the referer when it gets a meta refresh. So you need to add e second header redirect!?

    Or do I have an error in reasoning?

  10. #8
    coolkid123's Avatar
    coolkid123 is offline Power Member
    Join Date
    May 2009
    Location
    On A Chair In The United Kingdom
    Posts
    562
    Reputation
    0
    Thanks
    79
    Thanked 665 Times in 100 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    the abc.php file comes up with a blank screen does that mean it has a referer or what?
    BHW ROCKS

  11. #9
    seikooc's Avatar
    seikooc is offline Jr. VIP
    Join Date
    Aug 2008
    Location
    Blackhat World
    Posts
    275
    Reputation
    20
    Thanks
    20
    Thanked 125 Times in 57 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    No... It means the script is not set correctly... Hit me on AIM

  12. #10
    multimedia's Avatar
    multimedia is offline Power Member
    Join Date
    Jun 2009
    Location
    CyBeRtRoN
    Posts
    664
    Reputation
    14
    Thanks
    175
    Thanked 884 Times in 124 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    Great post dude , but can you please explain about this dumping traffic thing..i am a noob at all this

  13. #11
    seikooc's Avatar
    seikooc is offline Jr. VIP
    Join Date
    Aug 2008
    Location
    Blackhat World
    Posts
    275
    Reputation
    20
    Thanks
    20
    Thanked 125 Times in 57 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    Quote Originally Posted by multimedia View Post
    Great post dude , but can you please explain about this dumping traffic thing..i am a noob at all this
    Well if you on the first entry there is a referer it sends to page 2 via a meta-refresh to remove the referer, if it on page 2 it still has a referer then it dumps the traffic to a site of your choice.

  14. The Following User Says Thank You to seikooc For This Useful Post:

    multimedia (06-30-2009)

  15. #12
    multimedia's Avatar
    multimedia is offline Power Member
    Join Date
    Jun 2009
    Location
    CyBeRtRoN
    Posts
    664
    Reputation
    14
    Thanks
    175
    Thanked 884 Times in 124 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    how does dumping traffic to a site help dude ?? in what kind of sites can u dump traffic and what is its use??

    Thanks.

  16. #13
    seikooc's Avatar
    seikooc is offline Jr. VIP
    Join Date
    Aug 2008
    Location
    Blackhat World
    Posts
    275
    Reputation
    20
    Thanks
    20
    Thanked 125 Times in 57 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    Quote Originally Posted by multimedia View Post
    how does dumping traffic to a site help dude ?? in what kind of sites can u dump traffic and what is its use??

    Thanks.
    Well if your traffic is carrying a referer that will not blank what do u think is the best thing to do with it???

    So if you are using email to drive traffic but your offer does not allow it then you would attempt to do a DMR... If the DMR is not successful you can send the traffic to another offer that may allow email traffic or just dump it to yahoo or wherever.

    It's to protect you from getting banned.

    Does that make sense???

  17. The Following User Says Thank You to seikooc For This Useful Post:

    multimedia (06-30-2009)

  18. #14
    multimedia's Avatar
    multimedia is offline Power Member
    Join Date
    Jun 2009
    Location
    CyBeRtRoN
    Posts
    664
    Reputation
    14
    Thanks
    175
    Thanked 884 Times in 124 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    yeah dude perfectly , thanks for bearing a noob like me..so one last question , does your awesome script dump the traffic if they r carrying email referral automatically??

  19. #15
    seikooc's Avatar
    seikooc is offline Jr. VIP
    Join Date
    Aug 2008
    Location
    Blackhat World
    Posts
    275
    Reputation
    20
    Thanks
    20
    Thanked 125 Times in 57 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    Quote Originally Posted by multimedia View Post
    yeah dude perfectly , thanks for bearing a noob like me..so one last question , does your awesome script dump the traffic if they r carrying email referral automatically??
    Nope... because it attempts to blank it first.... Then if it does not then it dumps it... See what i mean???

  20. The Following User Says Thank You to seikooc For This Useful Post:

    multimedia (06-30-2009)

  21. #16
    multimedia's Avatar
    multimedia is offline Power Member
    Join Date
    Jun 2009
    Location
    CyBeRtRoN
    Posts
    664
    Reputation
    14
    Thanks
    175
    Thanked 884 Times in 124 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    ya i see what u mean man .. so either way , my ass will be safe from getting banned , right dude?? I guess i can use this script for my GODCPA offers..dude Thanks a lot for this great script of yours man

  22. #17
    callmelucid's Avatar
    callmelucid is offline Regular Member
    Join Date
    Feb 2009
    Posts
    485
    Reputation
    55
    Thanks
    713
    Thanked 435 Times in 102 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    very nice! thanks a lot! will it look sketchy though if you have hundreds of clicks but none from certain web browsers?


  23. The Following User Says Thank You to callmelucid For This Useful Post:

    multimedia (06-30-2009)

  24. #18
    multimedia's Avatar
    multimedia is offline Power Member
    Join Date
    Jun 2009
    Location
    CyBeRtRoN
    Posts
    664
    Reputation
    14
    Thanks
    175
    Thanked 884 Times in 124 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    yeah please answer this question friend .. i am planning to divert all the traffic for my CPA Offers via EMails and one porn site ...so how will CPA Comapnies be convinced that the offers are getting leads from high traffic and legit sites if there is no referral??

  25. #19
    theundreamer's Avatar
    theundreamer is offline Registered Member
    Join Date
    Nov 2008
    Location
    Here
    Age
    26
    Posts
    77
    Reputation
    10
    Thanks
    2
    Thanked 12 Times in 8 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    Doesn't work for me. gives me some page with a warning: can't change Header

    or something like that.
    I just made over $1000 yesterday, can you?
    Zero Friction Marketing

  26. #20
    seikooc's Avatar
    seikooc is offline Jr. VIP
    Join Date
    Aug 2008
    Location
    Blackhat World
    Posts
    275
    Reputation
    20
    Thanks
    20
    Thanked 125 Times in 57 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    Quote Originally Posted by multimedia View Post
    ya i see what u mean man .. so either way , my ass will be safe from getting banned , right dude?? I guess i can use this script for my GODCPA offers..dude Thanks a lot for this great script of yours man
    I am not sure about GodCPA but I don't see why it would not work.

    Quote Originally Posted by callmelucid View Post
    very nice! thanks a lot! will it look sketchy though if you have hundreds of clicks but none from certain web browsers?
    Well those browsers may never have come with a referer to begin with so they would pass through anyways. Now if you can send your web page as the referer then you could send the ones with a referer to a PHP script that fakes the referer from your site. Check out: http://www.blackhatworld.com/blackha...tml#post781922

    Quote Originally Posted by multimedia View Post
    yeah please answer this question friend .. i am planning to divert all the traffic for my CPA Offers via EMails and one porn site ...so how will CPA Comapnies be convinced that the offers are getting leads from high traffic and legit sites if there is no referral??
    Well you could fake the referer by sending to a whitehat site and faking the referer as described above. See: http://www.blackhatworld.com/blackha...tml#post781922

    Quote Originally Posted by theundreamer View Post
    Doesn't work for me. gives me some page with a warning: can't change Header

    or something like that.
    What browser are you using?? Should not give that error....

  27. The Following User Says Thank You to seikooc For This Useful Post:

    multimedia (07-02-2009)

  28. #21
    multimedia's Avatar
    multimedia is offline Power Member
    Join Date
    Jun 2009
    Location
    CyBeRtRoN
    Posts
    664
    Reputation
    14
    Thanks
    175
    Thanked 884 Times in 124 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    Dude selkooc , the scripts you have written are totally awesome man ..everything is working perfectly as you said..i took some time to understand though

  29. #22
    coolkid123's Avatar
    coolkid123 is offline Power Member
    Join Date
    May 2009
    Location
    On A Chair In The United Kingdom
    Posts
    562
    Reputation
    0
    Thanks
    79
    Thanked 665 Times in 100 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    you didnt tell me whats wrong with this, on abc.php it just goes blank, plz respond
    BHW ROCKS

  30. #23
    multimedia's Avatar
    multimedia is offline Power Member
    Join Date
    Jun 2009
    Location
    CyBeRtRoN
    Posts
    664
    Reputation
    14
    Thanks
    175
    Thanked 884 Times in 124 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    selkooc , i suddenly got a stupid question ..cant we just use "Fake The Referrer" you made instead of your DMM V2??I find that there is virtually no difference between both of your scripts , am i missing something??

    Thanks dude..

  31. #24
    seikooc's Avatar
    seikooc is offline Jr. VIP
    Join Date
    Aug 2008
    Location
    Blackhat World
    Posts
    275
    Reputation
    20
    Thanks
    20
    Thanked 125 Times in 57 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    Quote Originally Posted by coolkid123 View Post
    you didnt tell me whats wrong with this, on abc.php it just goes blank, plz respond
    Hit me up on AIM... Last time we chatted you took off...

    Quote Originally Posted by multimedia View Post
    selkooc , i suddenly got a stupid question ..cant we just use "Fake The Referrer" you made instead of your DMM V2??I find that there is virtually no difference between both of your scripts , am i missing something??

    Thanks dude..
    Well they are both needed depending on your objective. Sometime you will need to blank the referer and so DMR will be necessary.

    Sometimes you will need the network to see that your traffic comes from your site although it may not so you will need to fake the referer..

    See what I mean?

  32. The Following User Says Thank You to seikooc For This Useful Post:

    multimedia (07-02-2009)

  33. #25
    multimedia's Avatar
    multimedia is offline Power Member
    Join Date
    Jun 2009
    Location
    CyBeRtRoN
    Posts
    664
    Reputation
    14
    Thanks
    175
    Thanked 884 Times in 124 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    Yes dude i got you .. so i want to get Leads from a temporary BLOG with fake downloads..i am basically tricking people ..

    So , should i go for DMR or fake the referer dude??

  34. #26
    seikooc's Avatar
    seikooc is offline Jr. VIP
    Join Date
    Aug 2008
    Location
    Blackhat World
    Posts
    275
    Reputation
    20
    Thanks
    20
    Thanked 125 Times in 57 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    Hit me on AIM or Gtalk... I would say DMR for that but depending on the network you send traffic to...

  35. The Following User Says Thank You to seikooc For This Useful Post:

    multimedia (07-02-2009)

  36. #27
    multimedia's Avatar
    multimedia is offline Power Member
    Join Date
    Jun 2009
    Location
    CyBeRtRoN
    Posts
    664
    Reputation
    14
    Thanks
    175
    Thanked 884 Times in 124 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    Sent u a PM mate

    BTW i am using Affiliateer.com .. shall i do DMR , then?? with your script i might even dump traffic

  37. The Following User Says Thank You to multimedia For This Useful Post:

    seikooc (07-02-2009)

  38. #28
    coolkid123's Avatar
    coolkid123 is offline Power Member
    Join Date
    May 2009
    Location
    On A Chair In The United Kingdom
    Posts
    562
    Reputation
    0
    Thanks
    79
    Thanked 665 Times in 100 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    ok, when you available on gtalk i will ask
    BHW ROCKS

  39. #29
    seikooc's Avatar
    seikooc is offline Jr. VIP
    Join Date
    Aug 2008
    Location
    Blackhat World
    Posts
    275
    Reputation
    20
    Thanks
    20
    Thanked 125 Times in 57 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    I am on now...

  40. The Following User Says Thank You to seikooc For This Useful Post:

    multimedia (07-02-2009)

  41. #30
    coolkid123's Avatar
    coolkid123 is offline Power Member
    Join Date
    May 2009
    Location
    On A Chair In The United Kingdom
    Posts
    562
    Reputation
    0
    Thanks
    79
    Thanked 665 Times in 100 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    Cool, Now I Hope This Works For Me
    BHW ROCKS

  42. #31
    coolkid123's Avatar
    coolkid123 is offline Power Member
    Join Date
    May 2009
    Location
    On A Chair In The United Kingdom
    Posts
    562
    Reputation
    0
    Thanks
    79
    Thanked 665 Times in 100 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    Damn I Can't Even Use This Just When I Realized The Problem Coz I Can't Get Into CPA Networks (I Was Planning On Using This For My Friend And His CPA Account Got Banned) Oh Well... Life Goes On!
    BHW ROCKS

  43. #32
    Implicated is offline Newbie
    Join Date
    Nov 2008
    Posts
    45
    Reputation
    10
    Thanks
    2
    Thanked 1 Time in 1 Post

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    if i understand this correctly this script WILL change the referrer OR dump the traffic? making sure there is no bad traffic getting through?

  44. #33
    coolkid123's Avatar
    coolkid123 is offline Power Member
    Join Date
    May 2009
    Location
    On A Chair In The United Kingdom
    Posts
    562
    Reputation
    0
    Thanks
    79
    Thanked 665 Times in 100 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    try CPA Bullet, man. The owner is a member here. I got accepted with no website.
    Cool Info I Will Try
    BHW ROCKS

  45. #34
    mosoi148's Avatar
    mosoi148 is offline Regular Member
    Join Date
    Apr 2009
    Location
    In My Head
    Posts
    364
    Reputation
    37
    Thanks
    219
    Thanked 196 Times in 124 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    Quote Originally Posted by jumper066 View Post
    try CPA Bullet, man. The owner is a member here. I got accepted with no website.
    He must be, check out their blog:

    Code:
    http://cpabullet.com/blog/?p=68
    Try to realize the truth: There is no box.

  46. #35
    coolkid123's Avatar
    coolkid123 is offline Power Member
    Join Date
    May 2009
    Location
    On A Chair In The United Kingdom
    Posts
    562
    Reputation
    0
    Thanks
    79
    Thanked 665 Times in 100 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    What Proof Of Being A Member Of Bhw In The Blog? Plus If Your On Here Plz Accept Me
    BHW ROCKS

  47. #36
    coolkid123's Avatar
    coolkid123 is offline Power Member
    Join Date
    May 2009
    Location
    On A Chair In The United Kingdom
    Posts
    562
    Reputation
    0
    Thanks
    79
    Thanked 665 Times in 100 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    Can't Sign up Damn Tax ID Or SSN Required
    BHW ROCKS

  48. #37
    tq6643 is offline Newbies
    Join Date
    Apr 2009
    Posts
    14
    Reputation
    10
    Thanks
    27
    Thanked 12 Times in 1 Post

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    Doesn't work for me on ie and safari but its ok with FF.

    Error Message:
    "Cannot modify header information - headers already sent by" bla bla bla

    any idea?

  49. #38
    blackhatjohn's Avatar
    blackhatjohn is offline Regular Member
    Join Date
    Feb 2009
    Posts
    332
    Reputation
    12
    Thanks
    743
    Thanked 358 Times in 26 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    I like to know whether if i use DMR, will my cpa account getting banned or the AM will ask something about where the traffic i get?

    I am asking this because currently i crawl CL to get many email list and then just send them out by using gmail, basically i just directly send the traffic to cpa offer landing page and i dont have a whitehat website.

    I am new to cpa and like some suggestion so that my cpa account will not get banned. Thanks

  50. #39
    WorkingOnIt is offline Registered Member
    Join Date
    Aug 2010
    Posts
    64
    Reputation
    8
    Thanks
    5
    Thanked 3 Times in 3 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    Quote Originally Posted by blackhatjohn View Post
    I like to know whether if i use DMR, will my cpa account getting banned or the AM will ask something about where the traffic i get?

    I am asking this because currently i crawl CL to get many email list and then just send them out by using gmail, basically i just directly send the traffic to cpa offer landing page and i dont have a whitehat website.

    I am new to cpa and like some suggestion so that my cpa account will not get banned. Thanks
    I know that this thread is old, but i would like to know the answer too

  51. #40
    mojstermiha's Avatar
    mojstermiha is offline FB Spy
    Join Date
    Jul 2010
    Posts
    340
    Reputation
    223
    Thanks
    147
    Thanked 924 Times in 87 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    How much slower is the redirect comapred to direct linking?

  52. #41
    neo145 is offline Newbies
    Join Date
    Dec 2010
    Posts
    6
    Reputation
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    nice man i need to test this

  53. #42
    exceeds's Avatar
    exceeds is offline Junior Member
    Join Date
    Oct 2011
    Posts
    131
    Reputation
    18
    Thanks
    68
    Thanked 19 Times in 14 Posts

    Default Re: Blank Referer V2.0 - Meta-refresh DMR

    already worked with me.. but i get litle confused.. is it i must change both bingdotcom with my affiliate link..?? or only for the first script..??

Dot Gov Backlinks Sale


Smarter Submit

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
  SEnukeX SEO Software
Proudly Powered by Hostwinds.com Web Hosting Click Here For Exclusive BHW Discounts!

Cheap Web Hosting


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75