Remote RSS Plugin - can't import a feed

Creating and modifying plugins.
Post Reply
Chris
Regular
Posts: 49
Joined: Thu Dec 09, 2004 1:02 am
Location: Sydney, Australia
Contact:

Remote RSS Plugin - can't import a feed

Post by Chris »

Hi guys,

I have been using the Remote RSS plugin to import various RSS feeds with no problems into my site. I am trying to import an Audioscrobbler feed into my blog and it doesn't seem to work.

Background on Audioscrobbler :
It provides a variety of plugins for a number of mainstream MP3 applications such as WinAMP and iTunes and it posts the MP3s that you listen to your own page on Audioscrobbler. The best thing about it is that it provides an RSS feed of the last ten songs that you've listened to and I'm trying to import that feed into my blog.

I've tried reading the feed (http://ws.audioscrobbler.com/rdf/history/senhwei) using a RSS reader such as Pluck and it works.

I've also validated the feed against feedvalidator.org and it passed that as well.

However, using the Remote RSS plugin, none of the feed entries show up. Can anyone help ? Thanks !!
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: Remote RSS Plugin - can't import a feed

Post by garvinhicking »

Did you try a different RSS feed, like one of the Serendipity Developer's Team members feeds?

It may be that your host does not support allow_url_fopen and thus PHP cannot read foreign URL.

You can also test this by uploading an image from a URL in the media section...

Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Chris
Regular
Posts: 49
Joined: Thu Dec 09, 2004 1:02 am
Location: Sydney, Australia
Contact:

Post by Chris »

Hi Garvin,

Thanks again for your help with this. Yes, I have managed to import other RSS feeds such as from BBC and Wired. It is only with this particular feed that I've not had any success.

I think I have found the reason for it. It would appear that each entry of this feed does not have a "title" but only a description. Is it correct for me to assume that the Remote RSS plugin will only display titles and not descriptions ?

thanks,

Chris
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Post by garvinhicking »

Hi Chris!

Yes, your guess is definitely true - the RSS Plugin is not really very tolerant about other tags. But you could try to make it suit your needs by modifying the code plugins/serendipity_plugin_remotersss/serendipty_plugin_remoterss.php from this:

(about line #409)

Code: Select all

                        if (empty($item['title'])) {
                            continue;
                        }
to this:

Code: Select all

                        if (empty($item['title'])) {
                            if (!empty($item['description'])) {
                                $item['title'] = substr($item['description'], 0, 128);
                            } else {
                                continue;
                            }
                        }
HTH,
Garvin.
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Chris
Regular
Posts: 49
Joined: Thu Dec 09, 2004 1:02 am
Location: Sydney, Australia
Contact:

Post by Chris »

Garvin - you're a legend ! :D

Works like a charm !

thanks,

Chris
Post Reply