Creating RSS Feed for HTML Site - Please Advise...

11 replies
Hi Warriors,

I know I can take my URL and put it into Feedburner or FeedYes.com and create an RSS feed for my HTML site, but I've heard that this is not necessarily a good idea because you don't "own" the feed and if those companies shut down, so does the feed I've created and published in a zillion different places.

Sooo, do you know of a way to create a feed for my site that I get to have control over and "own" in the same way that I would if my site was Wordpress-based instead of HTML based? (I've got far too many pages on this site to convert to Wordpress...)

THANKS!

Best,
David
#advise #creating #feed #html #rss #site
  • Profile picture of the author Jared Alberghini
    Hey David,

    I used this freeware app quite a while ago, it should do what you need:

    XML:Wrench - The simple XML Editor

    "XML:Wrench also includes a number of XML tools for transforming and manipulating XML/HTML files. Use XML:Wrench to convert HTML to XML or to generate new XML/HTML from your XML source using XSL/XSLT style-sheets. This can be done one file-at-a-time or using a batch command on entire directories."

    Hope that works for you,
    Jared
    Signature

    P.S.

    Join The Future: Telekinetic Marketing

    {{ DiscussionBoard.errors[987520].message }}
    • Profile picture of the author JustaWizard
      Much appreciation, Jared - I'm heading over to check that out right now.
      Best,
      David
      {{ DiscussionBoard.errors[987532].message }}
  • Profile picture of the author MikeLantz
    If there is some script that can turn your site into an RSS feed, than another equally complex script could take your HTML pages and put them in Wordpress.

    If your site is all static HTML, this shouldn't be too difficult of a task.

    Mike
    {{ DiscussionBoard.errors[987543].message }}
    • Profile picture of the author JustaWizard
      Originally Posted by MikeLantz View Post

      If there is some script that can turn your site into an RSS feed, than another equally complex script could take your HTML pages and put them in Wordpress.

      If your site is all static HTML, this shouldn't be too difficult of a task.

      Mike
      Thanks Mike - I'm sure you're right; it's just that I'm pretty skittish about doing any serious tinkering with the site in question because it's ranking well in Google and I've put a lot of time/effort into getting this far and don't want to blow it... I was *hoping* there was some *simple/easy* way to create an RSS feed out of at least the main page and then putting that in various places...

      ...which ostensibly reveals my not-complete understanding of how RSS works, eh? ;-)

      David
      {{ DiscussionBoard.errors[987555].message }}
      • Profile picture of the author truepers
        David, don't mean to dumb down your post, but I too am looking for an easy way to create an RSS feed for my static html site. The XML Wrench site seems like it would be helpful eventually, but frankly I wouldn't know how to use most of those features just yet.:confused: Still learning the basics of html, xml, etc.

        I'm looking at a book that tells you how to write an XML document in Notepad to create an rss feed, and how to save it.

        But where do you put that document on your website? Does it go in the <head> section?

        I guess the writer assumes I would know. Guess what, I don't. It's the little details that bog you down. Have you figured that part out?
        {{ DiscussionBoard.errors[992961].message }}
        • Profile picture of the author truepers
          Thanks, Jeff! That clarifies things quite a bit.
          {{ DiscussionBoard.errors[993661].message }}
          • Profile picture of the author Kurt
            Originally Posted by truepers View Post

            David, don't mean to dumb down your post, but I too am looking for an easy way to create an RSS feed for my static html site. The XML Wrench site seems like it would be helpful eventually, but frankly I wouldn't know how to use most of those features just yet.:confused: Still learning the basics of html, xml, etc.

            I'm looking at a book that tells you how to write an XML document in Notepad to create an rss feed, and how to save it.

            But where do you put that document on your website? Does it go in the <head> section?

            I guess the writer assumes I would know. Guess what, I don't. It's the little details that bog you down. Have you figured that part out?
            Originally Posted by Jeff Hope View Post

            Truepers,

            It will be a standalone document - like whatever.xml - that you will upload from your local computer up to your server. The feed url would be something like yourdomain.com/whatever.xml

            Jeff

            Do what Jeff says, but also add an "autodiscovery" tag to your html page(s).

            Put the following in the head of your page, where the metatags go. What it does it tell spiders and browsers that there's an alternate version of the page in RSS. Some ping services will need this tag.

            Also, if a "modern" browser comes to the page and sees the autodiscovery tag, the browser will indicate there's an RSS pheed available. In IE7, the RSS icon will turn from gray to orange, if you have the RSS enabled in IE7.

            Modify:
            My Keyword Title
            -and-
            myfeed.rss

            ...for your own situation:

            <link rel="alternate" type="application/rss+xml" title="My Keyword Title" href="myfeed.rss" />
            Signature
            Discover the fastest and easiest ways to create your own valuable products.
            Tons of FREE Public Domain content you can use to make your own content, PLR, digital and POD products.
            {{ DiscussionBoard.errors[993831].message }}
            • Profile picture of the author JustaWizard
              Hey Jeff (et al) where do I create that .xml file in the first place? - THANKS!
              David
              {{ DiscussionBoard.errors[1000723].message }}
              • Profile picture of the author Kurt
                Originally Posted by JustaWizard View Post

                Hey Jeff (et al) where do I create that .xml file in the first place? - THANKS!
                David
                Either online, search for "free online rss generator" or something similar.
                RSS Feeds Submit - Automatic RSS and Blog submission software.

                Or, find an RSS pheed, copy it and paste it into a text editor and modify it accordingly.

                It is a really simple programming language. Spend an hour researching and you'll be an "expert" at creating your own RSS pheeds.

                One important note: RSS is very finicky. There's some characters that just don't work with RSS, such as:
                '

                You will need to verify that your RSS pheed is correct. Upload it, then paste the URL of the pheed into:
                Feed Validator for Atom and RSS

                It will tell you what line and character is causing the problem. So use a text editor like www.textpad.com that has the ability to show line numbers.

                Tip: Also research how to use the cdata tag, which will eliminate almost all problems with pheeds validating:
                <description> [CDATA[ This is the description. ]] </description>

                Note the code highighted in red above...Get in the habit of using the cdata tag, as it will cure a lot of headaches when trying to validate RSS...And if your pheed doesn't validate, it will be useless in many cases.
                Signature
                Discover the fastest and easiest ways to create your own valuable products.
                Tons of FREE Public Domain content you can use to make your own content, PLR, digital and POD products.
                {{ DiscussionBoard.errors[1000773].message }}
  • Profile picture of the author David Chung
    If FeedYes can create an RSS Feed for you, can't you just use their site to make an .XML file, then upload that .xml file to your own server and host it yourself?
    {{ DiscussionBoard.errors[1218864].message }}

Trending Topics