Wordpress feedburner problem?

4 replies
Hey folks,

So this is what I am looking at. I am unable to access any post from my current feed. When I click on the post link from my rss feed addy using feedburner and the WP default feed it takes me to a 404 page not found error report. Any idea what is going on and how I can fix it? I have tried this with two different themes so I don't think it's the theme that is the problem.. Anyways, I appreciate the help and I hope someone can give me an answer to solve this!

My website link: mrskidroe.com
My feed url for the WP default: mrskidroe.com/feed
Feedburner: feeds.feedburner.com/mrskidroerss
#feedburner #problem #wordpress
  • Profile picture of the author Harrison Ortega
    Clicking on your post title also goes to a 404 page.

    It seems you changed the permalink structure but probably it didn't take effect to the .htaccess file due to permissions.

    Change the permalink back to default and see if that works.
    Signature
    NJ web design / NJ Web Designer. MY Wordpress portfolio. 10 years of HTML/CSS - 6 years developing professional Wordpress websites. Currently not available for services.
    {{ DiscussionBoard.errors[2146228].message }}
  • Profile picture of the author Matthew Shane Roe
    Yep, that did it! Thanks! Now, is their a certain way where I can still get the custom structure without the access problem I had?
    {{ DiscussionBoard.errors[2146326].message }}
    • Profile picture of the author Harrison Ortega
      Originally Posted by Skid_Roe View Post

      Yep, that did it! Thanks! Now, is their a certain way where I can still get the custom structure without the access problem I had?
      Yes. You have 3 options.
      1- Create a .htaccess file with the code mentioned below and place it on your root directory.

      2- Temporally change your root directory permissions to 777 (write down your current permissions), go to WP permalinks, change the permalink, save it. YOU MUST CHANGE the root permissions back so you don't face security issues. (Wordpress will automatically generate the .htaccess)

      3- If you already have a htaccess file, than you have to include this code in it.

      Code:
      # BEGIN WordPress
      <IfModule mod_rewrite.c>
      RewriteEngine On
      RewriteBase /
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteRule . /index.php [L]
      </IfModule>
      # END WordPress
      If it is complicated for you, PM me an FTP access and I'll do it for you. (no charges)
      Signature
      NJ web design / NJ Web Designer. MY Wordpress portfolio. 10 years of HTML/CSS - 6 years developing professional Wordpress websites. Currently not available for services.
      {{ DiscussionBoard.errors[2146385].message }}
  • Profile picture of the author Matthew Shane Roe
    Alright, thanks! I will pm you tomorrow! I need to get to bed, been a rough day lol. I added you on Skype as well!
    {{ DiscussionBoard.errors[2146507].message }}

Trending Topics