Go Back   WarriorForum - Internet Marketing Forums > The Warrior Forum > Ad Networks - CPA, CPM, CPL - Millionaire Makers..
Register Blogs FAQ Social Groups CalendarHelp Desk

Reply
 
LinkBack Thread Tools
Old 05-09-2010, 04:49 PM   #1
Warrior Member
 
Join Date: Apr 2010
Posts: 12
Thanks: 0
Thanked 1 Time in 1 Post
Default Point of hiding referrer?

If you are doing everything completely white hat what is that point of hiding where your traffic comes from? Kinda confused on why everyone does it.
KMatt is offline   Reply With Quote
Old 05-09-2010, 05:04 PM   #2
Affiliit Marketing Mentor
 
Affiliit's Avatar
 
Join Date: Aug 2009
Posts: 288
Thanks: 2
Thanked 8 Times in 8 Posts
Social Networking View Member's Twitter Profile 
Default Re: Point of hiding referrer?

People don't want networks/advertisers to steal there landing pages

Learn Affiliate Marketing - Affiliit - Learn How to Make money with Facebook, POF, CPV/PPV, PPC, SEO, etc!
Try Out Affiliit Now And See How Hundreds are Making Money Online!
Affiliit is offline   Reply With Quote
Old 05-09-2010, 07:20 PM   #3
Senior Warrior Member
War Room Member
 
williamrs's Avatar
 
Join Date: Aug 2009
Location: Brazil
Posts: 3,496
Thanks: 174
Thanked 1,159 Times in 614 Posts
Default Re: Point of hiding referrer?

Many affiliate managers are affiliates, too. So many people (specially big affiliates) blank the referrer in order to protect their traffic sources.

>> STOP... <<
Stop struggling alone. Stop wasting time. Stop being scammed.


williamrs is offline   Reply With Quote
Old 05-09-2010, 07:53 PM   #4
Krazy Kenster
War Room Member
 
Kenster's Avatar
 
Join Date: Jan 2009
Posts: 5,111
Blog Entries: 11
Thanks: 672
Thanked 2,009 Times in 885 Posts
Default Re: Point of hiding referrer?

hiding your traffic = protecting your assets in many situations as described above. Its tough to hide what you are doing to the world because your ads/landing pages, etc are public, but you do try and hide as much as possible on the backend such as revenue you are making, etc which the networks can see.

Kenster is offline   Reply With Quote
Old 05-09-2010, 07:57 PM   #5
Warrior Member
 
Join Date: Sep 2009
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: Point of hiding referrer?

To protect your landing page and source of traffic
uche2rue is offline   Reply With Quote
Old 05-09-2010, 08:03 PM   #6
I'll Make You Rich
 
RyanEagle's Avatar
 
Join Date: Dec 2009
Location: Chicago, IL
Posts: 690
Thanks: 7
Thanked 94 Times in 76 Posts
Social Networking View Member's Myspace Profile  View Member's FaceBook Profile  View Member's Twitter Profile 
Contact Info
Send a message via AIM to RyanEagle
Default Re: Point of hiding referrer?

We always suggest to our affiliates to hide that information - we don't need to see people's landing pages.

RyanEagle is online now   Reply With Quote
Old 05-13-2010, 08:41 AM   #7
Warrior Member
 
Join Date: Apr 2010
Posts: 12
Thanks: 0
Thanked 1 Time in 1 Post
Default Re: Point of hiding referrer?

Ok so I put a redirect in to hide my landing page and am using
<meta http-equiv="refresh" content="0;url='affiliate link'">
on my redirect page but when it goes to the affilate site the link is like affiliatesite.com/subid=oskmsejkmgeoakmfoeme and gives like tracking id and such. what other code do I need to add in to hide the affiliate link using that code?
KMatt is offline   Reply With Quote
Old 05-13-2010, 09:54 AM   #8
HyperActive Warrior
War Room Member
 
proaffiliate26's Avatar
 
Join Date: Feb 2010
Posts: 182
Thanks: 29
Thanked 191 Times in 23 Posts
Contact Info
Send a message via AIM to proaffiliate26 Send a message via Skype™ to proaffiliate26
Default Re: Point of hiding referrer?

If you want a simple way to hide your referrer, consider checking out:

Professional Short URL Cloaking Service

It's really cheap if you want to upgrade:
http://www.shrten.me/upgrade.html

If you ever need any help, don't hesitate to contact me! I love giving back to the community...
Want to see the GREATEST list of websites to help you make money online? Check out this post!

proaffiliate26 is offline   Reply With Quote
Old 05-13-2010, 09:55 AM   #9
Warrior Member
 
Join Date: Oct 2005
Location: , , .
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: Point of hiding referrer?

Quote:
Originally Posted by KMatt View Post
Ok so I put a redirect in to hide my landing page and am using
<meta http-equiv="refresh" content="0;url='affiliate link'">
on my redirect page but when it goes to the affilate site the link is like affiliatesite.com/subid=oskmsejkmgeoakmfoeme and gives like tracking id and such. what other code do I need to add in to hide the affiliate link using that code?
you need to do a double meta-refresh to really blank the referrer...

You have a link on your page that links to URL1, which then sends you to URL2, which then sends you to your affiliate link if the referrer is blank.

<?php
$referer = $_SERVER['HTTP_REFERER'];
if($referer == "")
{
echo "<meta http-equiv=\"refresh\" content=\"0;url=URL2\">";
}
?>

<?php
$referer = $_SERVER['HTTP_REFERER'];
if($referer == "")
{
echo "<meta http-equiv=\"refresh\" content=\"0;url=youraffiliatelink.com\">";
}
?>
dreamedia is offline   Reply With Quote
Old 05-13-2010, 10:27 AM   #10
Senior Warrior Member
War Room Member
 
williamrs's Avatar
 
Join Date: Aug 2009
Location: Brazil
Posts: 3,496
Thanks: 174
Thanked 1,159 Times in 614 Posts
Default Re: Point of hiding referrer?

Your PHP script checks if the referral is blank in both pages. So, most of the times you won't get the expected result in the first page. You should try something like this:


page1.html (send people from your landing page to this page)

<meta http-equiv=\"refresh\" content=\"0;url=page2.php\">

//remove all the \ before the "



page2.php (upload this file to the same directory as page1.html)

<?php

if (($_SERVER['HTTP_REFERER'] == "") || ($_SERVER['HTTP_REFERER'] == null))

echo "<meta http-equiv=\"refresh\" content=\"0;url=affiliate_link\">";

else

header("Location: page1.html");

?>

>> STOP... <<
Stop struggling alone. Stop wasting time. Stop being scammed.


williamrs is offline   Reply With Quote
Reply

  WarriorForum - Internet Marketing Forums > The Warrior Forum > Ad Networks - CPA, CPM, CPL - Millionaire Makers..

Tags
hiding, point, referrer

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -6. The time now is 04:20 PM.