|
I have the feeling, in every RSS.xml file, both the pubDate and the lastBuildDate match.
I am sure that this one, is not always true...
So firstly, what is the difference between those two above?
Secondly, the RSS readers, sort the content by Date, based...
Started by strakastroukas on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
pubDate:
The original publication date for the channel or item.....
pubDate specifies the actual on this unfortunately, but I am pretty positive that's what they are.
lastBuildDate specifies the last date/time the entry was modified.
|
|
Hi folks! I am having a problem with our RSS feed displaying correctly in Safari but not in Firefox. A sample is shown below. The issue is in the <title> tag under <pubdate>. The รณ shows correctly in Safari but is spelled out in Firefox. Has...
Started by Wilkie on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If you want to really "see" what is happening with the HTML, your best bet is to use curl or wget to directly download the RSS feed and... .
I believe in either case it is actually encoded, but the Safari view is more sophisticated (may not be a good thing) .
|
|
Hi,
I'm having problems getting output using SQL2RSS, here is the debug. It all works except I get ten emtpy entries. Do I need to change the title, link, date vars somewhere ?
Thanks
SUCCESS: mysql_connect(localhost, , )
SUCCESS: mysql_select_db(testing...
Started by MattSturt on
, 1 posts
by 1 people.
Answer Snippets (Read the full thread at feedforall):
|
Ask your Facebook Friends
|
I'm struggling to parse an XML file in PHP:
Here's the XML
<rss xmlns:ac="http://palm.com/app.catalog.rss.extensions" version="2.0"> <channel> <title>Device App Updates for US</title> <link>http://www.palm.com</link>...
Started by Oliver on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Here's the equivalent of what....
I've found that running a quick regex to remove the namespace and then passing the result to SimpleXml works fine where trying to parse out namespaced tags .
SimpleXml seems to deal with namespaces in a not-so-Simple manner .
|
|
I'm working on an RSS feed for a custom tasking system we use, and I'm still wrapping my head around how things should work. What I want to have is a feed for each user that shows tasks assigned to them, and additionally a feed for each task that shows...
Started by Joel Coehoorn on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Changing the <pubDate> does indicate....
The GUID provides the uniqueness for each item in the feed and will be marked as unread if you put the date updated in it .
The solution is to also change the GUID which means including the updated time in it .
|
|
Hi,
I've created a utf8 encoded RSS feed which presents news data drawn from a database. I've set all aspects of my database to utf8 and also saved the text which i have put into the database as utf8 by pasting it into notepad and saving as utf8. So everything...
Started by chromis on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Get rid of your escaping code and use XMLFormat instead:
<item> <title>#XMLFormat(news.headline... .
£ ) that is cause of the error.
If you use named entities (i.e.
You need to change & to & first.
Your escaping function is too simple.
|
|
Hello,
I have a old website that generate its own RSS everytime a new post is created. Everything worked when I was on a server with PHP 4 but now that the host change to PHP 5, I always have a "bad formed XML". I was using xml_parser_create() and xml...
Started by Daok on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
I've used this LGPL-licensed feedcreator class in the past and it worked quite well for the very simple use I had for it .
Then I'd cache it to disk with file_put_contents().
I would use simpleXML to create the required structure and export the XML .
|
|
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" xmlns:jskit="http://purl.org/dc/elements/1.1/" > <channel> <title>www.domain.com/page...
Started by vk123 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you use a namespace-aware parser, you will have to specify the part after the colon and the URI defined for the part before the prefix when telling... .
If you use a namespace-unaware parser, then you will just have some element names with colons in them .
|
|
Other podcasting clients see them fine, but not itunes. I'm stuck and need help!
Below is the code Feed for All created, can you help me to find what part of this is screwing with itunes?
Thanks much.
<?xml version="1.0" encoding="UTF-8"?>
<rss...
Started by chambo on
, 8 posts
by 2 people.
Answer Snippets (Read the full thread at feedforall):
Jim chambo
Joined: 23 Jan 2006
Posts: 5
Posted: Thu Jan 26, 2006 11:52 am OK .
Since this is unlikely to be right, try fixing the pubdate of that item.
The exact same pubdate as one that does show up.
|
|
The following dynamic Rss Feed can't fetch data from the database.
PHP Code: <?php require_once( 'mysqlconnection.php' ); ?>
<?php
mysql_select_db ( $database_rssfeed , $rssfeed );
$query_rssfeed = "SELECT * FROM rssfeed ORDER BY id DESC" ;
$...
Started by polarexpress on
, 1 posts
by 1 people.
Answer Snippets (Read the full thread at phpbuilder):
|