Go Back   Webmaster Malaysia Forum » Web Blogging & Community » Blogging Discussion

Reply
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 25-03-2005, 11:00 AM
kahsoon's Avatar
Inspired Webmaster
 
Join Date: Mar 2005
Location: Kuala Lumpur
Posts: 113
Rep Power: 48
kahsoon is on a distinguished road
Send a message via MSN to kahsoon
How to make RSS feed?

can anyone teach me how to make rss? can u guys check my blog and tell me if i have rss? because i have 2 feeds and im not sure they are rss or not
http://kahsoon.blogspot.com/atom.xml
http://feeds.feedburner.com/kahsoon

are the two url above rss? or atom? how can i make a rss?
Help is needed thank you very much
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 10-05-2005, 07:52 AM
Novice Webmaster
 
Join Date: Apr 2005
Location: malaysia
Posts: 13
Rep Power: 0
coolbuzz is on a distinguished road
Yes they are...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 10-05-2005, 01:43 PM
lcf's Avatar
lcf lcf is offline
Pro-Blogger
 
Join Date: Feb 2003
Location: Kluang, Johor
Posts: 2,376
Rep Power: 117
lcf will become famous soon enough
Send a message via ICQ to lcf Send a message via MSN to lcf Send a message via Yahoo to lcf
the first feed is ATOM, not RSS.
the second(feedburner) feed is flexible feed, it will change itself to different format depends on the rss reader. I recommend use this one.
__________________
LiewCF | Malaysia Bloggers Forum
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 11-05-2005, 10:13 AM
antaramedia0com's Avatar
Novice Webmaster
 
Join Date: Aug 2004
Location: KL
Posts: 33
Rep Power: 0
antaramedia0com is on a distinguished road
Send a message via Yahoo to antaramedia0com
For those who are interested, I've made available a tutorial on how you can display external rss feeds (content) on your own website.

You can check it out here:

http://www.antaramedia.com/site/Expl...ur_Website/35/

Hope you find this tip beneficial. :-)
__________________
Warm Regards,
Webguy
ANTARAMEDIA | explore the possibilities
www.antaramedia.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 30-09-2005, 09:52 AM
Novice Webmaster
 
Join Date: May 2005
Location: kl
Posts: 24
Rep Power: 0
xtau is on a distinguished road
hi,
takleh open pun url utl tutorial rss tu???
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 30-09-2005, 10:27 AM
Inspired Webmaster
 
Join Date: Mar 2005
Location: Sarawak
Posts: 157
Rep Power: 48
red@frittle is on a distinguished road
if you're using a complete cms such as wp, mt, txp, and etc.. they usually have built in rss/atom generator, read the manual
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 18-03-2006, 10:42 PM
Inspired Webmaster
 
Join Date: Oct 2005
Location: Malaysia
Posts: 156
Rep Power: 41
alfirus is on a distinguished road
xtau - "hi,takleh open pun url utl tutorial rss tu???"

a'a
__________________
http://www.myetribes.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 19-03-2006, 08:29 PM
Novice Webmaster
 
Join Date: Mar 2006
Location: Kelantan
Posts: 6
Rep Power: 0
eryfarouk is on a distinguished road
Smile Suggestion

Hello sir, my suggestion is either you use online services converter example: http://www.rss-to-javascript.com or this code for your website :
<%
Sub atom(URL)
Set objXML = Server.CreateObject("msxml2.DOMDocument.3.0")
objXML.async = false
objXML.setProperty "ServerHTTPRequest", True
objXML.validateOnParse = true
objXML.preserveWhiteSpace = false

If Not objXML.Load(URL) Then

Response.write "<P>ERROR<br>code: " & _
objXML.parseError.errorCode & _
"<br>Linea/Col: " & _
objXML.parseError.line & "/" & _
objXML.parseError.linepos & "</P>"

Else

Set objNodeList = objXML.getElementsByTagName("entry")
For Each objNode In objNodeList
For Each objNode2 In objNode.childNodes

Select Case objNode2.nodeName
Case "issued"
strdate= left(objNode2.firstChild.nodevalue,10)
Case "link"
strURL = objNode2.GetAttribute("href")
Case "title"
strTitle = objNode2.firstChild.nodevalue
Case "content"
strDescription = objNode2.firstChild.data
For Each objNode3 In objNode2.childNodes
Select Case objNode3.nodeName
Case "div"
StrDescription = objNode3.text
For Each objNode4 In objNode3.childNodes
Select Case objNode4.nodeName
Case "a"
linkable=objNode4.firstChild.text
htmlink=" <a href='"& _
objNode4.GetAttribute("href")&"'>"& _
linkable&"</a>"
StrDescription = replace(StrDescription,linkable,htmlink)
end select
next
end select

next
End Select
Next

if strdate<>prevstrdate then
response.write "</ul><b>"&strdate&"</b><ul>"
prevstrdate=strdate
end if

Response.write "<li><b><a href=""" & strURL & """>" & _
strTitle & "</a></b><br>" & strDescription

strTitle = ""
strURL = ""
strDescription = ""

Next

set objNodeList = Nothing

End if
End sub

call atom("http://kaynisa.blogspot.com/atom.xml")
%>

take care, and good luck!

Your friend,
eryfarouk
__________________
http://www.eonline.com.my
Indah Multimedia Education Portal (IMEP)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 14-05-2006, 08:11 PM
cryno's Avatar
Novice Webmaster
 
Join Date: Aug 2002
Location: somewhere in middle earth
Posts: 67
Rep Power: 78
cryno is on a distinguished road
Send a message via MSN to cryno Send a message via Yahoo to cryno
Quote:
Originally Posted by alfirus
xtau - "hi,takleh open pun url utl tutorial rss tu???"

a'a
This is my version, just a rough idea to build RSS with PHP > http://www.chronosight.net/view/2005...er-of-php.html
__________________
ChronoSight
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
How Much Do You Make a Month? tolkein Revenue and Monetization 60 08-07-2007 09:51 PM
how much you make......... redmachine76 Revenue and Monetization 54 18-08-2006 11:44 PM
local News feed Filuren Websites Review and Suggestion 0 20-03-2005 09:36 PM
How to make something like this? marco Website Design 6 12-12-2004 02:54 AM
News Feed - Berita Malaysia quereng Website Design 3 18-05-2002 07:06 PM



All times are GMT +8. The time now is 07:56 AM. Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0 vBulletin skin by ForumMonkeys.com.


WebmasterMalaysia.com is Proudly Hosted by Exabytes Semi Dedicated Server.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60