I have my permalinks set up as :
/index.php/archives/%year%/%monthnum%/%day%/%post_id%/
WordPress inserts the rss feed url as :
http://ponderethereal.com/blog/wp/feed/rss2/
When I go there, I get :
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator and inform them of the time the error occurred, and anything you might have done that may have caused the error.
I've tried going to http://ponderethereal.com/blog/wp/wp-rss2.php
as well. Same deal.
Any ideas?
phpinfo? *confused look*
I'm a total php newb :)
Make a file with the following code:
<?php phpinfo() ?>
and save it and upload it as phpinfo.php.
No answer from my server admin yet.
Path info style permalinks (with index.php at the front) don't work for the feed links in 1.2. It's a bug. Fixed in the nightlies.
rboren, that's not the problem we are talking about here. We are talking about the problem that on some servers, all the feeds except the comments feed(i.e. wp-rss.php, wp-rss2.php, wp-atom.php and wp-rdf.php) cause Error 500, Internal Server Error.
Wohoo! Fixed it!
Go down to line 87 in wp-blog-header.php. There you will find this line:
@header('Last Modified: '.$wp_last_modified);
Change it to:
@header('Last-Modified: '.$wp_last_modified);
I can't believe something as simple as a missing dash had been causing internal server errors all along.
Anonymous
Unregistered
Posted 7 years ago #
Thanx! That really helped me!