Feed title?

Hi, I wonder if anyone can help me?
I'm running wordpress 2.0 with the plugin podpress. I have submitted a podcast RSS feed and it has been accepted but it is now asking for a feed title? In the podpress options I have specified a title (I'm not sure if this is the feed title however)
Any advice?
Many Thanks
SSOR

You can't.
Contact iTMS customer service for more info: http://www.apple.com/support/itunes/musicstore/podcast/
Mitchell A.
Producer and host
Creating Success Podcast
G4   Mac OS X (10.3.9)  

Similar Messages

  • RSS Feed Title and Description

    Can somebody show me how to show the description with this?
    import fl.managers.StyleManager; import fl.events.ListEvent; var logFormat:TextFormat = new TextFormat(); logFormat.font = "Verdana"; logFormat.size = 9; logFormat.bold = true; StyleManager.setStyle("textFormat", logFormat); var rssLoader:URLLoader = new URLLoader (); var rssURL:URLRequest = new URLRequest("http://www.vegasdsports.com/feeds/nba_widget.php"); rssLoader.addEventListener(Event.COMPLETE, rssLoaded); rssLoader.load(rssURL); var rssXML:XML = new XML(); rssXML.ignoreWhitespace = true; function rssLoaded(evt:Event):void { rssXML = XML(rssLoader.data); for(var item:String in rssXML.channel.item) { liLog.addItem( {label:rssXML.channel.item[item].title,link:rssXML.channel.item[item].link} ); } } liLog.addEventListener(ListEvent.ITEM_CLICK,clickedLogF); function clickedLogF(e:ListEvent){ navigateToURL(new URLRequest((liLog.getItemAt(e.index).link))); }
    Thanks in advance

    Hmm, I may be a little late, but its here if anyone else needs it.
    ActionScript 3 Code:
    //startScript
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.Event;
    import fl.managers.StyleManager;
    import flash.text.TextFormat;
    import flash.events.KeyboardEvent;
    var logFormat:TextFormat = new TextFormat();
    logFormat.font = "Arial";
    logFormat.size = 10;
    logFormat.color = 0xFFFFFF;
    logFormat.bold = true;
    StyleManager.setStyle("textFormat", logFormat);
    //RSS Feed
    var rssLoader:URLLoader = new URLLoader();
    var rssURL:URLRequest = new URLRequest("http://yourFileHere.xml");
    rssLoader.addEventListener(Event.COMPLETE, rssLoader1);
    rssLoader.load(rssURL);
    var rssXML:XML = new XML();
    rssXML.ignoreWhitespace = true;
    function rssLoader1(event:Event):void {
    rssXML = XML(rssLoader.data);
    trace(rssXML);
    for(var item:String in rssXML.channel.item) {
      "your list component name here".addItem( {label:rssXML.channel.item[item].title } );
    function selectLog(event:Event):void {
    "your description box here".text = rssXML.channel.item[ event.target.selectedIndex ].description;
    "your list component name here".addEventListener(Event.CHANGE, selectLog);
    //endScript
    Note: You can use a classic text "Dynamic Text" box, size it to how big you want the text to f. From there, get a UI Scrollbar from the components, put it somewhere, and go into its Properties. Go to where it says "Component Paramaters" and then "scrollTargetName". Set this to your textbox/description box name. And there you have it. A full working RSS Feed Title and Description file.
    Let me know if you run into any trouble!

  • RSS Feed title for blog shows default text

    I've made my first pass at an iWeb blog on me.com. When I subscribe via RSS, the title of the blog shows up as "About this Blog". Is there a place in iWeb where I can change this?
    Thanks!

    I have been watching this thread every day waiting for the solution. Surely Apple will allow us to name our RSS feeds something other than "No Title." ... anyone?

  • How to make iWeb submit feed title to iTunes store?

    When iWeb publishes my podcast feed it apparently doesn’t publish the title because the iTunes store doesn't see one. The title is set in the Site Publishing Settings in Site Name - is there another place to set it? I can't find one.
    Thanks for any help you can provide.

    Instructions for Changing Your Feed Url are in the podcast technical spec here:
    http://www.apple.com/itunes/store/podcaststechspecs.html

  • Podcasting with iWeb- RSS FEED TITLE?!?!!?!?

    Alright, I put my podcast together using Audacity for the most part but used the new Garage Band to fix it up and add an introduction. Then I exported it in to iWeb from Garage Band to publish it to the web. You can see it for yourself at podcast.notsam.com. Now, for some reason when one hits subscribe to podcast from the site it appears with the RSS feed URL as the title. For this same reason iTunes won't accept it as the "Feed doesn't have a title." Am I missing something here. Obviously I created a title for it, and it does have one before I upload. Any help? Thanks

    iWeb appears to name the RSS feed from the title text that appears on the picture frame at the top of your initial weblog page. This defaults to "My Blog" - hence your RSS feed gets this name.
    I've managed to fix it in mine - http://web.mac.com/karen.hughes/iWeb/Curlypaws/Curlypaws%20Blog/Curlypaws%20Blog .html - note how the title on the picture (not the page title) is "Curlypaws Blog" and if you subscribe to the RSS feed, that is what it will be called. Not very intuitive - it puzzled me until I read the earlier post in here from jayeaster and then played around with my own site.
    Dual 2Ghz G5, MacBook Pro (on order...)   Mac OS X (10.4.4)  

  • ITunes podcast title vs. Feedburner feed name vs. Wordpress Category

    Hello all,
    I just had my podcast approved and listed on iTunes, yay!
    Now, my problem is as follows:
    I have a specific category on my Wordpress site which generates a feed that is then "burned" by Feedburner.  iTunes then links to my Feedburner feed.  So far so good.
    The problem is that instead of picking up the feed name that I set up on Feedburner, iTunes is picking up my Wordpress category name.  When opening the Feedburner feed, the feed page also shows the category name instead of the name I set up when signing up for the Feedburner account.
    This is probably more of a Feedburner question rather than an iTunes question (now that I wrote it all down!)
    Any insights?  (I've already done the "SmartCast" setting-up on Feedburner)
    Thanks!

    GORS,
    Wow, I guess I should have posted it then.  Now I'm not 100% sure I remember what I did.
    On Feedburner, you can click on "Optimize" then, right under your feed title at the top of the page, click on "edit feed settings."  You can edit the name of the feed there.
    And don't forget to re-sync the feed after the changes.  Also, remember that iTunes will not pick up the changes right away. 
    Let me know if this works for you.

  • Display RSS Feed Description of selected Title

    Hei There,
    Since i'm no programmer, i should be able to make this happen in siena, so thanks for clear explanations in advance. I would like to display the RSS-Feed Titles in one Listbox, and then show the Content (Description) of the selected RSS-Title in the second
    Listbox. How would i do this? My best attempt ist the following sting which doesnt work:
    rss_1(Filter(Listbox1,SelectedItems!Description))
    rss_1 is my RSS Data Source
    Thank you so much for your Help

    I found a solution to this Problem (Thanks to @Marcel Spring)
    1. Create a gallery (i used a custom gallery)
    2. Use a Text Label as Visual
    3. Only Show RSS-Title
    4. Add Visual HTML Text
    5. Use the function <<Gallery3!Selected!description>> In my example, the Gallery3 was the above mentionend custom gallery.
    Done :-)

  • Why does the Java script work on my RSS feed work for Internet explorer but not for Firefox?

    I have finished building the website for my Girlfriend and the only thing left is the RSS feed. It works just fine in IE 8 but in Fire Fox 9 when the widget is clicked a bookmark box pops up and asks if I want to save it as a bookmark. I am not a Java script programer so I am hoping for some help here!! Here is the script:
    <li id="rss"><a href="http://www.susangabrielle.com/1/feed" title="RSS" alt="rss"><img src="/files/theme/rss.png"></a></li>
    The sight is http://www.susangabrielle.com

    Presumably you fixed it, the RSS seems to work for me
    * e.g. http://www.susangabrielle.com/1/post/2012/01/post-title-click-and-type-to-edit.html <br/> although I get a message about missing plugins

  • I Can't Seem to Actually Figure Out How to Change my Podcast Feed :-S

    I'm reading the posts from Roger Wilmut1, and I have emailed Apple Support, but I just must be very dense, because I can't seem to figure out where to actually make the changes that I'm reading about. 
    A week ago, I received notice from BlipTV that my original, educational podcast (All About African Violets) apparently no longer complies with their terms of service.   I only have one week left for Blip to keep my existing feed open (but they disabled my account so I cannot upload any more episodes there).
    I have switched over to WordPress (where my website is hosted) to host my episodes, and I have nearly all of my episodes (50 so far) uploaded there.  I changed the feed in Feedburner to be correct for WordPress.  Then I tested it, and it worked.  Then, I attempted to try to add the new feed to iTunes.  I unsubcribed from my exiting podcast, and then attempted to resubscribe with the new feed.  Of course, it's not working.
    Apple support says I have to lose all my star ratings and reviews, and completely start over. Is that really true? 
    I'm feeling kinda foolish that I just can't seem to figure it out, but I am not a code writer.  I can see the full feed in Feedburner - is that where I make the changes I'm reading about?  I saw one about a new URL.  And, then do I still then have to submit the new feed?  Where do I do that?
    Sorry to seem to clueless, but this is very frustrating - I want to do it correctly.
    If there is someone who would be willing to walk me through this, I would be so grateful for the help.
    Thank you,
    Annie9797

    Roger - thank you so much for responding.  Originally - last year when I started my podcast, I submitted the BlipTV feed, and it's been working fine until they disabled my account.  Episodes 1-49 are there in the store, but Episode 50 (which is on WordPress) is not.
    On Feedburner, when I switched over to WordPress, I was instructed to change "Original Feed" to be as follows:  http://allaboutafricanviolets.com/feed/
    Here is what Feedburner says for Feedburner Feed:  http://feeds.feedburner.com/AllAboutAfricanViolets
    It also says that the Feed Title is:    All About African Violets
    I cannot access iTunes from where I am right now, so I cannot tell you what the store page URL is (I'm assuming that's my actual podcast page on iTunes - is that correct?), but if you go to the Podcast section in the store and search for All About African Violets, it's the only podcast that will come up  :-) 
    Thank you for taking the time to help me with this. :-)

  • First podcast uploaded with the wrong title? It is using the title of one of the podcasts and not showing the name only of the speaker?

    I uploaded 7 podcasts using Podomatic. iTunes is using the titles of one of the podcasts as the title for the page. I need to change the page title and also remove my name (not sure why my name was posted instead of the name of the podcast speaker). Do I need to delete the whole Album and start over, or can I edit the title? https://itunes.apple.com/us/podcast/accelerating-your-due-season/id659519611. Thanks for help. This is my first time doing this.

    iTunes is simply reproducing what is in the relevant tags in the feed:
    <title>Attracting the Glory - Dr. Russell Plilar</title>
    <itunes:author>Maureen Brichetto</itunes:author>
    You need to change them in Podomatic wherever you originally entered the data and republish the feed. The Store should pick up the changes after a couple of days or so, though it's possible it might not do so until you post a new episode.

  • ATOM Feed parsing in Flex

    I need to parse an Atom Feed and display it into a Flex UI.
    As part of UI I am providing navigation links such as:
    Next Page, Previous Page, First Page and Last Page.
    The Feed looks like this:
    <feed xmlns="http://www.w3.org/2005/Atom">
      <title>Alert Feed</title>
      <link rel="self" type="application/atom+xml" href="/alerts?page=1" />
      <link rel="next" type="application/atom+xml" href="/alerts?page=2" />
      <link rel="last" type="application/atom+xml" href="/alerts?page=4" />
    </feed>
    How can I read the next page href value when the user clicks on Next Page navigation link?
    Thanks,
    SAM

    I'll bet if you search the forum history you'll find other questions and
    answers on this topic.

  • Mistake in OTN RSS News Feed

    Hi.
    The second item in the OTN News Feed titled "Web Services Development Made Easy" has an incorrect anchor definition which makes it appear as text rather than a link. To be precise there is a whitespace between the "<" and the "a".
    Cheers
    Tim...

    Your rapid response is overwhelming...... NOT!

  • Itunes: feed has already been submitted error. can't fix it!

    after being on itunes for many years, apple recently took down my videocast. i've since corrected the problems. however, every time i try to resubmit it, i get the "feed has already been submitted" error.
    i've done everything that's been suggested. i've changed the feed title, pointed to a different source url ("original feed" in feedburner parlance), changed the show description and itunes category. however, i don't want to change the feedburner feed addresss because i don't want to lose all my itunes comments and subscribers, assuming i ever get this fixed.
    btw, my feedburner feed addresss that i want to resubmit to itunes is: http://feeds.feedburner.com/chillcastvideo
    i've tried contacting apple "support" but sad to say it's a joke, shuffling me around from person to person who gives me "advice" that doesn't work. for an otherwise great company, they're failing here.
    so if anyone has anything else for me to try, i'm all ears.
    thanks!
    ryan

    hi roger, are you saying apple automatically deletes comments and subcribers for podcasts that have been removed? i ask this because you helped the poster in this thread who was having the same issue: https://discussions.apple.com/thread/4943722?start=0&tstart=0
    and i looked up his show on itunes and all his older comments are there along with his subscribers. i'm just trying to figure out what he did and do the same.

  • RSS feed FROM a iweb page?

    Is it possible to create an RSS feed FROM one of my pages created in iweb, so that I can link to it on another site, such as Flavors.me?
    thanks

    How come it's not showing any of the records in the database as items in the feed? Here is the feed and the .asp file code below...
    http://www.ocfs.state.ny.us/main/rssFeed2.asp
    <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
    <%
    Dim MM_conn_STRING
    MM_conn_STRING = "Provider='SQLOLEDB';Data Source='SQLCFS0A1AAV,1533';Initial Catalog=OCFSWeb;User Id=ohrd;Password=ohrd;"
    %>
    <%
    Dim rsAll
    Dim rsAll_cmd
    Dim rsAll_numRows
    ' Query the database and get all the records from the Images table
    Set rsAll_cmd = Server.CreateObject ("ADODB.Command")
    rsAll_cmd.ActiveConnection = MM_conn_STRING
    rsAll_cmd.CommandText = "SELECT * FROM Images"
    rsAll_cmd.Prepared = true
    Set rsAll = rsAll_cmd.Execute
    ' Send the headers
    Response.ContentType = "text/xml"
    Response.AddHeader "Pragma", "public"
    Response.AddHeader "Cache-control", "private"
    Response.AddHeader "Expires", "-1"
    %><?xml version="1.0" encoding="utf-8"?>
    <rss version="2.0">
    <channel>
    <title>NYS OCFS RSS Feed</title>
        <link>http://www.ocfs.state.ny.us</link>
    <description>The Office of Children and Family Services serves New York's public by promoting the safety, permanency and well-being of our children, families and communities. We will achieve results by setting and enforcing policies, building partnerships, and funding and providing quality services.</description>
      <root>
        <% While (NOT rsAll.EOF) %>
    <row>
       <%
       For each field in rsAll.Fields
       column = field.name
       %>
      <<%=column%>><![CDATA[<%=(rsAll.Fields.Item(column).Value)%>]]></<%=column%>>
      <%
       Next
      %>
    </row>
        <%
       rsAll.MoveNext()
    Wend
    %>
    </root>
    </channel>
    </rss>
    <%
    rsAll.Close()
    Set rsAll = Nothing
    %>
    Can anyone help??
    Thanks!

  • NavigateToURL - RSS Feed Reader Linking Issue

    Hi, I am working on an RSS feed reader. The reader pulls blog entries just fine, but the results are not clickable. Tried numerous variations of "navigateToURL", but am relatively new to the Flex framework. Is there a way to make generated feed clickable? See code below:
    <?xml version='1.0' encoding='UTF-8'?>
    <s:Application xmlns:d="http://ns.adobe.com/fxg/2008/dt"
                   xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/halo"
                   xmlns:feed="services.feed.*"
                   width="275" height="325" backgroundColor="#E2E7E9" preloaderChromeColor="#E2E7E9"
                   viewSourceURL="srcview/index.html">
        <!-- Blog Feed 1.0 -->
        <!-- Properties of the parent ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
        <!-- Metadata ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
        <!-- Styles ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
        <!-- Script ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
        <fx:Script>
            <![CDATA[
                import mx.events.FlexEvent;
                import flash.net.navigateToURL;
                protected function list_creationCompleteHandler(event:FlexEvent):void
                    getDataResult.token = feed.getData();
                public function feed_clickHandler(event:MouseEvent):void
                    navigateToURL(new URLRequest("http://blog.mysite.com/feed/"+getDataResult.lastResult.title));
            ]]>
        </fx:Script>
        <!-- Script ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
        <!-- Declarations ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
        <fx:Declarations>
            <s:CallResponder id="getDataResult"/>
            <feed:Feed id="feed" showBusyCursor="true"/>
        </fx:Declarations>
        <!-- Declarations ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
        <!-- UI components ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
        <fx:DesignLayer d:userLabel="Content">
            <s:BitmapImage d:userLabel="Shape 2" x="1" y="64" smooth="true"
                           source="@Embed('/assets/images/PSM-RSS-Feed/Shape 2.png')"/>
            <s:BitmapImage d:userLabel="line highlight" x="263" y="66" smooth="true"
                           source="@Embed('/assets/images/PSM-RSS-Feed/line highlight.png')"/>
        </fx:DesignLayer>
        <fx:DesignLayer d:userLabel="Feed Item">
        </fx:DesignLayer>
        <fx:DesignLayer d:userLabel="Scrollbar">
            <s:List id="list" x="4" y="64" click="feed_clickHandler(event)"
                    creationComplete="list_creationCompleteHandler(event)"
                    skinClass="components.FeedDataListSkin4">
                <s:AsyncListView list="{getDataResult.lastResult}"/>
            </s:List>
        </fx:DesignLayer>
        <fx:DesignLayer d:userLabel="Header">
            <s:BitmapImage d:userLabel="Shape 1" x="1" y="1" smooth="true"
                           source="@Embed('/assets/images/PSM-RSS-Feed/Shape 1.png')"/>
            <s:BitmapImage d:userLabel="Lines" x="12" y="43" smooth="true"
                           source="@Embed('/assets/images/PSM-RSS-Feed/Lines.png')"/>
            <s:BitmapImage d:userLabel="Pomona Swap Meet" x="11" y="8" smooth="true"
                           source="@Embed('/assets/images/PSM-RSS-Feed/Pomona Swap Meet.png')"/>
            <s:BitmapImage d:userLabel="Blog" x="184" y="31" smooth="true"
                           source="@Embed('/assets/images/PSM-RSS-Feed/Blog.png')"/>
        </fx:DesignLayer>
        <!-- UI components ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    </s:Application>
    I tried to connect a click event to the feed "title", but I'm not sure that the mouse event function is correct, or that I have placed the "clickHandler(event)" in the right location. Any thoughts would be appreciated.
    Thx.

    apex.oracle.com is locked down pretty tight since it is a free service.
    I'm surprised that running a restricted Package (DBMS_NETWORK_ACL_ADMIN) didn't throw an error and laugh at you.
    If you want to test that app, you must bring it "in house".
    MK

Maybe you are looking for

  • Difference in price in PO condition and invoice

    Hi, The situation is as follows: A PO was created, released and GR done. One item in the PO has quantity 200 KG, price Rs. 100 per KG. So the net price is Rs. 20,000. Now, the price of that item has increased to Rs. 110 per KG, so the total net price

  • Windows 7 impossible to install

    Hi !  My friends have a MacBook white 2009. I try to install Windows 7 Ultimate (32 bits) on it, but it is impossible. First, the DVD (OEM) is rejected every time. Second, I did a bootable usb drive with my MBPr. But in his computer, BootCamp don't d

  • How do I get Time Machine to "see" my NAS device?

    I recently set up a Drobo 5N for NAS.  It works fine with my iMac.  That is, Time Machine on the desktop immediately found the storage device and appears to be backing up to it.  However, Time Machine on my Macbook Pros on my home network do not see

  • Canon G15 RAW file import issue

    I have a new Canon G15 and am not able to import RAW files into iPhoto.  I get an error message the says the file is a unreconized format (CR2).  I have Lion OS 10.7.5 and iPhoto 9.4.2 and have updated camera RAW campatiblity.  Thanks

  • IPod bails out in middle of iTunes update

    Here’s the problem: My ipod starts updating new songs, then after ~1GB of songs ( Ihave 16GBs of songs in iTunes), it just drops out (disappears), comes back a couple minutes later, but then starts updating at some random previous point (say 300GBs).