Help with RSS feed in home page

I'm trying to place an RSS feed in my home page. I've
followed this Dev
Center guide:
http://tinyurl.com/ewbdv
I've gotten everything to work perfectly locally. However,
when I upload
the files it won't work online here:
http://tinyurl.com/ootyn
The error I receive is:
Could not find the ColdFusion Component
burnettcom.includes.MM_XSLTransform.MM_XSLTransform.
Please check that the given name is correct and that the
component
exists. The error occurred in
C:\domains\burnettcom.com\wwwroot\home.cfm: line 28
26 : <!--- XSL Transformation --->
27 : <cfinvokeargument name="xml"
value="
http://www.burnettcom.com/blog/?feed=rss2">
28 : <cfinvokeargument name="xsl"
value="headlines.xsl">
29 : </cfinvoke></div><!---end posts--->
Instead of the path
burnettcom.includes.MM_XSLTransform.MM_XSLTransform.
shouldn't it be
burnettcom/includes/MM_XSLTransform/MM_XSLTransform.cfm
This is the only thing that I can see that would be wrong.
Can anyone help me to get this to work online?
Thanks in advance.

Thanks A3gis, I just got that part working. I've configured
it to
display the title and date for each post.
The only problem is that the date appears as:
Tue, 18 Jul 2006 04:38:07 +0000
I would prefer the date to appear as:
July 18, 2006
or
6.18.06
Does anyone know how to make this work?
P.S. Here's the xls file:
P.S. my XSL fragment is:
<?xml version="1.0" encoding="iso-8859-1"?><!--
DWXMLSource="
http://www.burnettcom.com/blog/?feed=rss2"
-->
<!DOCTYPE xsl:stylesheet [
<!ENTITY nbsp "&#160;">
<!ENTITY copy "&#169;">
<!ENTITY reg "&#174;">
<!ENTITY trade "&#8482;">
<!ENTITY mdash "&#8212;">
<!ENTITY ldquo "&#8220;">
<!ENTITY rdquo "&#8221;">
<!ENTITY pound "&#163;">
<!ENTITY yen "&#165;">
<!ENTITY euro "&#8364;">
]>
<xsl:stylesheet version="1.0"
xmlns:xsl="
http://www.w3.org/1999/XSL/Transform"
xmlns:wfw="
http://wellformedweb.org/CommentAPI/"
xmlns:content="
http://purl.org/rss/1.0/modules/content/"
xmlns:dc="
http://purl.org/dc/elements/1.1/">
<xsl:output method="html" encoding="iso-8859-1"/>
<xsl:param name="ItemsPerPage" select="10" />
<xsl:template match="/">
<xsl:for-each select="rss/channel/item[position()
&lt;= $ItemsPerPage]">
<xsl:sort select="dc:date" order="descending" />
<p>
<a href="{link}"><xsl:value-of select="title"/>
</a><br />
<xsl:value-of select="pubDate"/>
</p>
</xsl:for-each>
</xsl:template>

Similar Messages

  • Place rss feed on home page

    i'm curious how to place an rss feed in my home page. in
    addition to php
    i can use coldfusion.
    thanks in advance.

    ryansebiz wrote:
    > Mad Dog wrote:
    >
    >> Good luck with it!
    >
    > Thanks Mad Dog. I followed the guide and setup
    everything and it
    > works!
    > Like any good coder, there's one tweak I want to make.
    >
    > Where my blog posts are displayed on my home page, it
    shows the title
    > and date. However, the date appears as "Tue, 18 Jul 2006
    04:38:07
    > +0000" I'd prefer it to appear as "Tue, Jul 18 2006" or
    "Tuesday,
    > July 18 2006". Is this something that would need to be
    done in the
    > ColdFusion page, headlines.xsl file or in my WordPress
    blog?
    >
    >
    > The headlines.xsl blog RSS code is:
    >
    > <xsl:for-each
    select="rss/channel/item/title[position() &lt;=
    > $ItemsPerPage]">
    > <xsl:sort select="dc:date" order="descending" />
    > <p> <a href="{../link}"><xsl:value-of
    select="."/> </a></p>
    > <p><xsl:value-of
    select="../pubDate"/></p>
    > </xsl:for-each>
    >
    >
    > The page CF is:
    >
    > <cfinvoke
    >
    component="burnettcom.includes.MM_XSLTransform.MM_XSLTransform"
    > method="transform"
    > returnvariable="mm_xsl_output">
    > <!--- XSL Transformation --->
    > <cfinvokeargument name="xml"
    > value="
    http://www.burnettcom.com/blog/?feed=rss2">
    > <cfinvokeargument name="xsl"
    value="headlines.xsl">
    > <cfinvokeargument name="ItemsPerPage" value="10">
    > </cfinvoke>
    >
    >
    > How can I get the date to appear as "Tue, Jul 18 2006"
    or "Tuesday,
    > July 18 2006" instead of "Tue, 18 Jul 2006 04:38:07
    +0000"?
    See if these help:
    http://nayyeri.net/archive/2006/04/26/774.aspx
    http://nayyeri.net/archive/2006/04/27/791.aspx
    MD

  • Need help with rss feeds

    I am trying to get mutiple rss feeds auto update on the same page.
    Here is my code for the rss feeds that I have on separate pages and I would like to put on one page:
    PAGE 1
    <head> section
    var dsItem = new Spry.Data.YQLDataSet(
    'select * from xml where url="http://www.voip-news.com/rss/vnar.xml"',
    false,
    format:"xml",
    preparseFunc: function( strxml ){
    var xml = Spry.Utils.stringToXMLDoc( strxml ), ds = Spry.Data.XMLDataSet.getRecordSetFromXMLDoc( xml, "rss/channel/item" );
    return ds.data;
    <body> section
    <div class="MasterDetail">
      <p class="style10">Select a Channel:</p>
        <div spry:region="dsItem" id="MasterContainer" class="MasterContainer">
          <div spry:repeat="dsItem" spry:test="{ds_RowID}<4" spry:choose="choose">
            <div class="MasterColumn" spry:when="{ds_RowID} == {ds_CurrentRowID}" spry:select="MasterColumnSelected" spry:selectgroup="master" spry:selected="MasterColumnSelected" spry:hover="MasterColumnHover" spry:setrow="dsItem">{title}</div>
            <div class="MasterColumn" spry:default="default" spry:select="MasterColumnSelected" spry:selectgroup="master" spry:hover="MasterColumnHover" spry:setrow="dsItem">{title}</div>
          </div>
        </div>
        <br/>
        <div spry:detailregion="dsItem" class="DetailContainer">
          <div class="DetailColumn"><span class="style9">Category:</span>  <span>{category}</span></div>
          <div class="DetailColumn"><span class="style9">Published:</span>  <span>{pubDate}</span></div>
          <div class="DetailColumn"><span class="style9">Author:</span>  <span>{author}</span></div>
          <br/>
          <div class="DetailColumn"><span class="style9">Description:</span><br><span>{description}</span>  <bu tton onClick="MM_openBrWindow('{link}','','')">More...</button></div>
        </div>
        <br style="clear:both" />
      </div>
       <p class="style19"><a href="index.html">(Close)</a></p>
    </div>
    PAGE 2
    <head> section
    var dsItem = new Spry.Data.YQLDataSet(
    'select * from xml where url="http://www.networkcomputing.com/channel_feed.php?channel_name=UC%20&%2 0VoIP"',
    false,
    format:"xml",
    preparseFunc: function( strxml ){
    var xml = Spry.Utils.stringToXMLDoc( strxml ), ds = Spry.Data.XMLDataSet.getRecordSetFromXMLDoc( xml, "rss/channel/item" );
    return ds.data;
    <body> section
    <div class="MasterDetail">
      <p class="style10">Select a Channel:</p>
        <div spry:region="dsItem" id="MasterContainer" class="MasterContainer">
          <div spry:repeat="dsItem" spry:test="{ds_RowID}<4" spry:choose="choose">
            <div class="MasterColumn" spry:when="{ds_RowID} == {ds_CurrentRowID}" spry:select="MasterColumnSelected" spry:selectgroup="master" spry:selected="MasterColumnSelected" spry:hover="MasterColumnHover" spry:setrow="dsItem">{title}</div>
            <div class="MasterColumn" spry:default="default" spry:select="MasterColumnSelected" spry:selectgroup="master" spry:hover="MasterColumnHover" spry:setrow="dsItem">{title}</div>
          </div>
        </div>
        <br/>
        <div spry:detailregion="dsItem" class="DetailContainer">
          <div class="DetailColumn"><span class="style9">Category:</span>  <span>{category}</span></div>
          <div class="DetailColumn"><span class="style9">Published:</span>  <span>{pubDate}</span></div>
          <div class="DetailColumn"><span class="style9">Author:</span>  <span>{author}</span></div>
          <br/>
          <div class="DetailColumn"><span class="style9">Description:</span><br><span>{description}</span>  <bu tton onClick="MM_openBrWindow('{link}','','')">More...</button></div>
        </div>
        <br style="clear:both" />
      </div>
       <p class="style19"><a href="index.html">(Close)</a></p>
    </div>
    So basically i need to find out how to combine the two <head> sections with both links, so that when I place the body codes in their <div> tags they will grab the correct rss feeds.
    Thank you,
    cp

    Create a new data set as follows
    var dsItem2 = new Spry.Data.YQLDataSet(
        'select * from xml where url="http://www.voip-news.com/rss/vnar.xml"',
        false,
            format:"xml",
            preparseFunc: function( strxml ){
                var xml = Spry.Utils.stringToXMLDoc( strxml ), ds = Spry.Data.XMLDataSet.getRecordSetFromXMLDoc( xml, "rss/channel/item" );
                return ds.data;
    Also make sure that you change the HTML markup (data regions and iframe) to reflect this addition

  • Help with hyperlinks back to home page

    Hi all,
    I have just uploaded my website and found my links don't work back to my home page once I have uploaded my webpage.
    The link works from the home page to the other pages but then you have to press the 'back' button in order to view the others - any thoughts ?
    Also any ideas on how to change the web address bar as for some reason it is showing my web address twice ?
    Thanks in advance guys !
    SiAles

    Usually this is caused by some object covering the navigation. Do a Command A on the page in iWeb to show all and see if you can see anything.
    Otherwise post the URL to a page.
    Look at this page to see how to remove the site name from the URL...
    http://www.iwebformusicians.com/iWeb/URLs-Favicons.html
    "I may receive some form of compensation, financial or otherwise, from my recommendation or link."

  • Help With RSS Feed

    I am working through the tutorial on consuming a remote RSS
    1.0 feed. I can
    pull in the feeds remotely (see
    http://www.basketballfan.us/).
    The problem
    arises when I try and organize the content source by date or
    limit the
    number of articles that are shown. Every time I do that I get
    this error
    message:
    MM_XSLTransform error:
    "contentsources/cbs.xsl" is not a valid XSLT document.
    Keyword xsl:sort may not be used here.
    The CBS source file URL is
    http://www.basketballfan.us/contentsources/cbs.xsl
    Can anyone help me fix this problem?
    David

    I am working through the tutorial on consuming a remote RSS
    1.0 feed. I can
    pull in the feeds remotely (see
    http://www.basketballfan.us/).
    The problem
    arises when I try and organize the content source by date or
    limit the
    number of articles that are shown. Every time I do that I get
    this error
    message:
    MM_XSLTransform error:
    "contentsources/cbs.xsl" is not a valid XSLT document.
    Keyword xsl:sort may not be used here.
    The CBS source file URL is
    http://www.basketballfan.us/contentsources/cbs.xsl
    Can anyone help me fix this problem?
    David

  • Popup menus not working on pages with RSS feed javascript

    My popup menus were working OK until I added an RSS feed to
    the page that
    uses javascript to parse the feed. Has anyone else
    experienced this? Or
    found a way to parse the RSS feed and still have the popup
    menus work?
    Thanks

    On Tue, 1 Aug 2006 17:42:28 -0500, "D Woods"
    <[email protected]>
    wrote:
    >My popup menus were working OK until I added an RSS feed
    to the page that
    >uses javascript to parse the feed. Has anyone else
    experienced this? Or
    >found a way to parse the RSS feed and still have the
    popup menus work?
    Perhaps, if you post a link to the page that doesn't work,
    someone can
    show you how to fix it.
    Gary

  • RSS feed in my page

    Greetings,
    I am using Java Studio Creator to create my pages and I want to add an RSS feed in certain location of my page, I get three news pulled from the particular site. I use ui script for displaying it, but when the news are displayed on the page it is sprawled over the page and is not confined to the particular section.
    Please help me with this issue, how I forma the news from RSS feed into my page.
    Regards,
    Pranabi.

    It seems to me you should be able to confine your news feeds to a specific part of the page with page fragments. The tutorial Using Page Fragments should give you a start. It's located here:
    http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/2/pagefragments.html
    Joe Silber
    Sun Java Studio Creator Documentation

  • Problem with RSS feeds in AppleMail

    If anyone can help, I would greatly appreciate it. I have several RSS feeds that come in through AppleMail. Every so often, it stops receiving all of the feeds (I get an explanation point next to the the RSS header). After a day or so, it will start receiving feeds again. I have no problem getting e-mails... just my RSS feeds. Does anyone have any ideas?
    Thanks!

    I have just experienced the same problem with RSS feeds through AppleMail. A couple of days ago (just after I had upgraded to Aperture 3 - not sure if that's relevant) the exclamation mark appeared next to all the Mailboxes for my RSS feeds, and has not disappeared. If I click on the exclamation mark I get the message "there was an error updating the RSS feed 'Apple Hot News'. The RSS feed is temporarily unavailable because an internal error occurred".
    I have tried shutting down, and deleting the RSS plist - with no effect.
    Other details - the problem exists on a MacBook Pro, running Sno (v 10.6.2 - all updates applied) and Apple Mail v4.2. I can send / receive regular email. I also have an iMac (also running Sno 10.6.2 and Apple Mail v4.2) - RSS feeds work fine on this machine. Both machines use the same wireless broadband router.
    Grateful for any help. Thanks

  • HT4550 Why does my Safari open with American version and home page with Apple iPhone 5 advert even though I have changed them in preference

    Why does my Safari open with American version, and home page with Apple iPhone 5 advert even though I have changed them in preferences, it happens every time no matter how many times I change them, when I open Safari its back to the USA and Apple home page.

    Try this.
    Hold the shift key down and launch Safari.
    Best.

  • Firefox always launches with three tabs -- my home page, a month old site from Slate and Huffington Post. Even uninstalling and reintalling doesnt solve problem.

    Every time Firefox is launched, it opens with three tabs -- my home page, a month-old age from the slate website and the home page from the huffington post. EVERYTIME. I have tried uninstalling and reinstalling Firefox and the problem persists.
    == This happened ==
    Every time Firefox opened
    == May 15, 2010

    Hello Kenneth.
    See this article to see if you have those three tabs set as your home pages: http://support.mozilla.com/en-US/kb/How+to+set+the+home+page

  • Help with rss.xml feed

    Hey all,
    Trying to get the feed on this page through itunes. iTunes is saying that it couldn't find the rss.xml file.
    http://www.downloadablespanishresources.com/HablemosEspanol/HablemosEspanol.html
    All files seem to be in the correct directories including the rss.xml file
    Any suggestions.
    Thanks
    Michael
    Message was edited by: Michael O'Brien

    It looks like you did not upload the folder called dsr, which is part of the url for the feed.

  • Rss feeds on home screen

    I belatedly have been able to update to belle here in Australia since last week, and I have now lost the ability of updated rss feeds on the home screen. In the nokia conversations article 'Nokia Belle: Six ways to use six screens' from the 12/04/2012 it clearly shows on the second screen example an enourmous orange and white rss feed widget. Why can't I find it on my phone?! Also when I press the store button in the add widget or add short cut screen it tells me that that page is not available and to try again. Will there ever be some more widgets to fill the home screens up with? I probably should wait for the ones that have been on anna that are not on belle to be replaced first!

    @michaelmihailou
    You may find missing rssfeedwidget in this thread:/t5/Eseries-and-Communicators/New-E7-Belle-missing-some-widgets/m-p/1300385/highlight/true#M101757
    Happy to have helped forum with a Support Ratio = 42.5

  • Issue with RSS Feed Service-Urgent

    Hi,
    1. I am using the service provided by UCM for using extracting details from the RSS feed.I tried using the service with a RSS feed url i.e.("http://rss.news.yahoo.com/rss/topstories") works fine and displays all results on my custom page.
    2. The same piece of code, I moved my client instance but found nothing happens not even I am getting any error. Only the thing I can see is a page loading and loading for long time.
    3. I found a document related to RSS feed it has mentioned to upload fragments into the SS which i did in my and client instance. The names are RSS_Feed.Zip and RSS FEEDS_FRAGMENT_LIB.zip.
    4. The feed URL provided when executed from browser in client and my instance displays feed, but when use it with service works on development instance works fine, but
    doesn't work on client instance.
    5. Below mentioned is the sample page which I am using to execute the feed.
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
    <head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><!--$include ss_layout_head_info-->
    <title><!--$dDocTitle--></title>
    <script id="ssInfo" type="text/xml" warning="DO NOT MODIFY!">
    <ssinfo >
    </ssinfo>
    </script>
    </head>
    <body>
         <!--$feedUrl="http://rss.news.yahoo.com/rss/topstories",parseXml="true"-->
         <!--$executeService("GET_REMOTE_FEED")-->
              <ul class="userlist">
              <!--$loop RSS_ENTRIES-->
                   <li class="notopborder">
                        <span class="userdetails">
                             <span class="username"><!--$title--></span>
                             <span><!--$description--></span>
                             <span class="hours"><!--$pubDate--></span>
                        </span>
                        <div class="clear"></div>
                   </li>
              <!--$endloop-->
              <ul>
    </body>
    </html>
    Any kind of help is highly appreciated.
    Thanks,
    Abhijit
    Edited by: AbhijijitPr on Oct 12, 2010 12:47 PM
    Edited by: AbhijijitPr on Oct 12, 2010 12:58 PM

    I found the issue, the service provided by UCM i.e. the GET_REMOTE_FEED as when checked in the source code found doesn't support https. So any request made on https will give no result.
    Thanks,
    Abhijit

  • Business Catalyst Help | Create RSS feeds

    This question was posted in response to the following article: http://helpx.adobe.com/business-catalyst/partner/add-content-rss-feed.html

    Thank you for the fast reply, Mario!
    I did look at the blog details page as the help page indicated and i did have the RSS check box checked, however under the Site Settings the RSS page had no channels in it. So I had to create a new channel so I can have a link to the blog RSS. When I created the chanel and selected to populate it with BLOG POSTs it gave me that ugly 2 box fields where you move the blog posts from left box to the right box. So essentially you have to do this for the blog posts as well. Unless I'm missing something but I spent almost an hour trying to figure this out in the Admin. Whcih is a rediculous amount of time to spend on something that comes pre-built to any other system.

  • I am not able to subscribe to RSS feeds or bookmark pages

    I was having trouble with my version 3 of Firefox originally. I couldn't open it because it was saying it was still running. I found the correction to that problem (something about deleting a "parent" file) only after I uninstalled and reinstalled Firefox. When I uninstalled Firefox I sadly lost all of my RSS feeds and bookmarks. When I reinstalled it I was updated to Firefox 4. Since that time I have not been able to subscribe to any RSS Feeds or bookmark any pages. I am completely and utterly frustrated. Please help!

    I hope it works out for you.  A couple of comments.
    Apple does not have a way to restrict searches on safari.  It just is not there.  But if you search the app store for parental control, you will find at least 1 browser that does.  You can use that as your normal browser, and bury safari in a folder somewhere where the kiddies wont easily find it.  Read the reviews, and see if it does what you want.
    As respects purchases, remember that when you make a purchase, your password remains active for 15 min.  I have been reading the posts here for over a year, and there is a  continued stream of folks who download an innocent free app, hand the pad to the kids, and find the invoice the next day for $200 worth of smuf berries or some such nonsense.  Keep eyes open.

Maybe you are looking for

  • Error while executing the CKMLCP (Actual Costing) Transaction

    Hi Expert, I am getting the following Error while executing the CKMLCP (Actual Costing) Transaction through my User ID in system. If we execute the same transaction  with other user id then there is no Error. same role is assign to both user. Try to

  • Is a BUG about 64bit JDK?

    public class TestThread {     public static void main(String[] args) {         IRun ir = new IRun();         Thread it = new Thread(ir);         it.start();         try {             Thread.sleep(1000);         } catch (InterruptedException ex) {    

  • Taborder inside mc

    Hi, this one is about tabbing into controls inside another mc, which is inside another mc. Say there's a textbox named "b" inside 3 different mcs: historytest, contest, ctrltest. So trace(a) looks like this: _root.historytest.contest.ctrltest.b Now i

  • Streaming Flash content (audio and video) problem

    My Mac Pro can't play audio or video on sites like MySpace and YouTube. I get the spinning wheel on Safari and Firefox, meaning I have to Force Quit every time. My Powerbook works fine in this respect, so it can't surely be a network/isp problem. I'v

  • Message Content Mix-Up

    Hello, Has anyone on the forum seen this issue? A user composed a new message using GW 2012 WebAccess, sends to an internet user and 2 internal users. The message that actually arrives for these users is a completely different message that arrived ea