-
Website
http://rawlinson.us/blog -
Original page
http://rawlinson.us/blog/articles/feedlist-plugin/ -
Subscribe
All Comments -
Community
-
Top Commenters
-
lauram_hansen
2 comments · 1 points
-
cjasonwilson
1 comment · 1 points
-
Sarah Lewis
1 comment · 2 points
-
rolandjrg
1 comment · 1 points
-
mayfieldga
1 comment · 1 points
-
-
Popular Threads
I had tried and failed with a couple of others - constant code errors, but this one was so easy.
Only thing is my site loads a bit slower than before - is this totally normal? Can it be fixed?
I changed my cache folder to "777", but no noticable effect.
Any Ideas?
I'm glad it worked so well for you! You are, as far as I know, the first person to try it other than me. I guess your page will load a touch slower than normal - especially when it is refreshing the cache by actually fetching the remote RSS feed. However, when it reads from the cache the speed difference shouldn't be too noticable - if at all. I use it in two places on my blog and I don't really notice a speed difference.
Make sure your cache directory is getting written too. You should have one file in there for each distinct RSS feed you are publishing on your page. If you don't then you may need to muck with the configuration settings some more until you start seeing the cache files in place.
other wordpress features and plugins sometimes pass parameters inside the () of the function call... sorry to be confusing but what i mean is can you add other parameters right next to the url as with you simple example on this page, or do you have to list everything out, as is illustrated in the plugin. if the latter, please tell us how to open and close, thanks.
incidentally i couldn't get it to (blank output) parse a Yahoo News search feed (http://jeremy.zawodny.com/blog/archives/001001....), but it did fine with WordPress RSS 2.0 feed.
rssLinkList("http://some.rss.url",10,true,true,"-- ","
","—");
this calls for a feed at http://some.rss.url and will display, at most, ten items, with their descriptions and in random order. Each item will be preceeded by two dashes and a blank space and each will be followed by a carriage return (br tag). Finally, there will be a long dash that separates the item title from its' description.
Hopefully that helps.
great work:>O)
My blog is utf-8 but I would like to grab iso 8859-1 rss feed.
Any ideas ?
Best regards
Joakim
<ul>
<?php
rssLinkList("http://del.icio.us/rss/finalcut");
rssLinkList("http://www.43things.com/rss/uber/author?username=FinalCut");
?>
</ul>
finally, thanks for the blacklist warning heads up - i'll take a look at it.
Do you have any idea how to configurate the script to fix that problem ?
Thanks
martin
thanks for the fast help. Titles (links) now work well.. The description still doesn't display the special ??charcters. But that's OK for me - I don't use the descriptuion text...
Thanks!
If you are using the plugin and you think of anything else it should do please just post here and I will consider the change requests for the next version.
thank you! now it works well - even with strange languages like german... ;-))
Any ideas?
I have updated the download files. with the latest changes.
The latest version seems to have a spelling mistake. In the function arguments, description_separator is misspelled as description_seperator. As a result, no separator will appear.
To use you will need to replace your lastRSS.php file and your rssLinkList.php file. There is now a new configuration setting titled $connection_timeout - by default it is 20 seconds. If you need a different value just enter the seconds. The setting is on line 41 of rssLinkList.php
I've tested it against three different RSS feeds - so it seems fairly stable - if anyone finds any problems just let me know.
I don't think this will fit into lastRSS as a final change though because I don't think you can use fsocket to open local files - while with lastRSS you can.
However, lastRSS seems like it will only try to Parse if it is given a remote url so I'm not sure. I have not tried to submit this change to the lastRSS author. Though, technically, I probably should. You can see the change in the Parse function starting on line 144 of lastRSS.php
Warning: fsockopen() [function.fsockopen]: unable to connect to www.nature.com:80 (A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. ) in C:\www\-\wp-content\lastRSS.php on line 154 requested list not available
On feeds which, when opened with a browser respond much faster than 20 seconds, e.g.:
http://www.nature.com/nsu/rss.rdf
http://www.newscientist.com/feed.ns?index=onlin...
?
What I will do is try to come up with a better method of catching the timeout and giving you a reasonable alternative text message.
If I am cacheing a rss feed, how long before the cached feed is updated???
i linked into my rss feed and then added a post through my WP blog and the rss feed did not update and I was wondering how often it checks for new posts...
thanks for your help and keep up the great work :-)
i'm using your plugin, but i don't know why is this, but in order to fetch rss feeds for blog at bloglines to resyndicate it inside wordpress i had to add
$thisDescription = strtr($thisDescription,array_flip(get_html_translation_table(HTML_ENTITIES)));just above
$rssList .= $before . $thisLink . $thisDescription . $after . "\n";this is there around line 96. without this, all the links and html tags are converted in htmlspecial characters and don't work.
maybe it helps to someone.
I'm trying to get this plugin to work with WordPress 1.5 and it doesn't seem to be working :( I properly configured it via your instructions here as well as in the txt file in the zip file. I am trying to bring up the Yahoo News - Top Stories rss feed onto a page, but it isn't working at all. Any clue as to what may be the problem? This is the code I used:
ied it with the ul and ol list options... neither worked. Any help would be greatly appreciated. I attempted to install it here on my friend's blog: http://www.mindwiped.com/gurlrider/?page_id=66<ul>
< ?php rssLinkList('http://rss.news.yahoo.com/rss/topstories'); ?>
< /></ul>
Thanks
Jeremy Chrysler
As always you can get the updates from the same location as described at the top of the main story this comment is associated with.
As a heads up I will be examining Teli's option of using an excerpted description and if it will work with the most recent release without breaking HTML then I will include the option of a shorter description in the next release.
Indian cricket captain Rahul Dravid (R) shake hands with his Pakistani counterpart Inzamam-ul-Haq
I've been looking at your script, but can't see which bit I need to alter in order to have the images displayed. Remove the HTMLspecialchars perhaps? Any ideas?
Cheers,
Will (namesake)
If you download the latest version and it doesn't work then please let me know and I'll update the download files. Thanks
I did make a modification to allow me to sort a feed by title. I changed the function definition by changing $random = false to $sort = "none".
Then I replaced
if ($random) {
$shuffle($items);
}
with
switch($sort) {
case "random":
// We want a random selection, so lets shuffle it
shuffle($items);
break;
case "alpha":
//Order alpha by title
foreach($items as $item) {
$sortBy[] = $item['title'];
}
//Make titles lowercase
//otherwise capitals will come before lowercase
$sortByLower = array_map('strtolower', $sortBy);
array_multisort($sortByLower, SORT_ASC, SORT_STRING, $items);
break;
}
Others may find this useful. Thanks again for the great plug-in
rssLinkList("http://del.icio.us/rss", 15, false, "alpha") to get a list sorted by title ascending
rssLinkList("http://del.icio.us/rss", 15, false, "random") to get a shuffled list
rssLinkList("http://del.icio.us/rss", 15, false, "none") anything other than "alpha" and "random" will get the list as-is.
If one were to want a list sorted by title in descending order then "SORT_ASC" could be changed to "SORT_DESC" in the code.
I would hage for someone upgrade and have it break their existing calls.
I think the best option is to add a new parameter of sort. Someone may want a random selection of items that are then sorted alphabetically
Obviously it would be the new final parameter with a default of "alpha" i think. I doubt if anyone would mind that they were sorted in order by default.
I'll have to muck with it some to come up with a good compromise. I'll let you know when I update the downloadable version.
A good compromise might be to have the new parameter with a default of alpha that is only evaluated if "$random = false".
Thanks again.
the new parameter $sort can be one of three values: none, asc, or desc. This gives people the flexibility to specifiy either sorting direction.
I will release the new version sometime tomorrow probably. I want to change the initial method call a little so that you can pass in the parameters either by position - or via an associative array (providing named parameter calling and thus easier if you want to change the first and last parameters but none of the stuff in the middle).
Please check out the readme.txt for more information concerning this new way you can call rssLinkList. This change is fully backward compatible.
I have also added an example of calling with named paramters to the bottom of this blogs post.
Finally, just download the zip file as always from above!
Thanks
Great plugin indeed! However, I would have a further feature request. Well, it's maybe not really a feature. I'd like to see the plugin make use of the tag-fields (which are provided by i.e. del.icio.us) as category headings. Saying an rss input file with tags would result in a categorized link list showing the according tags as category headings. Unfortunatly im short of time at the moment. I will try to find a way to get this done in the near future though...
Remember, it is very possible to have multiple tags per link - so the best way to do it is to call for a specific tags links I think.
if you redownload the zip file you will get a clean copy
sorry about that
Fatal error: Call to undefined function: _rsslinklist() in /home/marathon/public_html/wp-content/themes/marathon/sidebar.php on line 41
He also noted that the espn feed wasn't displaying properly. It turns out that the title of each item was embedded in a CDATA tag. rssLinkList now always extracts the content from the CDATA and drops the CDATA wrapper.
Make sure you grab the latest version from the links above.
Also, and I don't mean to sound like an ass here, but to say it is alot of handwork for you to copy and paste the rssLinkList function call and just change the end of the url for each is kinda funny. Don't you think it might be even more handwork for me to customize the plugin?
Finally, you could very easilly build an array of tag names that you use, figure out your base del.icio.us feed url, then loop over your array and append the tag name as appropriate to build the right url for each tag, and call rssLinkList programattically that way thus giving you what you want..
It might look something like:
...
aryTags = array("sports","code","development","php","ruby");
foreach($aryTags as $thisTag)
{
print "<h3>$thisTag</h3><ul>";
rssLinkList("http://del.icio.us/rss/finalcut/".$thisTag,0);
print "</ul>";
}
...
that will display all (due to the 0) of the links for each tag, and will show the tag before it shows the links
Fatal error: Cannot instantiate non-existent class: lastrss in /home/interkn/public_html/wp-content/plugins/rssLinkList.php on line 81
Any thoughts? Thank you!
This is typically a problem with the path definition to the file lastRss.php. If you look inside the function, rssLinkList (note that there is also a function called _rssLinkList) you will see a line:
require_once "./wp-content/lastRSS.php";
if your lastRSS.php file isn't in the wp-content directory; but maybe in the wp-content/plugins subdirectory then you will either need to move lastRSS.php (my suggestion) or update rssLinkList to point to the right location.
If you want the latest version download it from the link at the top of the post.
Bill
sorry if I sounded too egoistic here. It was just an idea of maybe how to improve the plugin.
I didnt mean to sound like "BIl, go to work!" either. I was just simply thinking alound. For the implementation: Of course this feature would/should only be optional.
Yes, the array idea is another way to do it, probably easier. But what if you add new categories each day? And believe me, Ive seen links lists with 50 categories and more.
Either way, I love the plugin as it is right now already! ;-)
I implemented your suggestion and I now get this error:
Warning: fsockopen(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /home/interkn/public_html/wp-content/lastRSS.php on line 154
Warning: fsockopen(): unable to connect to :80 in /home/interkn/public_html/wp-content/lastRSS.php on line 154
requested list not available
Any help would be great! Thanks again sir!
Chris - could you tell me what URL your trying to use to get the feed from? It makes it look as if you are passing in a blank URL to fetch from. If you can send me the URL I can test it on my end and when I get it working I can show you the exact syntax to use to display the feed your trying to get. thanks
I'm just trying to use the default URI...I think it's: "http://del.icio.us/rss/"
I dont know. I just tried the following:
rssLinkList("http://del.icio.us/rss/");
and
_rssLinkList(array("rss_feed_url"=>"http://del.icio.us/rss/"));
and it worked fine. In fact if you go to my mainpage and click on "testlinks" you will see both methods of calling that url working fine. If I don't pass any parameters to rssLinkList, for some reason, it does nothing (but still doesn't throw an error that I see).
I suggest you try using the _rssLinkList syntax as it is a bit more flexible. I hope I am helping :O)
The only way I have gotten it to break is if I call _rssLinkList(); without passing in an array. Then it complains that the required parameter wasn't passed in. If I pass in an empty array (or no parameters to rssLinkList();) then both calls do nothing. They dont display links or crash.
mmmh i'm working on it, i hope i'll find a solution, but if you have any ideas i'm here. Thanx again great plugin.
The only things I can suggest are make sure your files are in the exact place I recomend, and make sure you CHMOD your cache driectory to 777.
I wish there was more I could suggest sorry. Good Luck!
The problem is in rssLinkList.php in the configuration settings (line 54 for me)
here is the problem:
'cacheDirectory' => '.wp-content/rssCache'
You missed the "/" before wp-content
It'd have to be:
'cacheDirectory' => './wp-content/rssCache'
This is the problem I hope I help you and all other people.
Thanx again and have a good day
thanks for letting me know.
Bill
I made a few additions/modifications to support addinig Lists to posts. The idea is to add a special tag to your post that will be interpreted when the content is generated. I.e., this tag:
is replaced with the list of bookmarks whenever the content for a post is retrieved. If you're interested, I'll get my changes to you.
<!--rss:http://del.icio.us/rss/dogbowl-->
I want to be able to use these feeds but get arraysort() errors. Does anyone else have success with these?
Warning: array_map(): Argument #2 should be an array in /filepath/wp-content/plugins/rssLinkList.php on line 200
Warning: array_multisort(): Argument #1 is expected to be an array or a sort flag in /filepath/wp-content/plugins/rssLinkList.php on line 205
I updated the archive yesterday morning (or the day before, I can't remember exactly). So, if your getting a php error with rssLinkList grab the latest copy. Sorry for the inconvience. (obviously, if things are working OK for you then you dont have to get the latest copy. However, with the new wordpress filter addition you may want it).
For an idea on using the wordpress filter you can check out my other post about wishlists and del.icio.us - http://rawlinson.us/blog/?p=327
I'm having a little issue with the number of items that are displayed in a feed. The default is 15 and I can't get it to display more than that. I know the feed is downloading all of the entries and I have also modified the plugin to change the num_items to 0 (to display everything). It's still only showing 15 items.
I've cleared out the cache files, activated and deactived the RSS script and still no go. Any thoughts?
I've hacked a copy of the WP function get_links to make an automatic call to your routines so that a simpler call in my template of get_links returns (1) the Links Category... (2) Each link and description... (3) the latest x number of stories from their rss feeds. (4) repeat...
Of course, I could not call _rssLinkList for this because of the echo. So I have called rss_linkListBuilder directly. Add a bit of formatting in get_links and it all works beautifully. Can't show it to you yet as I am experimenting locally at first.
Just 2 questions::
(1) Do you consider this safe or is rssLinkListBuilder going to horribly change soon!
(2) One of my feeds seems to send back the x number of stories starting with the oldest instead of the newest. I don't know much about RSS so I wondered if you had any idea why that might be?
This is a great plugin - very impressive. I'd much appreciate your comments on the above
Andy
No thoughts at the moment. Can you give me the feed url your trying to get to work and I'll see what I can do?
Also, are you using it as a "Filter" (inside a post body) or as a plugin call (in your sidebar or elsewhere?)
thanks
Bill
While it is safe - I'm not sure I recommend it becuase you will have to maintain your hack as Wordpress upgrades.
I don't see rss_linkListBuilder changing much in the future and calling it directly is fine and would be my recommendation to you considering what your trying to do.
As far as the order things are returned in - I don't have a clue. It probably has something to do with the RSS feed generation. The only way I sort things (and this is optional) is by the name of the link, either alphabetic ascending or descending. It is odd though because I am assuming your wordpress install is building all of the RSS feeds that you are displaying?
I might also add that if your just getting your own links (which I'm not sure what your doing to be honest) then calling the plugin will slow you down some since normally the parsing won't have to happen if getLinks is doing its own normal process of fetching from the db.
I have not mad up my mind whether to actually institute this yet as the load time does take a hit - although it will probably be better up on my server than on my local Powerbook so maybe I'll put it up and see.
By the way - on the subject of feeds, the comment feed for this thread does not appear to work. At least NetNewsWire - my newsreader - can't find it.
Thanks for the advice. I'll keep my eyes on this plugin for future changes, As I say - very impressed with it. So thanks again
Cheers,
Bill
A few questions:
1. I can successfully use the plugin to pull RSS feeds into my sidebar, but how can I pull rss feeds into a wordpress-created webpage?
2. What would I need to do to pull two separate feeds separately? For instance, let's say I create a heading entitled "Rob Links" that pulls my del.icio.us rss feed and then elsewhere I create a "Yahoo" heading that pulls a Yahoo rss feed. How could I do this since the RSSLinkList only includes the one rss link I specify? You may have addressed it earlier in the comments section, but the explanation was somewhat confusing to a non-PHP'r such as myself.
3. To enlighten a novice techie such as myself, can you elaborate on the syntax to be included to pull an rss feed into any given post (Glenn's contribution to the 0.8 version)? I'm assuming we must only call the specified one from the RSSLinkList php file. However, you use the syntax '' Can I assume this to mean that within line item tags we might place something like this: 'rss:http://fakewebsite.com/rssfeed' (without single qoutes) for it to work? This is what I've been trying to do for a wordpress page and I am unsuccessful.
Please advise. Thanks.
To pull feeds into a page you probably need to use the "Filter" option within the body of your page. My wishlist page works that way. For instance, to include the rss feed you mention you would enter:
<!--rss:http://fakewebsite.com/rssfeed-->
the brackets, the exlaimation, the hyphens etc are all part of the line you need to enter.
So to have your two feeds in one page you could do:
<h2>Rob Links</h2>
<!--rss:http://urltorobslinksfeed-->
<h2>Yahoo</h2>
<!--rss:http://yahoo_rss_feed-->
Hopefully all of that formatting came through :O) and I answered your questions.
Bill
How must the plugin file be set in the configuration section (or default) section so that multiple disparate feeds can pull into the same page?
Thanks!
So, i put this plugin in my host, host in my computer with WindowsXP SQL and APACHE and the plugin works fine... but, i put the plugin in my internet host (funpic.org) and the plugin doesnt work now... i set the CHMOD 777, i do everything following the manual of plugin. I dont know what happens...in my computer the plugin is great.
In my website, at funpic.org, the plugin return this msg "requested list not available", sometimes it return another msgs too, but just sometimes...
Please, if anyone can help me... i love this plugin
Thanx buddies.. :D
It appears you have uncovered a bug. I will dig into it and see what I can come up with. I'll post another comment here once I figure it out. Sorry for the trouble.
Bill
One solution is to go into rssLinkList.php and make the timeout period longer. The time is in milliseconds and is currently pretty short. Hope that helps.
Bill
Thanx for the answer, but i set the timeout period to 3600s but the bug still happens. As soon as the site load, the plugin doesnt "work" and show that msg. I think my server blocks the conection or something like this. In my computer server it works very fine, i change de dirs names and another things and the plugin work anyway. I will test in other server to check it out.
thanx again!! :D
i'm trying to fix the bug and a msg shows before the "requested list not available"...the msg that show this time is:
Warning: The function fsockopen(), which your Script uses, was deactivated for safety reasons and cannot not be used. in /usr/export/www/hosting/icegu/wp-content/lastrss.php on line 154
Thats the bug isnt it? i will serach about this fsockopen() to learn more...
thanx again :)
yes, if your server prevents fsockopen then your out of luck unfortunately. I could use curl; but it doesn't give me as useful of information back (and more than likely they have curl disabled too).
that is a bummer. If you find another optoin that you can use let me know and I'll see if I can't update the plugin to fallback to your alternate method.
I understand your choice about fsockopen... well, i will use that plugin to get my del.icio.us list and put in my blog, fortunately, i found another script to do this... it dont work whit rss but get my list... your plugin will help me in others situations but its ok!! :D
Thanx 4 the helps anyway.. :D
There is still one known error with the filter integration and that is it doesn't work during the "preview" while editing a post that contains a filter call. Once that is fixed I think I'll be done with rssLinkList changes for a while.
Bill
What plugin are you using instead? Maybe I can look at how they are fetching your information and, if it is capable enough, implement it as a fallback for those people who can't use fsockopen..
i'm using delicious-integrator plugin, but i have some troubles with the cache. I dont know why, but i put the plugin in my site, when it refresh the cache dont work more. well well... i dont know what can i do to list my del.icio.us bookmarks... :(
first off... great plug-in. Hope you can help aissegoo with the fsockopen problem because I think I got the same one. My server upgraded there security level and now I cant get the plug-in to work. Get fsockopen... error line 154... blah blah, blah
Cheers Jaron
Thank you very much for your excellent plugin. I've written some webpages in WordPress which use RSS Link List Plugin to read RSS feeds. Moreover, I've written a post in spanish, so that spanish users can take advantage of your work. You can see this post in .
Eduardo Larequi.
If you are feeling particularly helpful feel free to try and translate the "readme.txt" if applicable and I will enclude the Spanish version in the zip file. (I don't know if there is much in the readme.txt that needs translating, but if you think it would be beneficial (even if you don't want to do it) just let me know.)
Bill
I am really sorry, but I don't have enough time to make this translation. Nevertheless, your instructions are so clear that anyone with a minimum knowledge of english language can understand them perfectly.
Thanks for your offer, anyway.
I have one little question. How do I make sure the link from a feed will be opened in a new window?
Currently, that isn't an option in the plugin. But, I suppose, I could add it. Keep in mind though that there is no way to be SURE that the link was opened in a new window. There are various browser and plugins that make it easier for the end user to control where a link opens.
I'll add the option, with a default to the current window, to the plugin. This way you can specify a "new window" if you want.
I'll post the changed plugin code a little later today.
Bill
Today is my birthday but that would be the nicest present I got sofar today :D
Looking forward to the changed plugin code.
grtz VicKuP
To use this just call _rssLinkList with the value new_window = true :
_rssLinkList(array( "rss_feed_url"=>"http://del.icio.us/rss/finalcut",
"num_items"=>10,
"show_description"=>false,
"random"=>true,
"sort"=>"asc",
"new_window"=>true));
You can get the lastest version by following the link at the top of this post.
However, by doing this there is now some javascript involved in the plugin. You CAN leave it in the rssLinkList.php file. However, doing so will cause your site to fail XHTML validation. So, to be true to the spirit of the intent here you should take the JS out of your rssLinkList.php file and put it in your theme between the HEAD tags.
As always, get the latest version from the link on the post.
I just updated rssLinkList plugin one more time. I discovered there is a way to fix my xhtml problem from before. Now the javascript is within the HEAD tags. Very cool. So, if you downloaded the plugin today, before this post, please get it again.
sorry for the confusion this might cause.
Bill
Terrific! I will set this up tomorrow. Thank you for your hard work!
So, I just gave the ul-tag in this class a inline-begavior with css and loaded my own rss as a feed ;-))
Thanks!! :-))
"http://del.icio.us/rss/mumble/","num_items"=>10,
"show_description"=>true,
"sort"=>"desc",
"before"=>"» ",
"after"=>"")); ?>
and it imported the links nicely when I first ran it, but now it's not updating. I set the cacheTimeout to 6 hours, but that was yesterday. Just now I tried temporarily going for 20 seconds -- no success. Any ideas?
Oh, and is there a way to keep the javascript from being inserted into the <head> when I set new_window to false? Seems superfluous to me.
Thanks for any help!
As far as the superflouous javascript. Hrm. I can make it so it uses target="_blank" without the javascript - the main reason I did it this way was so people could continue to validate into the future. However, I can make the "new window" option more than just true or false I guess. I could go "true, false, simple" and if you use simple it will just add the target and not add the javascript.
I have to update the plugin today anyway to add the comments around the javascript so I should be able to do that as well.
1. wrapped JS in HTML comments so that W3C validation of your page is still good
2. added option to suppress the JS completely.
In order to suppress the JS go into rssLinkList.php and change the configuration setting of showRssLinkListJS to false. If it is false the no JS will be inserted into the head of your site and using the option of $new_window=true or $new_window='simple' will result in a hard-coded no-xhtml strict compliant usage of target="_blank"
If you leave the shorRssLinkListJS setting = true but still don't want the links dynamically scripted to have a target attribute pass in "simple" for the new_window option and the target will be hardcoded (but the javascript will still be in the head).
So, for the simplest version of opening in a new window just set the showRssLinkListJS setting to 'false' - by default it is TRUE so that your page is compliant by default.
As always, if you have any questions, just ask.
Warning: array_map() expects argument 2 to be an array in c:\phpdev\private\sandbox\wp-content\plugins\rssLinkList.php on line 216Warning: Argument 1 to array_multisort() is expected to be an array or a sort flag in c:\phpdev\private\sandbox\wp-content\plugins\rssLinkList.php on line 221
When I put in my own feed again it fell back on the cache, without error messages. I downloaded the newest version you posted today and I swear I didn't mess with the files. Still the errors above when I want to display a new feed. Um, oops?
I don't know what to tell you honestly. If the plugin is showing your cached version of the file still then perhaps it is your browser showing the cached version (and not the site).
Try to hit ctrl+f5 while viewing your page. this will force your browser to refresh from the server and not show a cached copy of the page.
If you deleted the cache file for rssLinkList it has NO way to show the cached version (else I wouldn't need the cache file) so that tells me something else is happening that isn't the rssLinkList plugin
Can you givve me the URL of the feed your trying to access (when you get the array errors?)
On the other hand, http://del.icio.us/rss/popular is still giving me errors. But I used the feed only for testing purposes anyway.
The new showRSSLinkListJS option is great, by the way. Thanks!
Anyway, thanks for the plugin, also, I use a plugins used plugin, and it looks for the Plugin URI for a source of linkage, and your plugin doesn't have one. I used this page, however, if you'd prefer it point somewhere else, let me know and I'll change the URI accordingly.
I'm testing your plugin on a site that I'm working on, and when I add the code that youspecify in your instructions above, I get the following error.
Fatal error: Call to undefined function: rsslinklist() in E:\Sites\paydayfeed_com\public_html\wp-content\themes\alternate0\index.php on line 64
I wasn't able to chmod777 the cache folder because according to my server admin, the fact that it's on a windows server makes that unecessary. Any thougths? Feel free to email me offline.
Thanks,
ryan
Thanks!!
chgrp/chmodded it to the proper group permissions (if all else fails try - 777
I edited the following:
$defaults = array( 'rss_feed_url' => 'http://www.dowire.org/feeds',
'num_items' => 15,
'show_description' => true,
'random' => false,
'before' => '',
'after' => '',
'description_seperator' => ' - ',
'encoding' => false,
'sort' => 'none',
'new_window' => false,
'debug' => false
);
Now I have no idea what to do next to get it to show up on the following blog: www.DrDigiPol.com
Please help I'm trying to do this for a friend. You can e-mail me at dave@telematique.com
Thanks!
Dave
First, I gave a further level of relative path (changed '.' to '..') to avoid 'Warning: rsslinklistbuilder(./wp-content/lastRSS.php): failed to open stream: No such file or directory in...':
63: $settings = array ( 'lastRSSPath' => '../wp-content/lastRSS.php', 64: 'cacheDirectory' => '../wp-content/rssCache',Secondly, to avoid 'Fatal error: Cannot redeclare class lastrss in...':
174: requireinclude_once $settings["lastRSSPath"];Codex WordPress Coding Standards instructs me to "Learn the difference between include_once and require_once", but I haven't got that far yet.
Anybody else suffering similar problems? Does this help?
Today I am releasing version 0.9 of rssLinkList with the following enhancments:
<ol>
<li>much easier to configure</li>
<li>prevented a rare but annoying conflict where another plugin might also use lastRSS</li>
<li>Vastly improved filter support. Previously you could only specify the URL when using the filter. Now all settings that you can specify when using rssLinkList you can also specify using the filter.</li>
<li>added the plugin url so that you can jump back to this page quickly from within the wordpress plugin administrator</li>
</ol>
Download from the link at the top of the page and check out the readme.txt for details on the new Filter capabilities. As always grab the lastest version from: http://dev.wp-plugins.org/file/rss-linked-list/...
Cheers Jaron
"http://rss.news.yahoo.com/rss/politics",
"num_items"=>10,
"show_description"=>false,
"random"=>false,
"sort"=>"none")); ?>
"http://today.reuters.com/rss/politicsNews",
"num_items"=>10,
"show_description"=>false,
"random"=>false,
"sort"=>"none")); ?>
The yahoo feed works but the reuters one does not. The problem does not appear to be in my syntax as I've tried using only the reuters one to no avail.
One small problem is that useing the filter method to post feeds in a post, the description is not showing up at all, just the link. Even though show_descrption is set to true.
I've even tried using
and when I do that, the feed disappears completely.
I'm using Wordpress 1.5.1.3
Any help would be cool.
Thanks.
Can you send me the code you're using to show the description? You
shouldn't have to delete the cache file because I don't cache the html
but the actual RSS feed (so I already have the description (if it is
present in the feed) but I don't show it unless you turn that on.
If you can send me the code (and the url you're calling to get the RSS
feed) I can try to help you out a bit more.
Your anti-spam system started flagging my posts as spam, so I haven't been able to respond. I added a new del.icio.us post and it didn't show up. Something is definitely wrong. I don't know how to post code, so please tell me how or tell me another way to communicate.
I have tried to email you via the address you provided with your comments but it bounces back to me saying tmac is not a valid user at your domain. You can email me at bill.rawlinson using gmail.com as the domain.
I need the url thats all then. You shoulodn't have to edit the rss
file to include a URL - you should be calling the rss file with the
function call in your sidebar or other part of your template.
If you could send the exact function call your using as well that
would help me to figure out why it isn't working for you.
You can't include php with the brackets in comments on the blog (> and
<) around them as they will be lost you need to escape the brackets
(< and &gt;) - this is done as a security measure within the blog.
I downloaded the .zip file of your plugin, but winzip is saying that the archive is in an invalid format. Could you check to see if it's just me? Or that it's really corrupted/bad?
Tahnks in advance =D
I don't actually have winzip installed, but 7zip a free alternative. It opens fine in 7zip so I honestly don't know if there is an incompatability with winzip or not.
If you want you can take a look at 7zip: http://www.7-zip.org/
Thanks, the file is extracting properly. I'll be installing it and hope everything goes smoothly. Thank you so much for the nice plugin. ^^
Therefore I was wondering if this problem could be caused by the server? Or do you have another idea what the problem could be? Thank you very much!
Sebastian
Only odd thing is that a flickr tag feed inside a post doesn't accept any parameters, so:
appears to work but as soon as I add "num_items=5" it doesnt appear, tho in other posts I have no issues with other feeds.
this is the url I dragged the rss feed from:
http://www.flickr.com/photos/tags/horses
This change, however, also causes anyone who upgrades and is currently using the FILTER capability with named parameters to have to edit their filter calls. Previously you would enter the parameterName = parameterValue in a list. Now the equal sign (=) is replaced with a colon and an equal sign:
paramenterName := parameterValue
Here is an example of the usage:
<!--rss:rss_feed_url:=http://www.43things.com/rss/uber/author?username=FinalCut,num_items:=5,random:=true,show_description:=false-->
there are quite a few ways to not have a bullet in front. You can not have each item in a list (replace the before and after paramters. Or you can use CSS to define the list-style-type to none. You can also make them numeric by wrapping your call to the method in <ol> tags instead of <ul> tags. Its really up to you how you go about getting rid of the bullets.
You will notice in my sites sidebar there are graphics for bullets - that is done with CSS. Again the possibilites for you are limitless.
Jaron
So, I have updated my copy to fix this problem. If you are using the acronym plugin and the rssLinkList plugin and you experience a problem with rss feed urls getting modified by the acronym plugin contact me for my copy of the acronym replacment plugin.
Jaron
I can't get the feeds you're talking about to work either at least not using the links they provide - However, If I change the URL to just a little bit they work fine:
Top News http://news.google.com/news?output=rss&topi...
World http://news.google.com/news?output=rss&topi...
US http://news.google.com/news?output=rss&topi...
Business http://news.google.com/news?output=rss&topi...
Sci/Tech http://news.google.com/news?output=rss&topi...
Health http://news.google.com/news?output=rss&topi...
Sports http://news.google.com/news?output=rss&topi...
Entertainment http://news.google.com/news?output=rss&topi...
example of a search result as a feed:
http://news.google.com/news?q=lemurs&output...
I basically just reordered soem of the stuff - but in general didn't do anything else.
The download link isn't working, I think because you've capitalized "RSS" in the URL. It should be http://dev.wp-plugins.org/file/rss-linked-list/rssLinkList.zip instead of http://dev.wp-plugins.org/file/RSS-linked-list/...
Thanks, and looking forward to getting this all working!
I have a few web pages running that show RSS Fetched Link List in action; one includes the code I use to achieve my results. See:
http://www.alexandrasamuel.com/rsstocracy/learn...
or
http://www.alexandrasamuel.com/powerblogher/
I've also written up a list of sources for creating custom RSS feeds -- my favourites for generating content to aggregate via RFLL. See http://www.alexandrasamuel.com/archive/10-place...
Also I think the guy who made the comment above sounds like a really, really great guy. I mean, not just anybody bothers to let people know when a download link isn't work. I bet he's making some woman very happy.
just, thx
today's a great day, great plugins that save my a** pops around the place, i spend my day saying "thx", and i love that.
cheers
matt
I'd really love to see items with a "date" stamp, less than the last 'n' days, flagged as NEW. Now, I'd do it myself if the output for rssLinkList wasn't printed directly and if that information was actually returned. The problem is, it's not returned.
So, possible solutions: upon gathering rss feed and caching, pull and compare date() with the rss date line for each item, determine difference, if less than requested "newness" factor, wrap 'title' in div tags that assign a class/id of 'new'. This way the author can do whatever they'd like with the information.
This is just a thought. Am still thinking about doing this myself.
Comments?
The URL in question is: http://www.aadl.org/feeds?type=curitems&tok...
And my blog:
http://blog.mittenartworks.com
Has anyone else had this sort of problem? Is there more I can tell you to help figure out what's going on and how I can fix it? Is it possible to turn caching off? Thanks so much.
We're using rsslinklist in a couple places and I noticed that rsslinklist will turn each item's title into a link even if no 'link' tag exists for that item.
I coded my way around this, but thought you might like to know for future releases.
The title of each item in the list is now wrapped in a span with a class of rssLinkListItemTitle
and the description is wrapped with rssLinkListItemDesc
you can download the lastest version as always from above..You can see an example of the non-linking titles at: http://rawlinson.us/blog/?page_id=348
I downloaded your plugin for the first time last week and experimented with it on several WP templates, including three column kubrick and it worked fine. I just downloaded your Friday, September 02 version and installed it on a fresh WP install and when activated, causes the following errors to appear in my admin section, listed at the top of the screen:
Warning: Cannot modify header information - headers already sent by (output started at /home/friendsw/public_html/wp-content/plugins/rssLinkList.php:444) in /home/friendsw/public_html/wp-admin/admin.php on line 10
Warning: Cannot modify header information - headers already sent by (output started at /home/friendsw/public_html/wp-content/plugins/rssLinkList.php:444) in /home/friendsw/public_html/wp-admin/admin.php on line 11
Warning: Cannot modify header information - headers already sent by (output started at /home/friendsw/public_html/wp-content/plugins/rssLinkList.php:444) in /home/friendsw/public_html/wp-admin/admin.php on line 12
Warning: Cannot modify header information - headers already sent by (output started at /home/friendsw/public_html/wp-content/plugins/rssLinkList.php:444) in /home/friendsw/public_html/wp-admin/admin.php on line 13
Since it was working before, I wonder what is causing this and how to correct it?
you may want to make sure there is no whitespace at all after the final ?> in the rssLinkList.php file.
There is indeed some extra blank line after the final ?> in the rssLinkList.php file, but I can't seem to get rid of it. I delete it, but then when I press save, it reappears on its own when the browser refreshes. I've been using both Mac and WinXP versions of Firefox. I'm stumped as to why.
I'm currently using your plugin to parse my del.icio.us links, last.fm recent music feed, and upcoming.org events, and it works wonderfully for all three. I only found RSS Link List while looking for an alternative to the Missing-In-Action Upcoming.org WP-Plugin, whose dyndns site seems to be down. I can't imagine I'd even have a use for that plugin anymore, anyway. Yours handles that along with so much more!
http://yelp.com/syndicate?t=u&u=DTDzXhNQKctTluv5-kIlMw
Any suggestions?
deprecated the $debug parameter and added a new parameter of $ignore_cache. ignore_cache should ONLY be set to true when testing or when using a feed that won't ban you for visiting too often. As an example I am setting this to true on my "Recent Music" feed so that it is as up-to-date as possible.
There is a little trick to this, if you provide a number for ignore_cache it will use that number as the seconds to cache that specific feed for instance my recent_music is actually set to 120 so the cache expires every two minutes.
Also, if you have no title but you do have a description the description will be wrapped in the hyperlink (if one exists)
The reason seems to be that any traffic pointed at http://yelp.com/xxx is redirected to http://www.yelp.com/xxx, and that redirection breaks the RSSLinkList script.
Thanks to Bill for helping me sort that out.
Fatal error: Cannot instantiate non-existent class: lastrss in
error.
I have modified the locations in the rrLinkList.php to reflect actual location (e.g., http://wordpress.domain.com/wp-content/
Likewise, I have used the same http format to locate last lastRSS.php.
Could you help me out with my "user error?"
<!--rss:rss_feed_url=http://digg.com/rss/maverick999/index2.xml,num_items=20,random=false,new_window=true,ignore_cache=false-->
I have cache set to false to see if it was something with my cache, but it's not. I can access the feed via the URL, so I know the feed is working. Any ideas?
How are you calling this? Is it via the "plugin" or the "filter" mechanism in rssLinkList?
It looks like the filter if that is the case you need to call it like thus:
rss:rss_feed_url:=http://digg.com/rss/maverick999/index2.xml,num_items:=20,random:=false,new_window:=true,ignore_cache:=false
notice that instead of just an equal sign now between the argument and the value is a colon equals sign combination..
rss_feed_url:=http://digg.com/rss/maverick999/index2.xml
However, when I tried to use rssLinkList to access that feed I got back the following error:
HTTP/1.0 403 Forbidden Server: SI4MIA1/1.0 Mime-Version: 1.0 Date: Mon, 19 Sep 2005 18:56:28 GMT Content-Type: text/html Content-Length: 149 Expires: Mon, 19 Sep 2005 18:56:28 GMT X-Squid-Error: ERR_ACCESS_DENIED 0 X-Cache: MISS from Prolexic.com Connection: close
I'm not sure why they are returning that error.
Bill
I don't know what else to suggest. For some reason the php script gets an 403 error (access denied).
I can't do anything about that (that I know of). Unless someone knows how to "spoof" the client that is requesting. For instance, rssLinkList is requesting the feed. But if the server thought IE was requesting it maybe it would not give that error. (i dunno, but that is my guess).
If there is a way to spoof a certain client type when requesting the feed via PHP and someone knows how to do that then let me know and I'll try that. Otherwise, I'm sorry to say, I think you're stuck with that particular feeds limitation.
*************************************************************************************
I managed to recreate this problem, finally. And I'm not entirely sure.
I found that you get an error unless you specify the "user-agent"
string in whatever software you are using.
If you are using php there is a line like this in your php.ini file:
; Define the user agent for php to send
;user_agent="PHP"
just remove the ; from the user_agent line and restart your web server.
If you don't have acces to php.ini you can also do it via .htaccess
or the php function ini_set.
*************************************************************************************
Does this make sense? I don't have access to the php.ini file on my webserver, so I'm probably going to try and fix it via the .htaccess file. I just thought you might want to know about this for future releases of your plugin. Thanks for the help!
I tried adding the user_agent variable to my php.ini file, but that didn't seem to fix the problem. I think the code has to use that value when it retrieves the RSS feed. Just an FYI. Again, thanks for the great plugin!
-Casey-
So if I want to display the feed, write a page and insert this in it:
?
I'm not sure how to do this.
-Xarcell
!–rss:http://www.bungie.net/stats/halo2rss.ashx?g=Xarcell– (without the )
Any suggestions?
With the newer versions of wordpress Magpie is built in, previously it wasn't so usrs would have had to install Magpie and that was an onus I ddin't want to put on users of rssLinkList. However, since it is included in newer versions of Wordpress it probably isn't a big deal to make the change.
Therefore, I will be upgrading rssLinkList to use Magpie shortly. This will result in version 2.0 finally being released and it will have ATOM feed support because of it. I will probably also include some of the other changes people have suggested submitted including an admin interface that you can use to add feeds to your sidebar mostly automatically.
Look for this change within the next week or two. Once 2.0 comes out I will keep the current version with lastRSS available for folks who are using older non Magpie enabled version of wordpress as well; however no further changes will occur to it and it will not be officially supported by me anymore; though I will still answer questions when I can as I do now; I just wont fix anything with it if something new is found to be broken.
My installation is checked out from svn.automattic.com/wordpress/tags/1.5.2/.
I am trying to use your plugin for wp (>1.5). Followed the instructions on readme.txt but get the following error when I use the function on my sidebad
Fatal error: Call to undefined function: error() in (my website)/blog/wp-includes/rss-functions.php on line 492
Help!!!!!
~Vish
However, the workaround just reveals the underlying error. In my case, that's "No Items Found" (feedlist.php 366). I'd installed feedList because I was getting a similar error with wp_rss ("Empty document"). Unfortunately, I didn't know that feedList was based on the same code, so I'm back to looking either for a fix or something that will process NewsGator RSS 2.0 feeds!
On an unrelated note, be sure to use the correct call. The difference between feedList and _feedList (note the leading underscore) gave odd results when I switched between the two calls. Suggested enhancement: provide a single user function, and call is_array to process parameters appropriately.
$parser = xml_parser_create("");
xml_parser_set_option($parser, XML_OPTION_TARGET_ENCODING, "UTF-8");
This is for PHP5. For alternatives and discussion, see Steve Minutillo's blog.
First off I don't know what wp_rss is. If you mean they both use the built in rss stuff in wordpress - then sure they are both based on the same thing.
As far as the two separate calls feedList and _feedList - well your right it would be a good idea to make just one function call. They are pretty significantly different and the fact that there are two of them is a carryover from rssLinkedList. The reason there were two there was me trying to be backwards compatiable (and the fact that this was pretty much the first thing I ever wrote in PHP so my familiarity with the language was, and is, pretty shallow).
It seems like there should be a cleaner solution for changing the encoding option without users having to edit the core files that come with WP; at least that was my hope.
Thanks for the link to the wordpress ticket - I will include the code shown there to override a missing "error" function. At least then things will "fail gracefully" if an error occurs.
I will have to do some research on the encoding stuff and your is_array suggestion. Or, if you want, since it is pretty much open source, you can send me any suggested changes and if they work well I'll incorporate them into the baseline of feedList.
Bill
One problem, though: I set both showRSSLinkListJS and new_window to false, and yet target="_blank" is still being inserted into the anchor tags. Am I doing something wrong?
Oh, and I'm trying to pull quotes from this feed here, but I always get the permalink only, not the quote itself. It's RSS 1.0. Any idea what's going on?
Thanks very much for any help!
I will try out the feed you gave me and see if I can figure out what is going on.
In fact, I plan on doing some work with feedList tomorrow based on John's suggestions of a couple days ago so it will be a perfect time for me to take a look at your issue as well.
Cheers,
Bill
I' ve modified Version 0.9.1.2 to show the "category" field to each item. Makes more sense in case of many items in different categorys or from different feeds.
Peter
I will have to give this one some thought and try to come up with a good solution that fits your needs and those of anyone else that might want to show an unusual value from the feed.
I also added some better error handling.
I will be working on an additional improvement that lets you pass in a new parameter which lets you specify other fields from the syndicated field to display beyond the standard/default ones.
If you have been having problems with feedList not working properly such as your page not showing anything, make sure you download this copy and see if it resolves your issue.
I also have the problem that my page don't show when i'm including my feedlist code in the sidebar of my theme.
Any ideas ?
Cheers Jaron
the admin section of feedList isn't done yet. Sorry I didn't make that very clear in the post; that is a big part of why it is still in "beta" status.
Jaron,
I will have to look into what is going on with the images not showing up. Thanks for reporting the problem.
A solution that doesn't require editing WordPress files would be great, but the Minutillo post, linked above, suggests that the encoding fix either requires changing rss-functions.php or relying on different RSS functions. However, I make no claims of WordPress nor PHP expertise.
Please don't mistake my terse posts for intentional rudeness. Anyone who releases open source is a kind of hero in my book.
About all these questions about weird accentuated letters rendition: here's the bug correction !
1. Line 373: change $item['title'] for $thisTitle
2. Line 357: $thisDescription = $item['description']; should be followed by
if($encoding){
$thisDescription = utf8_encode($thisDescription);
}
Of course, don't forget to set $encoding = true; somewhere.
Nice plugin, many thanks !
on line 326, change $new_window = 'simple' to $new_window == 'simple'
Bill, is there any way to catch the post date so that we can insert it next to the description or link ?
MLL
thanks for the help on fixing those bugs; particularly the encoding one - i have just not had any real time to dig into it. I'll update the plugin first thing tomorrow morning so everyone can look for the update after noon EST.
I'll have to look at that target="_blank" one since I still haven't even had it happen and I use the plugin pretty regularly throughout my site.
I am not sure about the date.. I'll take a look at it when I do the patches tomorrow morning though and let you know when I post the update.
Thanks again
Bill
I will be looking into adding support for displaying "dates" next.
As an aside, I apologize for any SPAM that has snuck through my blogs comment filter. I catch about 80 a day on this post alone but I know how annoying those few that sneak through are to everyone.
About the spam plague: what about Captcha plugins ? Seems the ultimate spam firewall to me, isn't it ?
The idea behind them is to make an image that only a person can decipher and have them enter the textual value of the image into a box. However, not all of them are only deciperhable by a human, and worse yet, many humans can't decipher them because they can't see.
Blind people (and some color blind people) get totally screwed by Capthcha's and for that reason alone I don't use them.
I like your plugin, but have some problems:
When I activate your plugin I get a link manage/feeds.
(to wp-admin/feedlist.php) I don't have feedlist.php.
Also I can use in my postings, but not in my templates.
The preferred method does not work in my posting or in my template.
works fine :-)
Any idea ?
thanks in advance
I am not understanding the release of something that is not complete.
I have a link in Admin - manage that says "feeds" I click that assuming that this is the admin interface of this plugin, where I can edit feeds and what have you. All I get is "The requested URL /wp-admin/feedList.php was not found on this server."
Now what that says to me is that there is an entire part of this plugin missing, yeah?
In other words, you need to edit your feed list manually through the feedlist.php in the plugins directory. Well that is a whole bunch of fun, when all I want to do is display feeds on my site and be able to edit them through wp without coding any rubbish php files FFS.
Then on top of that - reading the instuctions is like hiragliphics. So off you go editing the php to set up the default settings and doing that does not work as it just does what ever it wants.
EG: I set it up to show only 1 item in the feed and it shows 15.
Using the basic code.
So What Tha is this about? Has it been fixed or are we just gonna leave it half done?
Furthermore, the plugin does work though not the admin side of it (yet). Simply takes a bit of coding in the template to set it up.
cheers Bill
Paul V
I managed to put it pretty much anywhere on any page in my site by using the example code.
?php feedList("http://del.icio.us/rss/finalcut"); ?>
Missing the first
How are you trying to display it? or where? in what format?
cheers
Paul V
But I have one question. Is it possible to remove the 1, 2, 3, 4 etc in front of the feed? And how would I go about doing it.
Thanks!
Jens
Basically these numbers, or dots, are a product of the HTML that surrounds the items in your feed. If you have your feed surrounded by at <ol> then it will put numbers in front of each item that is surrounded by an <li> an <ol> tag stands for an "Ordered List" thus it puts a numeric label on each element in the list to signify their ordering.
An <ul> tag stands for an "Unordered List" and puts dots in front of the items because they shouldn't be clearly ordered.
To remove the numbers (or dots) from your feed you need to do two things:
1. update the code in your template that calls feedList to not be surrounded by an OL or UL tag - so it should look like this:
<?
feedList("http://rss.news.yahoo.com/rss/topstories");
?>
Instead of like:
<ol>
<?
feedList("http://rss.news.yahoo.com/rss/topstories");
?>
</ol>
2. the second thing you need to do is update the actual feedList function call to explicitly tell it not to wrap each feed item in the <li> tags. To do this use this example:
<?
feedList("rss_feed_url"=>"http://rss.news.yahoo.com/rss/topstories","before"=>"","after"=>"
");
?>
the preceeding example will put each feed item on it's own line. If you wanted each to be wrapped in a div tag or in a new paragraph tag you would just replace the before and after values appropriate. For example this would wrap each item in the feed in a paragraph tag:
<?
feedList("rss_feed_url"=>"http://rss.news.yahoo.com/rss/topstories","before"=>"
","after"=>"
");?>
If you see an < and > they are meant to be < and > respectively in the prior examples.
That did it!
I'm hoping you don't mind my quick quesion.
Is it possible to make only descriptions italic for a layout design purpose?
Regards,
Thanks for the great plugin. I've really enjoyed playing around with it!
I noticed that in the previous version of the plugin, images that were embedded in the RSS feed would show up. But it appears that in the 2.0 beta version, images have been filtered out (same with ""). Is there some way to include images?
(I tested it on two different image feeds (one was flickr and was one personal) and I got the same results).
Thanks again for putting this great plugin together!
I will work on getting the images working again. I'm not sure why they aren't showing up but it should be fairly easy to figure out why; however I can't promise it will be easy to fix once I do figure it out.
I'll post a message here as soon as I get it working - or if I can't.
Bill
Just noticed that the "break" code... i.e. was filtered out of my comment (similar to how it is filtered out of the feed). :)
Thanks again!
I look forward to playing with this tonight!
Cheers Jaron
This plug-in is absolutely AWESOME!
I got it working great with one exception--which I have a feeling is user-error.
When it displays the RSS on my page, it's showing the title info twice, no matter what RSS feed I use. It looks like this:
Story Title - Source - Story Title -Source - 2 hours ago - Description
If you cilck on my page, you can see it at the very bottom, above the copyright. Any ideas?
I REALLY appreciate it!
Open your WordPress wp-included/rss-functions.php file,and replace line 48:
$parser = @xml_parser_create();
to:
//-------------------Instaniate an XML parser under PHP4--------------------------------//
if (preg_match('//m', $source, $m)) {
$encoding = strtoupper($m[1]);
} else {
$encoding = "UTF-8";
}
if($encoding == "UTF-8" || $encoding == "US-ASCII" || $encoding == "ISO-8859-1") {
$parser = xml_parser_create($encoding);
} else {
if(function_exists('mb_convert_encoding')) {
$encoded_source = @mb_convert_encoding($source, "UTF-8", $encoding);
}
if(function_exists('iconv')) {
$encoded_source = @iconv($encoding, "UTF-8", $source);
}
if($encoded_source != NULL) {
$source = str_replace ( $m[0],'', $encoded_source);
}
$parser = xml_parser_create("UTF-8");
}
xml_parser_set_option($parser, XML_OPTION_TARGET_ENCODING, "UTF-8");
//-------------------------------------------------------------------------------------------------//
Word with most Charset Fine.
Reference: PHP, XML, and Character Encodings: a tale of sadness, rage, and (data-)loss
http://www.quakemachine.com/blog/wp-content/fil...
and read my post:
http://www.quakemachine.com/blog/php/wordpress/...
sorry it is chinese,and my poor english.But if you trust me,just donwload and replace your rss-functions.php file,noting hard.
Can you please tell me where in my "blog/theme" directory templates I should add the rss feeds I've chosen? Can you have it enter into a certain category?
Thanks,
Tony
This may be an issue more with Apple/LinkShare more than, but I have a couple feeds to come from Apple that list off the New Releases/Just Added music to Itunes. There's been problem after problem with there feeds. Some have been on their side, some on feedList.
Anyway, I wanted to get your thoughts on what might be the problem to see what input you might have.
You can check out http://www.dcsteve72.com/?page_id=21 and see the feeds. There's obviously some major formatting issues with the images that raises some questions. The link issues that I had prior seems to be fixed.
Any thoughts?
I can provide you with the URL for the RSS feed if you'd like to check it out.
-Steve
Bill
I am trying to make a new site with most danish media represented. My problem right now is, that danish newspapers don't allow deep linking (they had a case in trial) so now I am trying to find a metod to fetch their news, but only linking to their main site.
Do you have any idears to how I could make thi? The thing is, I would like to use your plugin the normal way, but for certain feeds I don't want to link to the content, but only to the site. I have been looking at the code of your script, but I don't know anything about programming. Also I have considered install two of your plugins, but I don't know how to distinguish between the two scripts. Then I could remove the link in the hyperlink section. Finally I am considering to use another plugin for these specia feeds, but they tend to make trouble with the danish letters, unlike yours witch works perfect.
If this sounds like a bigger thing to solve, then never mind, but if you had an easy solution I would be happy to hear.
is this plugin working wih wordpress 2.0?
I get some errors....
Thanks,
Sander
Please Help Me.
beta because I haven't added the administrative interface yet. However the new
version does offer a new feature as requested by some users; you can now turn
"off" the links in each feed item. That means if your feed list normally has each
title linked to the source of the feed item - you can turn off the link so that the feed
is more for informational purposes. This is useful if you use a feed to a site that doesn't
want you deep linking (or in countries where it is illegal to deep-link).
You can get the new version of the feed from the standard download location noted in at the top of
this page.
Also a huge and hearty thanks to Martin for the donation! Your generosity is very much appreciated.
martin
I love the plugin, and I've been using it for a while now. I recently upgraded to WP 2.01 and it seems as if the plugin doesn't work anymore. The only thing that shows up is this error:
Call to undefined function: fetch_rss() in /home/echoshoc/public_html/wp-content/plugins/feedlist.php on line 286
Is this feedlist or WordPress's problem?
Any chance you can point me in the right direction as to how to go about this?
Thanks.
I have installed your plugin and works great, with only the URL works Ok, with more parameters I can't have it working.
Also I solved the problems with international characters with the patch of AvP for rss-functions.php
Great job!
utf8_encode(...)
with
htmlentities(utf8_decode(...))
That works perfectly for me and I did the same for the hyperlinks to meet the xhtml-Rec:
htmlentities(utf8_decode($item['link']))
Bye
Sebastian
I could, of course, just fetch the feeds from a cron job and use the plugin to display them but that should not be needed, right?
I fear I have discovered a bug in your feedList plugin. On line 274 in the rssLinkListBuilder() function, you definitively turn OFF caching no matter if it was turned on by the conditional statement above. Therefore your plugin is NEVER CACHING CONTENT!
I suspect this is something you just forgot to remove? I was wondering why my blog is always loading so slow, and stumbled across that line when debugging.
If that's not what you were intending to do, could you please fix it for your other users? If it was intentional, (something doesn't work w/caching?) could ya drop me an email? Thanks.
1. Improved Internationalization support thanks to a contribution by Sebastian
2. Caching was turned off by default!!! If you are using feedList you must upgrade to 2.04b. Thanks to Ted for noticing this oversite on my part.
I apologize to everyone for the mistake on the caching. I completely missed the fact that I left that line of code in there.
I encourage you to upgrade as soon as possible and don't forget to copy your configuration section over to the plugin when you upgrade.
In the next version (2.05b) I am going to try and pull the plugin configuration out into a separate file so that you can upgrade more seamlessly from then on.
A very general solution is to define two additional options "to_encoding" and "from_encoding", which are used if encoding=true (for most users to_encoding=HTML-ENTITIES, from_encoding=UTF-8).
One could use http://www.php.net/manual/en/function.mb-conver...
What do you think?
-Sebastian
OR at least but it in bold at the top of this page:
Primarilly, the Administrative Interface isn’t complete yet.
If the images are too wide, they destroy my template. Is it possible to reduce the width to a specific size?
I have tried to add following to the end of your programme:
$rssList = preg_replace('/(]*)(src=[\"\'][^> ]*[\"\'][^>]*>)/i','\1 width="450px" \2', $rssList);
But now all images get the size 450px !! so what before were small smilies are now huge monsters
What to do?
regards
Mikael
For instance you can put a class name or id value on the UL tags that wrap your list
<ul id="deliciousList" class="hidden">
<?php rssLinkList("http://del.icio.us/rss/finalcut",10,false,true,"<li>","</li>","-",false,"desc"); ?>
</ul>
then in your styelsheet file:
#deliciousList li img { width: 450px; }
Hope this helps
Unfortunately, after about three hours of smooth sailing, I suddenly hit an error. Where the RSS feed had been displayed on my site I got this error message:
Fatal error: Call to undefined function: debug() in /home/comics/public_html/wp-includes/rss-functions.php on line 486
(And nothing after this showed up -- the rest of the site was blank.)
I'm not particulary PHP-savvy. A quick look at line 486 of rss-functions.php shows that it is involved with an attempt to return a cached object like so:
// attempt to return cached object
if ($rss) {
if ( MAGPIE_DEBUG ) {
debug("Returning STALE object for $url");
}
return $rss;
}
But beyond that I'm not sure what to do. Any ideas? Thanks in advance!
Josh
I have installed and activated your plugin. I would like to use this plugin to pull RSS feed from
http://mysite.com/forum/forum_backend.php
And would like to display the links in index page on top of all posts. Could you please help me out?
thanks,
drb
However, I am having new issues now. RSS feed is showing old feeds and also different versions (dates) old feeds when i place the code in 2 places in the index page. Both are different.
And it is not the current RSS feed that i am seeing in my desktop RSS feeder.
Any help?
drb
Thanks for making a great little plug-in. Beats using other methods for sure. The one thing I would like to change but cannot seem to figure out how--I want to remove the indent at the beginnning of generated each line. And I would like the listing to default to my site styles. Is this at all poddible?
Thanks
Steve
I just installed your plugin and it works :-). I use it for del.icio.us. The only thing I'm not perfectly happy with is that untill now I just can show all links in an unordered manner (alphabetic order doesn't make a lot of sense for links). Is there a possibility to show the tags as well, or to sort by tags? I know there is the possibility to subscribe the feed of each tag, but I'd prefer it dynamically so that I don't have to update my list of checked rss when adding a new tag.
Thanks,
Christine
BTW writing this comment took a lot of time, because it is incredible slow (I think it's the AJAX). And actually I don't need a realtime preview ;-).
Secondly, I am going to TRY and find a way to support sorting your feed items based on different fields (beyond date) but that will work with any feed. I don't promise anything but I will try. If I can get it to work out in a nice way then requests such as sorting by del.icio.us tag will happen.
Also remember if you choose to not sort they will come back "newest" items first typically. For example your most recent del.icio.us bookmarks will be displayed in date added order.
I still haven't made any real progress with the admin - feed- manager functionality sorry. i have been super busy with life and feedList has suffered for it.
Firstly I'd like to thank you for taking the time to write this plugin. It was very easy to install and find in my plugin directory and activate.
I should let you know, I'm a complete NOOB regarding this kind of thing. After activating the plugin I reloaded my site and expected to see some kind of image/link or something, but I see nothing. Is this normal? I did NOT edit any of the values in the configuration section of the plugin. Is it necessary to change some of the values?
that sounds nice :-). I'll have another try when you've got it work!
Ah, and thanks for disabling the realtime preview for comments here...
Christine
Any workaround for this?
Thank you.
204B works fine in WP201. I am using it. THere might be some other issues.
Bill,
It might be discussed here already, but I am wondering is there a way that each feed show at what time it was updated? like 1 hr ago, 1 day ago. Something like that.
Secondly, is there way to truncate the titles with .... as some of my feed titles are too long.
Thanks,
drb
To answer the last questions I notice:
1. show the time/date of last update. Hrm.. I suppose I could show that but I'm not sure. I will have to see if the data I get back from Magpie has that information in it or not. I trust it to give me the feed information from either cache or a refresh (so I don't really know when it was updated unless Magpie tells me.)
2. tags, tags, tags. I do want to try to support ordering/organizing by other fields. At one point someone else asked about the content field as well. I guess I need to find a way to both organize/order and/or display other fields in the field beyond what I am already showing. This one is on the slate for investigation
3. Admin functions. I am a slacker. I did make it so you don't get the 404 error anymore if you have the most recent version of feedList - but you still don't get any actual admin functions sorry. This is at the bottom of my list really since the plugin works as is currently. But I will get to that part eventually. For the time being the link remains a teaser.
4. comment live preview - I turned it off today. So now when yout put a comment on this page it should be a little more responsive.
5. remember if you want to change the way the display is setup for the feed you will need to mess with your cascading style sheets in the theme for your blog. I deal purely with giving you the items to display. It is up to you how they appear as far as style goes.
i use it on my site to display the bbc news headlines, and it works like a dream, pretty damn quick too!
IS there a way to truncate the feed lenght with dots like ....
ANd also show when the feed was updated?
Thanks,
drb
have you ever seen anything like this before? could it be a dreamweaver bug?
thanks for your help
tom
As far as truncating the feed item and putting ... perhaps I can do this. It would end up being a new optional parameter to pass to the feedList plugin. I'll take a look at adding that capability; however I need to know if you mean truncating the title, truncating the description, or both - or truncate the combination so that title+description length is less than some value.
With some RSS feeds not getting updated on a regular basis (or just wanting to make sure that you are looking for the most recent), having the date show would be a good idea!
I wish to truncate the title and also description.
The reason, I need is that sometimes the titles are too long and goes to the next line and since titles are bulleted, the second line should have an indent matching to the bullet with the first line, but it isn't.
Anyway, truncating will be a big boon for me.
I have one more quesiton: say I increase cache to 4 days, that means, the feedlist plugin will not ping the original site for 4 days?
Thanks for your prompt response.
drb
So, as of right now version 2.05b is now available for download at the link at the top of the feedList page. It supports a new parameter "show_date" which will toggle on the display of the last updated date.
The date is formatted to show the timezone of the server that is hosting your webpage.
How could i make this work with Wordpress Multi Users (WPMU)?
As of now, it installs, but when you go to Manage-->Feeds, it leads to http://www.domain.com/wp-admin/feedlist.php which is a 404 error.
regards,
sskhalsa
Just another user here, but I know that the Manage > Feeds admin feature isn't finished yet (there is a comment above about Bill changing it to not throw a 404 though). I'm not sure if the actual feedlist works in WPMU or not.
Bill, your new design cuts off the left side of the comments in IE6. They are OK at the top of this thread, but not at the bottom. Looks fine in FF.
Thanks again for a great plugin.
martin
I got it to work on wpmu!
great plugin man
I have a script that does this but it outputs a PHP file, which this plugin does not read.
Bill
God bless you!.
drb
It does work and it supports all of the normal options that the normal feedList functionality supports.
If you have any questions please make sure you have read the readme.txt file and then post them here.
It's Tom again. Thanks for all your help the last couple of days, made my life a great deal easier. I hope you don't mind, but I have linked to your website on my website! Really wanted my visitors to know how good this plugin and your support was!
Kind regards.
Tom
"http://del.icio.us/rss/tijdelijkenaam/",
"num_items"=>6,
"show_description"=>true,
"random"=>true,
"sort"=>"none",
"new_window"=>true));
?>
Thanks,
drb
Great plugin!
Is there a way to create a page in WP and list all my feed links fron a feed?
I created a page and used the code that is used for the sidebar but it did not render. Is there a correct way to do this?
Thanks
http://domain.com/pathtofeed/?user=username&...
I get back EMPTY LIST. However, when I paste the same URL in my browser it works perfectly.
Is there any way I can get this to work? Thanks for the great plugin.
Tony
unfortunatelly it doesn't run in my site.
I've copied and pasted your examples here, but without success.
Now it looks like this: http://www.humanio.net/?page_id=28
The plugin is active and the code I use on the page looks like:
”,”—”);
?>
Could you help me please?
Regards,
Alex
;)))
;)
If you have a pages.php template page already, you can copy this (save it as "feeds.php"). You'll need to add a little code to the top of it to tell WordPress that it can be used as a page template. For more info on this, look at:
http://codex.wordpress.org/Creating_a_Search_Page
(where it says "give your Search Page a heading WordPress will recognize")
Then, put the feed code into the template where you want it to show up, and then go back to the page you created with WordPress to display the feed. When you edit it, the sidebar has an option to use a non-default template for just that page. Pick your new template and you should be good to go.
This is a bit of a whirlwind explanation, but if you need further help, contact me (my info's on my website).
You can use the "filter" method of the plugin to embed feeds in your posts. I'm not sure if that was what you were asking about. But if so and you need help using the filter please just let me know.
Sorry my reply has been so slow. A lot has been happening in non-feedList land.
Great Plugin. I use it on my WPMU site in conjunction with the Sitewide feed plugin, and even created a hemingway block to display it on the sidebar (bottom bar). Easy Peasy, lemon squeezy :)
However, the feed I pull has entries on it created by many different sites, is it possible to show another field from the feed? For example I have a 'creator' field in the feed I would like to display as well as the Title and date. Is that possible, and if so, how could I do that?
Thanks
Andy
If you want to show three additional fields; "summary","pubDate", and "about" you would pass the new parameter as a tilde (~) delimited list of those new fields like so: "additional_fields" => "summary~pubDate~about" It is up to you to know the names of the additional fields you want to include.
Now, you maybe asking - what if I want to show a field that is nested within another field. For instance, at del.icio.us the tags are shown in the field "subjects" which is a subfield of "dc" well you can do that too. Just include the subfield as a field like so: "additional_fields" => "dc.subjects". Notice that I showed the subfield as a dc.subjects - you need to do the same with any subfield. So if your subfield is man under bar under foo then you would list it as foo.bar.man - Now, I realize this is going to depend on you
knowing a little bit about the feed coming back - but this is the only way I knew how to give everyone the flexibility to show all the fields they wanted to show.
I have also structured the data so that you can style each additional field however you want. Basically each field is wrapped in a div with a class name. The class name is dependant on the field. Example - for the field summary the class would be fieldExtrasummary for the subfield dc.subjects the class would be fieldExtradcsubjects. All of these extra fields classes start with fieldExtra then have the field name (minus the periods/dots) appended to the end.
Hopefully this all makes sense. You can see this in action in the footer of my homepage here for the del.iciou.us links. I have the tags being displayed ("additiona_fields" => "dc.subjects") and I have styled them to be in italics using my sitewide stylesheet.
1. wordpress and magpie convert all key names into lowercase so we need to reference it as rx:currentprice. I updated feedlist to automatically convert what you enter to lowercase so you don't have to remember.
2. you don't need the item. at the beginning. It should just be additional_fields=>"rx:CurrentPrice"
3. feedList didn't handle colon entries becuase I was unaware of them. What it actually means is there is an array of values "rx" and one of the keys in that array is "CurrentPrice" - I have handled that in feedList now so if you get the latest version it should work for you.
Finally, there is one caveat for you to consider. The rx:CurrentPrice node in the ebay stuff is listed in total pennies. So if you have something listed for $9.99 it will come out of the feed as 999. Not very useful. So, when all is said and done I still suggest you use the "description" field of the ebay feed to show your price since it is already formatted nicely in there.
it returns and doens't echo.
the feedList and rssLinkList functions are wrappers to that method and provide some parameter checking so that users can get to the functionality as easilly as possible.
I don't see your previous comment. So I'm not sure what the problem is. I also don't have a Mac to test against so fixing problems that appear in those browsers can be tricky. To be honest, I'm not even sure what problem could be appearing. I just spit out a bunch of list items (li tags) based on what parameters you pass in.
Just installed it, no probs at all. Made my first page, now I'm off to create
another 30 or so more. :)
http://blog.ask-me-about.com/health-articles/
Cheers again
Loz
Thanks for this great plugin, I'm using it at my website and it's great to gather all the posts together and display as news, my doubt is what should I have to do to show the dates of the posts before the post title? I would like a format like: 06.06.2006 - Title but I can't figure out what to do, I already tried into the $before line but it didn't work at all, the result is a parse error of unspected T_STRING on the line I placed it... any solution for my problem? You can check my website at http://www.gamehall.com.br/site/?page_id=12 and you will see the last entries listed on the begining of it as ... It's seems to be a simple addition but I'm facing that problems :(
Sorry for the stupid question...
Thanks in advanced,
- Fabio
I installed this script the other day. Thanks by the way for the script. :)
I was wondering. I noticed that when new articles are added to my directory, the rss feed isn't updated on my blog. Is there a way to make the blog update as new posts are made?
Cheers.
Loz
p.s
sorry if this is a duplicate post, I got some error on your site; page not loading.
You have to make sure cacheing is turned off for your feedList call - otherwise the feedList plugin will only look at the feed source when someone loads the page after the cache period has expired. By default the feedList plugin has a cache period of six hours I think. Most sites dont want you polling more frequently than 30 minutes.
Because the feed is already cached on your site you need to turn off the caching and then, after the next cache expiration passes it should stop caching the feed and get it fresh on each page load.
I hope that makes sense.
Bill
Great plugin! I finally found a parser that works well. Thanks!
However, I'm trying to change the way the entries are displayed--I want to first put all the rss feeds from each URL in their own box and then put each entry in its own . However, when I changed the parameters to reflect that, I am seeing the actual html tags show up instead of the formatting. Here's what I did:
<!--feedlist - blog.fractalspin.com/feed-->
"http://blog.fractalspin.com/feed",
"num_items"=>4,
"show_description"=>true,
"before"=>"<div id=rss_feedlist>",
"after"=>"<div>",
"description_seperator"=>"
",
"encoding"=>false,
"new_window"=>true,
"random"=>false,
"sort"=>"asc",
"new_window"=>true,
"show_date"=>true
)
);
?>
<!--/feedlist-->
Best,
liz
-l
If you decide to use this feature be warned though that any encoded HTML entities in the feed will NOT be converted back to HTML becuase I don't want to cause the HTML on your page to break due to cutting out some important end tags at the max_characters point.
Before you use these new options please make sure you read the readme.txt file.
I would like to display a list of posts + excerpts from specific categories on my own WordPress blog. I'm sure there's a suitable category-type plugin to do the job, but I know Feedlist can do exactly what I want. Plus,Feedlist supports embedding a feed in a post, so I can customize each listing. My question is: Is it a good idea to fetch your own web feeds to customize the display on a blog? Or is there a better way to do this? Here's an example: http://shantarohse.com/admin/scribbles-feedlist
I'm glad you like the plugin and that it was easy for you to use. As for your question, I don't now if it is a good idea or not. It should be fine. Their will be connection latency since your server will be connecting to itself to get the feed. The only possible negative, in terms of performance, is the fact that your category post contents will be parsed/looped over more times by using the feed.
For example. When you call the feedList function the first time (when the feed isn't cached yet) it will call the wordpress function that builds your rss feed, this queries the database, loops over the results, and builds the rss feed. Feedlist then takes that resultant rss feed, loops over it and converts it into a format that I can use to build your HTML. Then I loop over that new format and actually build the HTML. So the content is looped over three times (build rss, transform rss, build html). If you used a plugin that was specifically designed to show your own content it would only have to loop over the content once (get it from the database, build the html).
I hope that helps.
I've been having problems with feeds causing validation problems: even when I use & amp ; in a feed, it gets turned into an ampersand when put through feedlist. I think I have an old version, and the problem may have been fixed since then. Has it?
Thanks!
Great plugin. I have a question, Maybe it's already in the readme file but I guess I didn't understand:)
Is it possible to mix the feeds, meaning that the posts from different sources are ordered based on date/time instead of being ordered seperately.
Thanks a lot.
G.
There is a way. You need to use the "feedFile" functionality described in the "Random Feeds" section of the readme. You populate the feedfile with all the feeds you want to "merge" then for the feedsToShow parameter you need to provide a number equal to all the feeds listed in the file.
I believe this will do what you want. If it doesn't let me know and I'll see what I can do to make it so that it does.
Bill
Like some users who posted above, I get "requested list not available" for feeds coming from certain URLs (same feed would work if I copy it elsewhere). From the FAQ I gather it has to do with that WordPress/versionNum request. I am wondering if any solution has been suggested to this issue yet.. Is there anything a person who hosts the feed can do to turn off some kind of blocking/screening feature in their cpanel (or equivalent) perhaps?
Thanks for the great plugin otherwise! :)
If you download this newest version it includes a copy of a file called class-snoopy.php that is a replacement for the file in your wp-includes directory that enables the snoopy class (used by wordpress to go fetch the feed you want to view) to get feeds that are compressed on their source server (using gzip compression).
Basically, if you are having trouble loading some feeds try to replace your class-snoopy.php file - but if you aren't or you feel uncomfortable doing this then leave your wordpress install as is. FeedList will still load most feeds you ask it to (and if you run into one it doesn't then you can try the new snoopy file).
This hat I have in my theme:
"http://www.blabla.pl/rss1.xml",
"num_items"=>1,
"show_description"=>false,
"random"=>false,
"sort"=>"asc",
"new_window"=>false,
"before"=>'',
"after"=>'',
"suppress_link"=>true,
"show_date"=>true,
"additional_fields" => ''
)
);
?>
Now the date is in this format:
Wed, 31 Jan 2007 00:00:00 +0100
How to change it to have:
01-31-2007
???
below your code before loop extracting vars... line 259
// Explicitly set this because $new_window could be "simple":
$target = ' ';
if($new_window == true && $settings["showRSSLinkListJS"])
{
$target=' rel="external" ';
}
elseif ($new_window == true || $new_window == 'simple')
{
$target=' target="_blank" ';
}
Question: I'm trying to pull in an RSS of my shared items from Google Reader, but for some reason, the links themselves are somewhat garbled, i.e. there's no separation between the title of the piece and the referring source.
So, each item looks like this: "Writer Testifies About Source of Her Nom de PlumeNYTimes" (See it in real life at the bottom of my page).
What's going on here? How do I insert a separation?
function BuildFeedOutput(){
$this->args = $this->GetArgumentArray();
$this->rs = $this->GetFeed($this->args['rss_feed_url']);
$this->output = '';
if($this->rs){
$this->items = $this->rs->items;
if($this->args['random']){
shuffle($this->items);
}
// Slice off the number of items that we want:
if ($this->args['num_items'] > 0)
{
$this->items = array_slice($this->items, 0, $this->args['num_items']);
}
$this->output = $this->Draw();
}
$this->output = mb_convert_encoding($this->output, "UTF-8", "utf8");
return $this->output;
}
I actually used to use mb_convert_encoding but it was causing problems for a bunch of people. What I would really need to do is know what encoding the feed was actually in and what encoding I would want to display it in.
$Translations['fr_FR'] = array();
$Translations['fr_FR']['ReadMore'] = 'Lisez davantage';
Just wanted to point out one source of much woe, though... you use the "
If you are using the random feed feature the UL that is wrapped around it's output has the class of "randomFeed"
Cheers
P Ambrose
AM Fresh
I am not sure what I am doing wrong, but clearly something.
Please help!
http://www.nickredfern.com/?page_id=15
:D
Latest WP version
Plugin installed and activated per instructions
Add this to a new page
<--rss:rss_feed_url:=http://www.reformationtheology.com/index.xml,num_items:10,random:=false--;>
Update page
The page displays the line above, not the results...
Also, the snoopy php file is not included in the downloaded package at WP.
This is what I put in my Page:
<h2>BBC Environmental News</h2>
<ol>
<!--rss:rss_feed_url:=http://search.bbc.co.uk/click/p/1/ds/alt/t/News%2520feed%2520for%2520this%2520search/id/17231394112083125823935283296520000/sp/43f7b9247351c260d2bcf3bb46513a03/-/http%253a%252f%252fnewsapi%252ebbc%252eco%252euk%252ffeeds%252fsearch%252fnews%252bsport%252fenvironment,num_items:=10,random:=false-->
</ol>
Many Thanks for a good plugin!