yesterdayslinks
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: bloginfo / RSS feedsI take it all back. WordPress rules (even more than I had previously thought.)
I did not have AllowOverride in that Directory.
Thanks for your help.
Forum: Fixing WordPress
In reply to: bloginfo / RSS feedsHere’s a link:
http://www.warmroom.com/unfinished/
Here’s the template code:
<link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0″ href=”<?php bloginfo(‘rss2_url’); ?>” />
<link rel=”alternate” type=”text/xml” title=”RSS .92″ href=”<?php bloginfo(‘rss_url’); ?>” />
<link rel=”alternate” type=”application/atom+xml” title=”Atom 0.3″ href=”<?php bloginfo(‘atom_url’); ?>” />Here’s the source with Date-and-name-based permalinks:
<link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0″ href=”http://www.warmroom.com/unfinished/feed/” />
<link rel=”alternate” type=”text/xml” title=”RSS .92″ href=”http://www.warmroom.com/unfinished/feed/rss/” />
<link rel=”alternate” type=”application/atom+xml” title=”Atom 0.3″ href=”http://www.warmroom.com/unfinished/feed/atom/” />Here’s the source with default permalinks:
<link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0″ href=”http://www.warmroom.com/unfinished/?feed=rss2″ />
<link rel=”alternate” type=”text/xml” title=”RSS .92″ href=”http://www.warmroom.com/unfinished/?feed=rss” />
<link rel=”alternate” type=”application/atom+xml” title=”Atom 0.3″ href=”http://www.warmroom.com/unfinished/?feed=atom” />I’ll leave the site with the Date-and-name-based permalinks. Anything else?
Forum: Fixing WordPress
In reply to: bloginfo / RSS feedsThe bloginfo tags for rss_url, rss2_url and atom_url are broken for both name-and-date-based and numeric permalinks. Default permalinks work correctly. I haven’t tested custom permalinks.
This is in a completely generic installation of WordPress 2.0.4, except for the permalink option.