I’m doing some testing of the revisions I am making to my plugin so apologies for any strangeness that happens if you comment!

note to self:
a wp standard location of /feed/ that points to a feedburner feed that uses an extra subdomain will not parse (lalla-mira.com/feed/ leads to /feeds.feedburner.com/lalla-mira/BvyP)
.. still not behaving, sorry miss Mira but for some reason, your feedburner adds a bit on the end of your username for your feed and that causes the script to trip up, it can’t resolve a feed at that url :-(

many typepad blogs that don’t use subdirectory have a feed in a subdirectory, may need to parse users page for a feed link another way…
.. if it can’t find a feed in the default location, it parses page for a meta link to the feed by looking for title=”RSS

… YEY! it now works on the blogs that it didn’t work on before, no more use of file and fopen.
thanks to Pelf at Pelf-ism for testing out the new version

edit
I’ve now replaced the old manual feed parsing routine with the WordPress internal feed handling functions and also changed the parsing routine for finding a feed link on the authors page so it should work with all types of feeds as long as they are declared on the page in the head section.

I’m looking to add locale support or maybe add a page to the admin section so that a user can edit the text that is shown on the comment. I’ll look into it this week.

I’m trying to overcome the problem of a feedburner feed having an extra subdirectory on the end of the url. I suspect it is due to a user having more than one feed with feedburner. I’ve put a message on the forum there so I’ll see what turns up.

Otto at the wordpress forums explained how to extend the timeout time by editing the config.php and adding
[php]define(‘MAGPIE_FETCH_TIME_OUT’, 5);[/php]
5 being the amount of seconds before timeout

more notes to self:
need to improve the findfeedburner function to allow for different feed links
add incrementing level number to each new feed parsing procedure to make way for an options page
make an options page!