OK, thanks. I think I know where the problem is, but I need confirmation from someone whose system has the configuration that’s causing this error. If you’d be willing to do a quick experiment for me, I may be able to put a fix out first thing tomorrow morning.
Here’s the experiment: after the upgrade, there should be a new file in your wp-content/plugins/feedwordpress directory, called feedwordpresshttpauthenticator.class.php. If you can bring up that file in an editor and find the following method (should be at line #41):
function digest_dont ($use, $args) {
if ($this->need_curl($args)) :
$use = false;
endif;
return false;
} /* FeedWordPerssHTTPAuthenticator::digest_dont () */
Then try changing the final line from this:
return false;
To this:
return $use;
Save the file, re-upload to your wp-content/plugins/feedwordpress directory, and try fetching RSS feeds again. If it fixes your problem, I’ll incorporate the fix into an incremental release for tomorrow morning.
-C