Hey (again) guys,
If you have a look at this post (1) about Rails heroes RSS feeds you
will see that they all use feedburners. My question is how to use
feedburner with Typo?
For instance how to change the feed address that appears when clicking
on the RSS logo in firefox url bar (or its equivalent in Safari)?
How to change the address appearing in the syndication sidebar?
Hey (again) guys,
If you have a look at this post (1) about Rails heroes RSS feeds you
will see that they all use feedburners. My question is how to use
feedburner with Typo?
For instance how to change the feed address that appears when clicking
on the RSS logo in firefox url bar (or its equivalent in Safari)?
How to change the address appearing in the syndication sidebar?
I use a rewrite url in my nginx configuration to redirect to feedburner.
Hey (again) guys,
If you have a look at this post (1) about Rails heroes RSS feeds you
will see that they all use feedburners. My question is how to use
feedburner with Typo?
For instance how to change the feed address that appears when clicking
on the RSS logo in firefox url bar (or its equivalent in Safari)?
How to change the address appearing in the syndication sidebar?
I use a rewrite url in my nginx configuration to redirect to feedburner.
Thx Cyril,
Heu, never heard about nginx I am on a shared host. Isn’t there a
solution using Typo? As it is really standard nowadays to use
feedburner, a simple solution would be appreciated.
For instance how to change the feed address that appears when
solution using Typo? As it is really standard nowadays to use
You need check if user-agent is feedburner or not. If not
else
redirect_to ‘Shingara - Actualité et News’
end
}
Maybe a feature request to define that in a plugin is a good thing.
I have updated to edge (on dev env). I have entered my feedburner pseudo
in Settings/Read/Feedburner ID. But when I return to the home page the
syndicate sidebar it is still the same. Idem for the RSS logo.
I swept the cache.
What am I missing?
H
This is what I do to redirect everyone to FeedBurner in my Apache
VirtualHost for Typo. Only FeedBurner itself is allowed to get the
feed directly. You won’t have to hack Typo itself.
RewriteEngine On
302 temporary, 301 permanent
RewriteCond %{HTTP_USER_AGENT} !^FeedBurner/.*
RewriteRule ^/xml/rss20/feed.xml$ Plasticx Blog [R=302,L]
RewriteRule ^/xml/atom/feed.xml$ Plasticx Blog [R=302,L]
For info, I got some troubles with my Typo feed after activating the
Typo redirection to feedburner.
Basically feedburner was complaining about a non valid feed.
I do not have much clue about what was going on.
I am afraid there was some infinite loop like: FB needs the feed address
(http://harryseldon.thinkosphere.com/articles.rss) but this address
redirects to http://feeds2.feedburner.com/harryseldon hence the loop.
I am definitely not sure about that. So I mention it in case some other
people encounter this problem.
Here is the FB error:
PROBLEM: FeedMedic Alert for http://feeds2.feedburner.com/harryseldon
08.03.2009 18:24
FeedBurner had trouble retrieving your Source Feed: http://harryseldon.thinkosphere.com/articles.rss
The error message is:
Error getting URL: 500 - Internal Server Error
Actions you can take:
Validate your Source Feed with Feed Validator. This service provides
additional detail about the problem, and how to repair it.
Resync your FeedBurner feed once you have repaired the source feed.
Contact FeedBurner for help with your feed if all else fails.
people encounter this problem.
additional detail about the problem, and how to repair it.
Resync your FeedBurner feed once you have repaired the source feed.
Contact FeedBurner for help with your feed if all else fails.
In your production.log can you see some error about article.rss action ?
–
Cyril M.
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.