|
|
|
 |

06-16-2009, 03:32 AM
|
 |
Jr. VIP
|
|
Join Date: Aug 2008
Location: Blackhat World
Posts: 274
Thanks: 20
Thanked 124 Times in 57 Posts
Reputation: 20
|
|
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!!!
|
|
The Following 23 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),
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)
|

06-16-2009, 05:34 AM
|
|
Power Member
|
|
Join Date: Apr 2009
Posts: 687
Thanks: 314
Thanked 635 Times in 188 Posts
Reputation: 81
|
|
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 06:00 AM.
|

06-16-2009, 06:17 PM
|
 |
Jr. VIP
|
|
Join Date: Aug 2008
Location: Blackhat World
Posts: 274
Thanks: 20
Thanked 124 Times in 57 Posts
Reputation: 20
|
|
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.
|
|
The Following User Says Thank You to seikooc For This Useful Post:
|
|

06-18-2009, 01:58 AM
|
 |
Regular Member
|
|
Join Date: Apr 2009
Location: Behind The Yard !
Posts: 236
Thanks: 47
Thanked 47 Times in 26 Posts
Reputation: 11
|
|
Re: Blank Referer V2.0 - Meta-refresh DMR
Grt work bro
|

06-18-2009, 03:57 PM
|
 |
Junior Member
|
|
Join Date: Apr 2008
Location: Idaho
Posts: 132
Thanks: 50
Thanked 36 Times in 23 Posts
Reputation: 10
|
|
Re: Blank Referer V2.0 - Meta-refresh DMR
I will definitely be saving these scripts, they are awesome! Much appreciated
|

06-29-2009, 10:53 PM
|
 |
Jr. VIP
|
|
Join Date: Aug 2008
Location: Blackhat World
Posts: 274
Thanks: 20
Thanked 124 Times in 57 Posts
Reputation: 20
|
|
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.
|

06-29-2009, 11:08 PM
|
 |
Junior Member
|
|
Join Date: Oct 2008
Posts: 170
Thanks: 63
Thanked 141 Times in 39 Posts
Reputation: 25
|
|
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?
|

06-30-2009, 06:44 PM
|
 |
Power Member
|
|
Join Date: May 2009
Location: On A Chair In The United Kingdom
Posts: 562
Thanks: 79
Thanked 663 Times in 99 Posts
Reputation: 0
|
|
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
|

06-30-2009, 07:15 PM
|
 |
Jr. VIP
|
|
Join Date: Aug 2008
Location: Blackhat World
Posts: 274
Thanks: 20
Thanked 124 Times in 57 Posts
Reputation: 20
|
|
Re: Blank Referer V2.0 - Meta-refresh DMR
No... It means the script is not set correctly... Hit me on AIM
|

06-30-2009, 07:29 PM
|
 |
Power Member
|
|
Join Date: Jun 2009
Location: CyBeRtRoN
Posts: 664
Thanks: 175
Thanked 884 Times in 124 Posts
Reputation: 14
|
|
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
|

06-30-2009, 08:11 PM
|
 |
Jr. VIP
|
|
Join Date: Aug 2008
Location: Blackhat World
Posts: 274
Thanks: 20
Thanked 124 Times in 57 Posts
Reputation: 20
|
|
Re: Blank Referer V2.0 - Meta-refresh DMR
Quote:
Originally Posted by multimedia
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.
|
|
The Following User Says Thank You to seikooc For This Useful Post:
|
|

06-30-2009, 08:16 PM
|
 |
Power Member
|
|
Join Date: Jun 2009
Location: CyBeRtRoN
Posts: 664
Thanks: 175
Thanked 884 Times in 124 Posts
Reputation: 14
|
|
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.
|

06-30-2009, 08:22 PM
|
 |
Jr. VIP
|
|
Join Date: Aug 2008
Location: Blackhat World
Posts: 274
Thanks: 20
Thanked 124 Times in 57 Posts
Reputation: 20
|
|
Re: Blank Referer V2.0 - Meta-refresh DMR
Quote:
Originally Posted by multimedia
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???
|
|
The Following User Says Thank You to seikooc For This Useful Post:
|
|

06-30-2009, 08:47 PM
|
 |
Power Member
|
|
Join Date: Jun 2009
Location: CyBeRtRoN
Posts: 664
Thanks: 175
Thanked 884 Times in 124 Posts
Reputation: 14
|
|
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??
|

06-30-2009, 08:56 PM
|
 |
Jr. VIP
|
|
Join Date: Aug 2008
Location: Blackhat World
Posts: 274
Thanks: 20
Thanked 124 Times in 57 Posts
Reputation: 20
|
|
Re: Blank Referer V2.0 - Meta-refresh DMR
Quote:
Originally Posted by multimedia
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???
|
|
The Following User Says Thank You to seikooc For This Useful Post:
|
|

06-30-2009, 09:00 PM
|
 |
Power Member
|
|
Join Date: Jun 2009
Location: CyBeRtRoN
Posts: 664
Thanks: 175
Thanked 884 Times in 124 Posts
Reputation: 14
|
|
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
|

06-30-2009, 09:08 PM
|
 |
Regular Member
|
|
Join Date: Feb 2009
Posts: 485
Thanks: 713
Thanked 434 Times in 102 Posts
Reputation: 55
|
|
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?
__________________
|
|
The Following User Says Thank You to callmelucid For This Useful Post:
|
|

06-30-2009, 09:13 PM
|
 |
Power Member
|
|
Join Date: Jun 2009
Location: CyBeRtRoN
Posts: 664
Thanks: 175
Thanked 884 Times in 124 Posts
Reputation: 14
|
|
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??
|

07-01-2009, 02:54 AM
|
 |
Registered Member
|
|
Join Date: Nov 2008
Location: Here
Posts: 77
Thanks: 2
Thanked 12 Times in 8 Posts
Reputation: 10
|
|
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.
|

07-01-2009, 03:14 AM
|
 |
Jr. VIP
|
|
Join Date: Aug 2008
Location: Blackhat World
Posts: 274
Thanks: 20
Thanked 124 Times in 57 Posts
Reputation: 20
|
|
Re: Blank Referer V2.0 - Meta-refresh DMR
Quote:
Originally Posted by multimedia
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
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
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
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....
|
|
The Following User Says Thank You to seikooc For This Useful Post:
|
|

07-02-2009, 02:07 PM
|
 |
Power Member
|
|
Join Date: Jun 2009
Location: CyBeRtRoN
Posts: 664
Thanks: 175
Thanked 884 Times in 124 Posts
Reputation: 14
|
|
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
|

07-02-2009, 02:11 PM
|
 |
Power Member
|
|
Join Date: May 2009
Location: On A Chair In The United Kingdom
Posts: 562
Thanks: 79
Thanked 663 Times in 99 Posts
Reputation: 0
|
|
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
|

07-02-2009, 02:43 PM
|
 |
Power Member
|
|
Join Date: Jun 2009
Location: CyBeRtRoN
Posts: 664
Thanks: 175
Thanked 884 Times in 124 Posts
Reputation: 14
|
|
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..
|

07-02-2009, 05:52 PM
|
 |
Jr. VIP
|
|
Join Date: Aug 2008
Location: Blackhat World
Posts: 274
Thanks: 20
Thanked 124 Times in 57 Posts
Reputation: 20
|
|
Re: Blank Referer V2.0 - Meta-refresh DMR
Quote:
Originally Posted by coolkid123
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
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?
|
|
The Following User Says Thank You to seikooc For This Useful Post:
|
|

07-02-2009, 06:28 PM
|
 |
Power Member
|
|
Join Date: Jun 2009
Location: CyBeRtRoN
Posts: 664
Thanks: 175
Thanked 884 Times in 124 Posts
Reputation: 14
|
|
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??
|

07-02-2009, 06:35 PM
|
 |
Jr. VIP
|
|
Join Date: Aug 2008
Location: Blackhat World
Posts: 274
Thanks: 20
Thanked 124 Times in 57 Posts
Reputation: 20
|
|
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...
|
|
The Following User Says Thank You to seikooc For This Useful Post:
|
|

07-02-2009, 06:39 PM
|
 |
Power Member
|
|
Join Date: Jun 2009
Location: CyBeRtRoN
Posts: 664
Thanks: 175
Thanked 884 Times in 124 Posts
Reputation: 14
|
|
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
|
|
The Following User Says Thank You to multimedia For This Useful Post:
|
|

07-02-2009, 07:28 PM
|
 |
Power Member
|
|
Join Date: May 2009
Location: On A Chair In The United Kingdom
Posts: 562
Thanks: 79
Thanked 663 Times in 99 Posts
Reputation: 0
|
|
Re: Blank Referer V2.0 - Meta-refresh DMR
ok, when you available on gtalk i will ask
__________________
BHW ROCKS
|

07-02-2009, 07:36 PM
|
 |
Jr. VIP
|
|
Join Date: Aug 2008
Location: Blackhat World
Posts: 274
Thanks: 20
Thanked 124 Times in 57 Posts
Reputation: 20
|
|
Re: Blank Referer V2.0 - Meta-refresh DMR
I am on now...
|
|
The Following User Says Thank You to seikooc For This Useful Post:
|
|

07-02-2009, 07:41 PM
|
 |
Power Member
|
|
Join Date: May 2009
Location: On A Chair In The United Kingdom
Posts: 562
Thanks: 79
Thanked 663 Times in 99 Posts
Reputation: 0
|
|
Re: Blank Referer V2.0 - Meta-refresh DMR
__________________
BHW ROCKS
|

07-03-2009, 07:43 PM
|
 |
Power Member
|
|
Join Date: May 2009
Location: On A Chair In The United Kingdom
Posts: 562
Thanks: 79
Thanked 663 Times in 99 Posts
Reputation: 0
|
|
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
|

07-05-2009, 03:33 AM
|
|
Newbie
|
|
Join Date: Nov 2008
Posts: 45
Thanks: 2
Thanked 1 Time in 1 Post
Reputation: 10
|
|
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?
|

07-05-2009, 10:24 AM
|
 |
Power Member
|
|
Join Date: May 2009
Location: On A Chair In The United Kingdom
Posts: 562
Thanks: 79
Thanked 663 Times in 99 Posts
Reputation: 0
|
|
Re: Blank Referer V2.0 - Meta-refresh DMR
Quote:
|
try CPA Bullet, man. The owner is a member here. I got accepted with no website.
|
Cool Info I Will Try
__________________
BHW ROCKS
|

07-07-2009, 07:10 AM
|
 |
Regular Member
|
|
Join Date: Apr 2009
Location: In My Head
Posts: 365
Thanks: 219
Thanked 196 Times in 124 Posts
Reputation: 37
|
|
Re: Blank Referer V2.0 - Meta-refresh DMR
Quote:
Originally Posted by jumper066
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.
|

07-07-2009, 07:40 AM
|
 |
Power Member
|
|
Join Date: May 2009
Location: On A Chair In The United Kingdom
Posts: 562
Thanks: 79
Thanked 663 Times in 99 Posts
Reputation: 0
|
|
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
|

07-07-2009, 07:41 AM
|
 |
Power Member
|
|
Join Date: May 2009
Location: On A Chair In The United Kingdom
Posts: 562
Thanks: 79
Thanked 663 Times in 99 Posts
Reputation: 0
|
|
Re: Blank Referer V2.0 - Meta-refresh DMR
Can't Sign up Damn Tax ID Or SSN Required
__________________
BHW ROCKS
|

07-09-2009, 11:35 AM
|
|
Newbies
|
|
Join Date: Apr 2009
Posts: 14
Thanks: 27
Thanked 12 Times in 1 Post
Reputation: 10
|
|
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?
|

07-10-2009, 12:34 AM
|
 |
Regular Member
|
|
Join Date: Feb 2009
Posts: 341
Thanks: 743
Thanked 357 Times in 25 Posts
Reputation: 12
|
|
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
|

09-11-2010, 08:01 PM
|
|
Registered Member
|
|
Join Date: Aug 2010
Posts: 64
Thanks: 5
Thanked 3 Times in 3 Posts
Reputation: 8
|
|
Re: Blank Referer V2.0 - Meta-refresh DMR
Quote:
Originally Posted by blackhatjohn
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
|

06-10-2011, 10:32 AM
|
 |
FB Spy
|
|
Join Date: Jul 2010
Posts: 262
Thanks: 124
Thanked 744 Times in 59 Posts
Reputation: 175
|
|
Re: Blank Referer V2.0 - Meta-refresh DMR
How much slower is the redirect comapred to direct linking?
|

06-10-2011, 05:21 PM
|
|
Newbies
|
|
Join Date: Dec 2010
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Reputation: 10
|
|
Re: Blank Referer V2.0 - Meta-refresh DMR
nice man i need to test this
|

10-08-2011, 07:07 AM
|
 |
Newbies
|
|
Join Date: Oct 2011
Posts: 35
Thanks: 42
Thanked 6 Times in 5 Posts
Reputation: 10
|
|
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..??
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|