• Over the weekend, I upgraded to a new version of WordPress and a new Unique Blog Design template called UBD Moneymaker theme. Somewhere along the link my feed has been messed up and I cannot seem to fix it. I have even gone so far as to delete the feed at Feedburner (I have 30 days of redirection) to try to recreate it. However, I keep getting errors when I try to reregister the feed (An error occurred connecting to the URL: Error getting URL: 404 – Not Found).

    When I try to validate the feed, I also get an error (http://feedvalidator.org/check.cgi?url=http%3a%2f%2ffeedproxy.google.com%2fTheDividendGuyBlog) saying “Server returned HTTP Error 404: Feed not found error: FeedBurner cannot locate this feed URI”

    One thing to note is that I did use MAMP to do the development of the theme update before moving it live. In essence this allow me to use my Macbook as a server while I test an offline version of the site. I cannot see how this would impact things, but I am not sure.

    I have no idea what is going on! The feed was working fine up until the upgrade and new theme. Can anyone see or think of anything that I may be overlooking.

    Details:

    Site: thedividendguyblog.com
    Feed address: feedproxy.google.com/thedividendguyblog

    I would appreciate any help that anyone can provide!!

    Thanks,

    Jeremy

Viewing 15 replies - 1 through 15 (of 18 total)
  • Your feed should be here, thedividendguyblog.com/feed. If you turn off feedburner is your feed there?

    Sorry, I don’t use feedburner but is seems strange to me that your normal feed address (above) would not be available to people who want your feed without feedburner.

    Thread Starter jeremyjmcneil

    (@jeremyjmcneil)

    I know it is very strange – when I try to use the address in your post it returns an error page: (404) Feed not found error: FeedBurner cannot locate this feed URI.

    It is driving me nuts!

    Jeremy

    From the FeedBurner site . . .
    The plugin is currently compatible with downloadable WordPress versions 1.5 through 2.5. (Please note that β€œtag” feeds in later WordPress versions are not supported.)

    Deactivate the plugin and see if the normal WP feed works. That will confirm if it is a FeedBurner problem.

    Thread Starter jeremyjmcneil

    (@jeremyjmcneil)

    Do you mean Feedburner Smith plugin?

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    πŸ³οΈβ€πŸŒˆ Advisor and Activist

    I checked it on http://feedvalidator.org/check.cgi?url=http%3A%2F%2Fthedividendguyblog.com%2Ffeed (which is what feedburner uses to get that info) and it’s a 404.

    How are you using feedburner? Via a plugin or a straight .htaccess hack?

    Do you mean Feedburner Smith plugin?

    Yes.

    Normally, if you have a problem with a particular function, you want to deactivate the plugin that may effect it and see if that helps.

    Thread Starter jeremyjmcneil

    (@jeremyjmcneil)

    Kmessinger: I deactivated Smith and still I have the problem.

    Ipstenu: I am note sure that you mean – I have never done a .htaccess hack before so I guess I am just using it straight. I was using Feedburner Smith, but just deactivated it to see if that would fix the problem. Any thoughts on what I should do?

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    πŸ³οΈβ€πŸŒˆ Advisor and Activist

    Is it still deactivated? Because I’m getting redirected to feedburner still.

    Check to make sure your wp-rss files were all uploaded when you upgraded. If you used the core upgrade plugin, it’s been known to miss files.

    Thread Starter jeremyjmcneil

    (@jeremyjmcneil)

    I still had redirection on. I actually removed both it and Feedburner Smith from the site to see if that would help. Still no luck.

    There are two wp-rss files in the directory (wp-rss and wp-rss2). Both have the date of 14/10/2008 which does not make a lot of sense. Do you think that might be the issue – can I edit those or grab them from a fresh install and upload them in?

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    πŸ³οΈβ€πŸŒˆ Advisor and Activist

    Mine are dated Dec 17 so yeah. I’d copy up all the core wordpress files again, just to be safe.

    You are still being redirected to FB

    Thread Starter jeremyjmcneil

    (@jeremyjmcneil)

    Ipstenu – I will see what I can do.. I use cpanel to manage it but I will see if I can get a more recent version.

    Is there anything in the code that would cause a redirection?

    Jeremy

    Thread Starter jeremyjmcneil

    (@jeremyjmcneil)

    For more info – here is my htaccess – anything in here??

    # Use PHP4 as default
    AddHandler application/x-httpd-php4 .php
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^thedividendguyblog\.com [nc]
    RewriteRule (.*) http://www.thedividendguyblog.com/$1 [R=301,L]
    </IfModule>
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^.*$ – [S=36]
    RewriteRule ^feed/(feed|rdf|rss|rss2|atom)/?$ http://feeds.feedburner.com/TheDividendGuy [QSA,L]
    RewriteRule ^(feed|rdf|rss|rss2|atom)/?$ http://feeds.feedburner.com/TheDividendGuy [QSA,L]
    RewriteRule ^page/?([0-9]{1,})/?$ /index.php?&paged=$1 [QSA,L]
    RewriteRule ^feedburner_529002/?$ /index.php?&feed=rss2 [QSA,L]
    RewriteRule ^comments/feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?&feed=$1&withcomments=1 [QSA,L]
    RewriteRule ^comments/(feed|rdf|rss|rss2|atom)/?$ /index.php?&feed=$1&withcomments=1 [QSA,L]
    RewriteRule ^comments/page/?([0-9]{1,})/?$ /index.php?&paged=$1 [QSA,L]
    RewriteRule ^search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?s=$1&feed=$2 [QSA,L]
    RewriteRule ^search/(.+)/(feed|rdf|rss|rss2|atom)/?$ /index.php?s=$1&feed=$2 [QSA,L]
    RewriteRule ^search/(.+)/page/?([0-9]{1,})/?$ /index.php?s=$1&paged=$2 [QSA,L]
    RewriteRule ^search/(.+)/?$ /index.php?s=$1 [QSA,L]
    RewriteRule ^category/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?category_name=$1&feed=$2 [QSA,L]
    RewriteRule ^category/(.+)/(feed|rdf|rss|rss2|atom)/?$ /index.php?category_name=$1&feed=$2 [QSA,L]
    RewriteRule ^category/(.+)/page/?([0-9]{1,})/?$ /index.php?category_name=$1&paged=$2 [QSA,L]
    RewriteRule ^category/(.+)/?$ /index.php?category_name=$1 [QSA,L]
    RewriteRule ^author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?author_name=$1&feed=$2 [QSA,L]
    RewriteRule ^author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$ /index.php?author_name=$1&feed=$2 [QSA,L]
    RewriteRule ^author/([^/]+)/page/?([0-9]{1,})/?$ /index.php?author_name=$1&paged=$2 [QSA,L]
    RewriteRule ^author/([^/]+)/?$ /index.php?author_name=$1 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?year=$1&monthnum=$2&day=$3&feed=$4 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$ /index.php?year=$1&monthnum=$2&day=$3&feed=$4 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$ /index.php?year=$1&monthnum=$2&day=$3&paged=$4 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$ /index.php?year=$1&monthnum=$2&day=$3 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?year=$1&monthnum=$2&feed=$3 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$ /index.php?year=$1&monthnum=$2&feed=$3 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$ /index.php?year=$1&monthnum=$2&paged=$3 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/?$ /index.php?year=$1&monthnum=$2 [QSA,L]
    RewriteRule ^([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?year=$1&feed=$2 [QSA,L]
    RewriteRule ^([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$ /index.php?year=$1&feed=$2 [QSA,L]
    RewriteRule ^([0-9]{4})/page/?([0-9]{1,})/?$ /index.php?year=$1&paged=$2 [QSA,L]
    RewriteRule ^([0-9]{4})/?$ /index.php?year=$1 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$ /index.php?year=$1&monthnum=$2&day=$3&name=$4&tb=1 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?year=$1&monthnum=$2&day=$3&name=$4&feed=$5 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$ /index.php?year=$1&monthnum=$2&day=$3&name=$4&feed=$5 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$ /index.php?year=$1&monthnum=$2&day=$3&name=$4&paged=$5 [QSA,L]
    RewriteRule ^([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$ /index.php?year=$1&monthnum=$2&day=$3&name=$4&page=$5 [QSA,L]
    </IfModule>
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    I did have an old feed that I upgraded from some time ago. Is it possible to delete the htaccess and wordpress will recreate it?

    For more info – here is my htaccess – anything in here??

    Yes, LOTS of feedburner and feed rewrite stuff. Try removing it.

    Thread Starter jeremyjmcneil

    (@jeremyjmcneil)

    I removed all the references and at least I was able to burn a new feed. I still cannot get to the old feed, but I will create a redirect that should help with the old subscribers.

    Thanks everyone for your help!!!

    Jeremy

Viewing 15 replies - 1 through 15 (of 18 total)
  • The topic ‘RSS Troubles After Upgrade and New Blog Layout’ is closed to new replies.