| Author |
Message |
wealthsystem
Advanced Biz-Whizer
Joined: Jun 10, 2004
Posts: 132
Location: California
Status: Offline
|
  Posted:
Jul 14, 2004 - 10:49 AM |
|
|
|
 |
keith
Master Biz-Whizer

Joined: Apr 07, 2004
Posts: 263
Location: Indianapolis, IN, USA
Status: Offline
|
  Posted:
Jul 28, 2004 - 02:11 PM |
|
|
|
 |
vinyl
Master Biz-Whizer

Joined: May 02, 2004
Posts: 321
|
  Posted:
Jul 30, 2004 - 09:58 AM |
|
Procedure is quite easy - you should decide for version of blog you are going to use and just install it (they often use php/mySQL backend with some easy-to-follow instructions included). If you are not familiar with FTP, chmodding/SQL, you can maybe use my free seo blog hosting which also has couple of blog rss feeds pre-installed.
V. |
_________________ Outsourcing jobs :: Free blog :: Java games & ringtones |
|
|
 |
rohnsmith
Biz-Whizer
Joined: Nov 30, 2009
Posts: 39
|
  Posted:
Sep 20, 2010 - 08:28 AM |
|
|
|
 |
ThomJones
Biz-Whizer
Joined: Sep 21, 2010
Posts: 10
Status: Offline
|
  Posted:
Sep 21, 2010 - 05:54 PM |
|
You can try Feedity, we'll always offer a free version of our service for evaluation and personal subscription. The Free plan includes 10 feeds, 10 items per feed, 5 hour update interval and ads in the feeds. You can create a free accoun here http://feedity.com/user.aspx.
Or
If you can learn HTML, you can easily learn how to build your own RSS 2.0 feeds. I'll take you through the steps to creating an RSS feed from scratch.
Step 1: XML Declaration
Since RSS 2.0 must validate as XML, the first line in your rss feed must be the XML declaration.
| Code: | <?xml version="1.0" encoding="utf-8"?>
|
The encoding is optional but recommended. If your using something other than UTF-8 be sure to change the above line.
Note: If you are using CFML and have whitespace due to the Application.cfm file you can reset the output buffer using | Code: | | <cfcontent reset="true"> |
Step 2: RSS Channel
In this step we need to open up the rss tag, and the channel tag, all of your feed content goes inside these tags.
| Code: | <rss version="2.0">
<channel> |
Step 3: RSS Feed Information
Next you place information about your RSS feed such as the title of it, the description, and a link to the the site.
| Code: | <title>The title of my RSS 2.0 Feed</title>
<link>http://www.example.com/</link>
<description>This is my rss 2 feed description</description>
<lastBuildDate>Mon, 12 Sep 2005 18:37:00 GMT</lastBuildDate>
<language>en-us</language> |
The lastBuildDate should be the date and time that the feed was last changed. Dates in RSS feeds should comply to RFC 822. In CFML the DateFormat mask would be ddd, dd mmm yyyy and the TimeFormat would be HH:mm:ss. Dates should be offset to GMT. The lastBuildDate tag is not required but is highly recommended.
Step 4: RSS Items
Next we enumerate over each RSS item, each item has a title, link, and description, publication date, and guid.
| Code: | <item>
<title>Title of an item</title>
<link>http://example.com/item/123</link>
<guid>http://example.com/item/123</guid>
<pubDate>Mon, 12 Sep 2005 18:37:00 GMT</pubDate>
<description>[CDATA[ This is the description. ]]</description>
</item>
<!-- put more items here --> |
Make sure you escape any characters that might cause your XML to invalidate, these characters include <, >, & - I like to enclose any content that may contain HTML inside a CDATA section.
Note: In CFML you can use the XmlFormat function to escape special characters in XML.
Step 5: Close Channel and RSS tags.
Step 6: Validate your feed
Validate your feed using FeedValidator.org. |
|
|
|
 |
johnsmith1
Biz-Whizer
Joined: Nov 11, 2010
Posts: 38
Status: Offline
|
  Posted:
Nov 12, 2010 - 08:22 AM |
|
|
|
 |
mp3piles
Newbie Biz-Whizer
Joined: Jan 18, 2011
Posts: 3
Status: Offline
|
  Posted:
Jan 18, 2011 - 08:02 AM |
|
|
|
 |
yanghongyu
Advanced Biz-Whizer
Joined: Dec 28, 2010
Posts: 176
Status: Offline
|
  Posted:
Feb 09, 2011 - 08:32 PM |
|
|
|
 |
|
|