<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: EPN Newsletter &#8211; Referring URL Visibilty</title>
	<atom:link href="http://www.money-code.com/2009/07/epn-newsletter-referring-url-visibilty/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.money-code.com/2009/07/epn-newsletter-referring-url-visibilty/</link>
	<description>Coding For Online Success</description>
	<lastBuildDate>Sat, 13 Feb 2010 19:26:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: admin</title>
		<link>http://www.money-code.com/2009/07/epn-newsletter-referring-url-visibilty/comment-page-1/#comment-440</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 23 Jul 2009 01:00:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.money-code.com/?p=449#comment-440</guid>
		<description>Hello Mike

I believe this could affect BANS eventually. I think the actual rule is the SEO redirecting is okay. As for me, I&#039;m in the process of converting back to rover. It seems like they&#039;re pushing for tighter and tighter restrictions. After talking with a few EPN badasses, they pointed out that they do not do SEO redirects themselves, so I figured that would be the safe direction for me.

Thanks for commenting!</description>
		<content:encoded><![CDATA[<p>Hello Mike</p>
<p>I believe this could affect BANS eventually. I think the actual rule is the SEO redirecting is okay. As for me, I&#8217;m in the process of converting back to rover. It seems like they&#8217;re pushing for tighter and tighter restrictions. After talking with a few EPN badasses, they pointed out that they do not do SEO redirects themselves, so I figured that would be the safe direction for me.</p>
<p>Thanks for commenting!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://www.money-code.com/2009/07/epn-newsletter-referring-url-visibilty/comment-page-1/#comment-438</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Thu, 23 Jul 2009 00:53:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.money-code.com/?p=449#comment-438</guid>
		<description>Will this affect BAN stores?</description>
		<content:encoded><![CDATA[<p>Will this affect BAN stores?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.money-code.com/2009/07/epn-newsletter-referring-url-visibilty/comment-page-1/#comment-347</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 17 Jul 2009 18:48:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.money-code.com/?p=449#comment-347</guid>
		<description>There is some chatter going on at the EPN forums right now. Looks like URL shortening services are counted as invalid clicks.</description>
		<content:encoded><![CDATA[<p>There is some chatter going on at the EPN forums right now. Looks like URL shortening services are counted as invalid clicks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gokhan</title>
		<link>http://www.money-code.com/2009/07/epn-newsletter-referring-url-visibilty/comment-page-1/#comment-346</link>
		<dc:creator>Gokhan</dc:creator>
		<pubDate>Fri, 17 Jul 2009 17:56:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.money-code.com/?p=449#comment-346</guid>
		<description>Thank you Hanji. This was helpful</description>
		<content:encoded><![CDATA[<p>Thank you Hanji. This was helpful</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.money-code.com/2009/07/epn-newsletter-referring-url-visibilty/comment-page-1/#comment-333</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 16 Jul 2009 20:34:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.money-code.com/?p=449#comment-333</guid>
		<description>Hello Gokhan

Your example might be a little &#039;shady&#039; there.  My initial tests with header() shows proper referrer going to ebay. For example if site1.com points to itself to assemble the rover code then off to ebay. My example used URL Masking which you can learn more about it here:
&lt;a href=&quot;http://www.money-code.com/2007/10/url-masking-cloaking/&quot; rel=&quot;nofollow&quot;&gt;http://www.money-code.com/2007/10/url-masking-cloaking/&lt;/a&gt;

If want to ensure that the referrer was included in the header, you could do something like this:
header(&quot;Referer: http://&quot;.$_SERVER[&#039;HTTP_HOST&#039;].$_SERVER[&#039;REQUEST_URI&#039;]);
header(&quot;Location: http://&quot;.$site);

But, like I said, it already appears that referrer is being handled within the normal header location call.

You wanted to see the code I used to display the referrer. On the receiving page (ie: site2.com), add this:
&lt;?php
var_dump($_SERVER);
exit()
?&gt;
Then change your link to point to site2.com. When you arrive, you&#039;ll see the server variables associated with that request.. which includes referrer.

Hope this helps
hanji</description>
		<content:encoded><![CDATA[<p>Hello Gokhan</p>
<p>Your example might be a little &#8217;shady&#8217; there.  My initial tests with header() shows proper referrer going to ebay. For example if site1.com points to itself to assemble the rover code then off to ebay. My example used URL Masking which you can learn more about it here:<br />
<a href="http://www.money-code.com/2007/10/url-masking-cloaking/" rel="nofollow">http://www.money-code.com/2007/10/url-masking-cloaking/</a></p>
<p>If want to ensure that the referrer was included in the header, you could do something like this:<br />
header(&#8220;Referer: http://&#8221;.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']);<br />
header(&#8220;Location: http://&#8221;.$site);</p>
<p>But, like I said, it already appears that referrer is being handled within the normal header location call.</p>
<p>You wanted to see the code I used to display the referrer. On the receiving page (ie: site2.com), add this:<br />
< ?php<br />
var_dump($_SERVER);<br />
exit()<br />
?><br />
Then change your link to point to site2.com. When you arrive, you&#8217;ll see the server variables associated with that request.. which includes referrer.</p>
<p>Hope this helps<br />
hanji</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gokhan</title>
		<link>http://www.money-code.com/2009/07/epn-newsletter-referring-url-visibilty/comment-page-1/#comment-332</link>
		<dc:creator>Gokhan</dc:creator>
		<pubDate>Thu, 16 Jul 2009 20:15:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.money-code.com/?p=449#comment-332</guid>
		<description>Thanks for this post. I am an ebay affiliate. I am not a programmer. Can you please give the complete code for this php file. 
Lets say I placed my link on site2.com and I want the referrer to be site1.com
How does it happen when a user clicks link from site2.com  to  site1.com/ebay.php and ebay.php redirects to ebay with correct referrer.(ie site1.com)</description>
		<content:encoded><![CDATA[<p>Thanks for this post. I am an ebay affiliate. I am not a programmer. Can you please give the complete code for this php file.<br />
Lets say I placed my link on site2.com and I want the referrer to be site1.com<br />
How does it happen when a user clicks link from site2.com  to  site1.com/ebay.php and ebay.php redirects to ebay with correct referrer.(ie site1.com)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.money-code.com/2009/07/epn-newsletter-referring-url-visibilty/comment-page-1/#comment-329</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 16 Jul 2009 15:37:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.money-code.com/?p=449#comment-329</guid>
		<description>I did some initial tests this morning, and all of my tests using link redirection (via PHP&#039;s header()) shows referrer. I did a simple test by changing the URL from ebay&#039;s rover URL to a URL on one of my other sites. On that page I did a var_dump($_SERVER) which will dump all server variables to the screen. I saw the following:

[&quot;HTTP_REFERER&quot;]=&gt;  string(59) &quot;http://www.myepndomain.com/directory/subdirectory&quot;

Note, that the domain and directory are &#039;fake&#039; for this comment and not real. I&#039;ll still send EPN a message just to be sure everything is fine with my account.</description>
		<content:encoded><![CDATA[<p>I did some initial tests this morning, and all of my tests using link redirection (via PHP&#8217;s header()) shows referrer. I did a simple test by changing the URL from ebay&#8217;s rover URL to a URL on one of my other sites. On that page I did a var_dump($_SERVER) which will dump all server variables to the screen. I saw the following:</p>
<p>["HTTP_REFERER"]=>  string(59) &#8220;http://www.myepndomain.com/directory/subdirectory&#8221;</p>
<p>Note, that the domain and directory are &#8216;fake&#8217; for this comment and not real. I&#8217;ll still send EPN a message just to be sure everything is fine with my account.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->