ewiget
Admin
 Admin
| Posts: 171 |  | Karma: 2
|
Wordpress click on rss or comments error - 2006/01/22 22:25
If you have wordpress installed and you click on the Comments or RSS links and receive the error:
Internet Explorer: The page cannot be displayed The page you are looking for is currently unavailable. The Web site might be experiencing technical difficulties, or you may need to adjust your browser settings.
Firefox: Feed is not a valid protocol
Here are the instructions to fix it:
In either footer.php or sidebar.php find the lines of code that start like this:
| Code: |
<a href="feed:<?php bloginfo('rss2_url'); ?>">RSS</a>
|
Change it to this for RSS feed:
| Code: |
<a href="<?php bloginfo('rss2_url'); ?>">RSS</a>
|
basically, you are removing "feed:"
Do the same for the comments feed.
Post edited by: ewiget, at: 2006/01/22 22:38
Ed Wiget Technical Support http://www.xtremewebhosts.com |