<?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"
	>
<channel>
	<title>Comments on: Follow-up on Feedburner</title>
	<atom:link href="http://www.unheardword.com/archives/2005/10/09/follow-up-on-feedburner/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.unheardword.com/archives/2005/10/09/follow-up-on-feedburner/</link>
	<description></description>
	<pubDate>Fri, 12 Mar 2010 11:31:50 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: Vicki</title>
		<link>http://www.unheardword.com/archives/2005/10/09/follow-up-on-feedburner/#comment-46</link>
		<dc:creator>Vicki</dc:creator>
		<pubDate>Tue, 11 Oct 2005 05:19:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.unheardword.com/?p=51#comment-46</guid>
		<description>Ben: thanks for the tip! Good one! Yes I use PHP.  :-)

Rick: great to get the input. I admire a company that actively seeks out feedback like mine and deals with it as you have done. I'd be happy to discuss my perceptions with you via IM. I'll just clarify here that I was very happy with FeedBurner's service but I just got concerned about exiting.</description>
		<content:encoded><![CDATA[<p>Ben: thanks for the tip! Good one! Yes I use PHP.  <img src='http://www.unheardword.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Rick: great to get the input. I admire a company that actively seeks out feedback like mine and deals with it as you have done. I&#8217;d be happy to discuss my perceptions with you via IM. I&#8217;ll just clarify here that I was very happy with FeedBurner&#8217;s service but I just got concerned about exiting.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick Klau</title>
		<link>http://www.unheardword.com/archives/2005/10/09/follow-up-on-feedburner/#comment-45</link>
		<dc:creator>Rick Klau</dc:creator>
		<pubDate>Mon, 10 Oct 2005 14:21:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.unheardword.com/?p=51#comment-45</guid>
		<description>Looks like we need to do a better job explaining our exit strategy. We *do* redirect any user's feeds for them once they decide to stop using our service, details are here: http://www.burningdoor.com/feedburner/archives/001251.html.

Sorry you didn't like the service, please let us know how we could have done a better job. In the meantime, if you need help setting up that redirect to get subscribers back to your domain's feed, let us know!

Regards,

Rick

----
Rick Klau
VP, Business Development
FeedBurner - http://www.feedburner.com
rickk@feedburner.com
AIM/Y!/Skype: RickKlau
office: 312.756.0022 x2012
direct: 312.239-0727
cell: 630.362.8911</description>
		<content:encoded><![CDATA[<p>Looks like we need to do a better job explaining our exit strategy. We *do* redirect any user&#8217;s feeds for them once they decide to stop using our service, details are here: <a href="http://www.burningdoor.com/feedburner/archives/001251.html" rel="nofollow">http://www.burningdoor.com/feedburner/archives/001251.html</a>.</p>
<p>Sorry you didn&#8217;t like the service, please let us know how we could have done a better job. In the meantime, if you need help setting up that redirect to get subscribers back to your domain&#8217;s feed, let us know!</p>
<p>Regards,</p>
<p>Rick</p>
<p>&#8212;-<br />
Rick Klau<br />
VP, Business Development<br />
FeedBurner - <a href="http://www.feedburner.com" rel="nofollow">http://www.feedburner.com</a><br />
<a href="mailto:rickk@feedburner.com">rickk@feedburner.com</a><br />
AIM/Y!/Skype: RickKlau<br />
office: 312.756.0022 x2012<br />
direct: 312.239-0727<br />
cell: 630.362.8911</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben Buchanan</title>
		<link>http://www.unheardword.com/archives/2005/10/09/follow-up-on-feedburner/#comment-43</link>
		<dc:creator>Ben Buchanan</dc:creator>
		<pubDate>Sun, 09 Oct 2005 14:04:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.unheardword.com/?p=51#comment-43</guid>
		<description>Heya. I used a PHP trick to get around feed control issues, admittedly on a low-risk feed :) If you have PHP this might be useful (whack this into a file like feed.php):

&#60;? 
$filename = &#34;http://www.website.com/sourcefeed.xml&#34;;	// Enter the URL of the source feed
header(&#34;Content-type: application/xml&#34;);		// Set the MIME type to application/xml
readfile($filename); 					// Read in the source file and send it out to the user
?&#62;

Basically what happens is you get people to subscribe to the PHP file's location; it pulls in your feed from wherever it's currently living and pretends to be an XML file. OK so long as the load doesn't get too high. You can also get PHP to write the file out to a local XML file; but then you need a cron job to periodically trigger the script.

Of course if your server doesn't have PHP, feel free to ignore me ;)</description>
		<content:encoded><![CDATA[<p>Heya. I used a PHP trick to get around feed control issues, admittedly on a low-risk feed <img src='http://www.unheardword.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> If you have PHP this might be useful (whack this into a file like feed.php):</p>
<p>&lt;?<br />
$filename = &quot;http://www.website.com/sourcefeed.xml&quot;;	// Enter the URL of the source feed<br />
header(&quot;Content-type: application/xml&quot;);		// Set the MIME type to application/xml<br />
readfile($filename); 					// Read in the source file and send it out to the user<br />
?&gt;</p>
<p>Basically what happens is you get people to subscribe to the PHP file&#8217;s location; it pulls in your feed from wherever it&#8217;s currently living and pretends to be an XML file. OK so long as the load doesn&#8217;t get too high. You can also get PHP to write the file out to a local XML file; but then you need a cron job to periodically trigger the script.</p>
<p>Of course if your server doesn&#8217;t have PHP, feel free to ignore me <img src='http://www.unheardword.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
</channel>
</rss>
<r39m7r8></r39m7r8>