feeds

Multiple RSS feeds with PHP (performance)

Hi! In my recently project i work with multiple rss feeds. I want to list only the latest post from all of them, and sort them by timestamps. My issue is that i have about 20 different feeds and the page take 6 seconds to load (only testing with 10 feeds). What can i do to make it perfrom better? I use simplexml: simplexml_load_file...

Wordpress 3.0 Mult-User - Data Sharing Between Sites

I'm creating a custom solution on Wordpress 3.0, that has multiple different sites using the multi-user capability. I want to know if Wordpress has any functions that allow you to pull data from the same custom post type across all of the sites. An example is news. All of my sites have a custom post type called News. I want to be abl...

RSS Feeds - How can you consume feeds for display as well as publish a feed for others to consume via a single URL?

If possible, I would like to develop a ASP.NET (C#) web page that consumes and displays an RSS feed and also provides an RSS feed for others to consume. Can this be done on a single URL/web page? ...

Creating a secured rss feed with Zend_Feed

I was wondering if it was at all possible to create a rss(or atom) feed with Zend_Feed that would be on a secured website (With Zend_Auth). How would users be able to subscribe to my feed? How would feedreaders handle authentification? Is there any pitfalls I should be aware of (one I can think of is users who use outlook, IE, and ot...

Is there anywhere to get a free stockmark data feed/dump?

The Stock Market world seems to almost be as fragmented as our nation's Real Estate Fiefdoms. At any rate, are there any providers of free data dumps, API's, or feeds related to stocks or commodities? Delay time isn't important. ...

RSS generator with caching function

Do you happen to know any good rss generator script with caching function. All the script I have found over the net so far doesn't support caching! I need the the content of rss to be generated automatically from database in a specified period of time. Thanks in advance ...

Should I keep all the articles in rss or just the new ones?

Should I keep all the articles in rss feed or just new ones? There are too many articles on my website and a new one is added in every 10-20 minutes so what would be the best approach in this case. Keep all the entries and just add new ones or add new ones and delete old ones at the same time??? If the second is better how many entries s...

The best way to accomplish Ajax Feeds

Hey guys. I'm currently starting a new project that will display user distrubuted data links in an ajax feed on front end. What I'm looking to accomplish is very similar to the to the Facebook Feeds on there index, where the content is updated every X Seconds. I already have half of the PHP side completed such as the Entities Compiler...

Wordpress Specific Author's Comments Feed URL

Hello all, I know that, there's feed url for specific author at wordpress which is http://example.com/author/authorname/feed/ And there's feed url for the latest comment which is http://example.com/comments/feed/ But I want to get is The comment feeds for specific author. Is there anything am i missing ? Please help me to solve i...

How do I get new video release into my website

I am wondering on how do I get to show movies, tv series, anime etc. that came out on DVD's to my site l;ike http://www.blockbuster.com/ does. Can i just feed it off IMDB or any other solutions? Thank you ...

Google AJAX Feed API: How to display 6 blog entries rather than the default 4 one.

Hi Everyone. I need some help in using Google AJAX Feed API. As we know by default this API lists latest 4 blog entries. What code changes to do so that it shows say 5 or 6 latest entries? I cant figure it out in code. Here is the example function: google.load("feeds", "1"); function initialize() { var feed = new google.feeds.Feed(...

Drupal Rules: Problem with "modify taxonomy"

Hi! I'm working with Drupal 6 to create a feed collecting site. I import the original feeds via the feeds module and copy their tags. But I also want to assign a category (terms from second taxonomy) according to the author name to be able to divide the content in a unified way. I want to use the rules module (rules-6.x-1.2) to assign t...

how to show images in my feed?

i have tried many rss parsers but i have not succeed to get images of rss feeds? you know a feed parser which also shows images? ...

Get number of Twitter feed subscribers

Hi, I'm trying to get the number of subscribers to a specific Twitter users feed. I know that you can get the number of subscribers to a specific Twitter list, but haven't found anything on the Twitter users feed? Thank you for your answers! ...

Can't get GeoRSS to work

Hi, I need to create GeoRSS view in Django but only got error Exception Type: TypeError Exception Value: __init__() got an unexpected keyword argument 'feed_guid' Exception Location: /usr/lib/python2.6/site-packages/django/contrib/syndication/views.py in get_feed, line 117 I red GeoFeed and Syndication in Django docs many...

Is There A List Of JSON Feeds?

Anyone have a list of sites or applications that publish their feed as a public JSON file? ...

Access xml feed with HTAUTH in PHP

Hello All, How can I access a xml feed with HAUTH in PHP? Dummy link format is http://username:[email protected]/www.domain.com/trends/001.xml I'm using the code below to access it. $doc = new DOMDocument(); $doc->load($source); Thanks in advance, steamboy ...

how to check uniqueness (non duplication) of a post in an rss feed

when retrieving and caching/saving (in a database) some posts from an rss feed, how to determine that: it is the same post (example: when some typos are fixed in the feed or if the title changes, the date changes, etc...) find feeds that talk about the same topic (example: same story from different sources) are there any best practic...

Aggregating from various sources

It could be a project well beyond my skills right now but I've got around one full month to spend on it so I think I can do it. What I want to build is this: Gather news about a specific subject from various sources. Easy, right? Just get the rss feeds and display them on a page. Well, I want something more advanced: Duplicates removed a...

Sanitize HTML data.

I'm fetching data from different RSS / ATOM feeds and sometimes the HTML data I receive contains HTML tags but they dont have close tags or some other issues and it screws up the page layout / styling. Somethings there is class name / id clash. Is there any way to sanitize it? If anybody can point me to some reliable Javascript / Java ...