rss

RSS Works fine on my Development Server, not on my Live one.

Ok, here's the specs: Dev Server: Windows, WAMP, PHP 5+, Codeigniter Live Server: Ubuntu Linux, PHP, CodeIgniter, LAMP I get the following error in Firefox from my Live Server: XML Parsing Error: junk after document element Location: http://www.mysite.com/feed/rss2/ Line Number 2, Column 1: *syntax error, unexpected T_STRING in ...r...

XmlReader is {None} on web service call (.Net C#)

I have a method which creates HttpWebRequest for a given url and returns XmlReader object with the response stream. HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(url); req.Accept = "*/*"; req.Headers.Add("UA-CPU", "x86"); req.UserAgent = "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; MS-RTC LM 8)"; Ht...

Display RSS with PHP Correctly

I have a sample RSS from Amazon. While the RSS displays correctly with images aligned to the left, but when I try displaying the same RSS, the images do not align to the left, but to the top and this is not what I want. I need it to display exactly the same way as the one on top I have included the images here, my display is the second ...

RSS to email daemon

I need a daemon that turns RSS into email. It should have an API so I can programmatically tell it that user [email protected] has subscribed to http://example.com/myfeed.xml. Frequency should be configurable, i.e. I don't want it to send one email per rss item, but group it and send daily emails. It should also allow some sort of templ...

Response.GetResponseStream() escapes double quotes

Response.GetResponseStream() is returning xml with escape characters <?xml version=\"1.0\" encoding=\"utf-8\"?> Because of this XmlReader return {None}. Help please? HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(url); req.Accept = "*/*"; req.Headers.Add("UA-CPU", "x86"); req.UserAgent = "Mozilla/4.0 (compatible; MSIE 7.0;...

Software that can read an RSS feed and re-publish it on a new URL

Hi, for various reasons I'm looking for a utility or feed-reader that can sit on a server and read an RSS feed from one url and re-publish it on a new url. Free tools are better, obviously. I could also code my own but I figure there must be existing tools that do this, but my googling hasn't turned up much yet. ...

How to move posts from blogging engine to another

How one can move blog posts from blogging engine to another? Is there away to transfer posts between blog engines, blogs ... lets say from community server blog to blog engine blog vice versa? Can that be done by using OPML, rss, atom ..etc? ...

Where do I add my RSS feed into WordPress

I have the feed burner code to put into wordpress but do not know where to put it into wordpress. ...

Flash Event not being triggered on server

Hi Everyone, I thought this problem may be due to some strange path issue; however, the path is not relative in this case. I have an AS3 based rss aggregator. It works in flash when I test the movie clip; however, when I place this on the server it no longer works... I used "taLog.htmlText = "Start";" and similar strings to test wher...

Drupal - Remove RSS

Hi I have just set up a new Drupal site, community based. there are some forums which contain 'sensitive' info, yet incredibly, Drupal auto generates RSS feeds for taxonomy terms, which is what the forum is based on. There's no built in way to turn it off! Or a module to control what feeds are generated... this is a big problem. Using...

Parse Album Art from xml

I am trying to create a music player that reads an rss feed. The xml elements include itunes namespace tags. I am trying to display the album art from the feed. I am able to fetch the contents of the itunes::image tag but it displays on stage as html like so "(http://www.mysite.com/images/multimedia/podcasts/60x60%5Fpodrods.jpg)". How do...

Get Private RSS feeds from twitter

Hi all, I am trying to display the latest 3 tweets from twitter on my clients website.The tweets are set as private.How do i pass the username/password to get the data for the latest tweets.Can i do it with Jquery.If yes, please let me know how i can do it. thks, anu ...

PHP file_get_contents causes page to be inaccessible

Hi, I'm trying to use file_get_contents in php to display an RSS feed. However, when I try to load the page, it fails (as if waiting for something to complete). If I remove the code and save the file again, the page still refuses to work for 5 minutes or so, after which, it goes back to normal. Can anyone help shed any light on what is ...

How to create an RSS feed and display it?

On a website I am maintaining for a radio station they have a page that displays news articles. Right now the news is posted in an html page which is then read by a php page which includes all the navigation. I have been asked to make this into and RSS feed. How do I do this? I know how to make the XML file but the person who edits the n...

Rss and Atom framework and Extensions

We have many nice Rss and Atom frameworks. Personally i like Argotic Framework from CodePlex. But the problem is in diversity of extensions (see http://rss-extensions.org/wiki/Main%5FPage). First feed may be created without extensions, second with only itunes, and third with itunes, media and so on. Sometimes an item can consist of sho...

Average Size of an RSS/Feed file, for Data Storage and Bandwidth Calculation

Hi Folks, Doing a back of the envelope calculation to determine network bandwidth and data storage needed to monitor approx 10,00,000 feeds every 20 minutes. Any idea what could be the average size of an rss file ? I remember reading somewhere the guys from technorati revealing the avg size of an rss file. Ankur Gupta ...

RSS file not rendering as expected in firefox!

I have an rss XML file: <?xml version="1.0" encoding="UTF-8"?> <rss version="2.0"> <channel> <title>ABC News</title> <link></link> <description></description> <copyright></copyright> <lastBuildDate>Mon, 26 Oct 2009 17:49:44 +05-30</lastBuildDate> <generator>Super Simple RSS</generator> <webMaster><...

How to create a page which gets real time updates from PubSubHubub

I want to know if it is possible to use javascript/html or php, etc... to create a page that receives continuous updates from a feed that uses PubSubHubub? How can I do this? I am new to this, and any tips would be helpful. ...

Retrieving Google Reader stats for RSS feed and items

I would like to programmatically retrieve Google Reader's feed stats for my own site's RSS feed. In particular, I'd like to get the "liked" count, to incorporate it into scoring feed items. Any idea how to do this? ...

Cookies are required to use this site. HttpWebRequest/HttpWebResponse Cookies

I am using the following code to make a HttpWebRequest and render the XML from the response stream. ` HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(url); req.Accept = "/"; req.Headers.Add("UA-CPU", "x86"); req.UserAgent = "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; MS-RTC LM 8)"; req.CookieContainer = new Cookie...