Results 1 to 4 of 4

Thread: rss
      
   

  1. #1
    scubadiver's Avatar
    scubadiver is offline Lieutenant Colonel
    Join Date
    Aug 2006
    Location
    Hawaii
    Posts
    553

    Default rss

    How can I install a rss feeder on my website?

  2. #2
    Jeremy's Avatar
    Jeremy is offline Brigadier General
    Join Date
    Apr 2006
    Location
    Canada
    Posts
    1,503

    Thumbs up Re: rss

    You can create an .xml file in notepad or any editor you use for script like Dreamweaver CS3.

    Here is an example:

    <rss version="2.0">
    <channel>

    <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>

    <item>
    <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>

    (You can keep repeating this)

    </channel>
    </rss>


    Then you can upload this file to the FTP. You can validate your feed using this link: http://feedvalidator.org/

    Good luck!
    Best regards,
    Jeremy

    www.cornwall4rent.com

  3. #3
    scubadiver's Avatar
    scubadiver is offline Lieutenant Colonel
    Join Date
    Aug 2006
    Location
    Hawaii
    Posts
    553

    Default Re: rss

    Thanks Jeremy, just a couple more questions. Why would I want to repeat the sequence?How can I upload it on my blog? How do I load it on my blue voda webside? I am sorry for all the questions. I am not a tech person and I need step by step instructions.

  4. #4
    Jeremy's Avatar
    Jeremy is offline Brigadier General
    Join Date
    Apr 2006
    Location
    Canada
    Posts
    1,503

    Default Re: rss

    That's fine, you would repeat those steps in the code but change the links and title etc.

    What I gave you was a way to make your site RSS active. Your icon will light up on your browser saying there is an RSS feed where people can click or you can link them to it.

    You can always search google for ways on how to do it.
    Best regards,
    Jeremy

    www.cornwall4rent.com

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

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