Due to server and software changes my blog paths were no longer the same and I stopped getting aggregated by Adobe Feed/MXNA. I ignored this aside from an email that didn't get me anywhere; until this afternoon. With the new feeds software the feeds list actualy worked and I found out what URL Adobe was looking for my feed at. A quick 301 error inside a cfif tag fixed my problems...
Unfortunetly the result was ALL of my posts showing up in Adobe feeds at the top all at once. For this I apologize, I had figuered it would go off my modified or posted date, not when it read it for the first time...
<cfif url.event EQ "showBlogRss">
<cfheader statuscode="301" statustext="Moved Permanently">
<cfheader
name="Location"
value="http://www.EmpireGPServices.com/blog/feeds/rss.cfm"
/>
<cfabort>
</cfif>
1 comments - Posted by Russell Brown at 4:27 PM - Categories: ColdFusion | Debugging | Development | General News