Help Please, RSS Feed Not Working! :(

Hello there,
I'm having a hard time getting my RSS feed to work correctly with subscribers and am at my wits end. I cannot seem to wrap my head around it.
I (ideally) wanted to get both MP3 and M4A file formats working to please both crowds or subscribers. So the iTunes subscribers can subscribe to the M4As and the other listners can subscribe to the MP3s.
Anyway, I deleted and recreated the feed on feedburner here, but it's still not resolving. I've deleted the feed countless times, reinstalled iTunes, and tried it on 4 different computers, and even had other people
Any ideas why iTunes will not resolve the feed? If you look at the main page the files play correctly and without issue via the flash player.
www.playedpodcast.com/feed
Thanks in advanced guys!

Fixed!

Similar Messages

  • RSS feeds not working in Mail

    Hello Everyone,
    My RSS feeds stopped working on April 12th. Two of them have given me feeds today but nothing from yesterday or the day before or the day before that. Very strange. I've tried quitting Mail, restarting my computer, control clicking on the individual feeds and folders and clicking update all feeds and the specific feeds. Any other tips?
    Thank you very much!

    Not sure if this counts as 'fixing' the problem; but here's what I did:
    * Moved ~Library/Mail to someplace else (I picked my desktop)
    * Open mail.
    * Watch as .Mac pulls in the configuration that was synced to .Mac.
    * Wait to download new mail (IMAP headers)
    I did have to manually copy the mail rules .plist, but other than that, things seem to be working as I want them to.
    Somehow, RSS started working.

  • RSS feeds not working.

    So somehow my rss feeds stopped working. This happens for all my rss feeds (about 9) except for 2. Also one web isn't working for me either it's just stuck at the 3rd of october update... When I use a proxy the web page does work so I'm guessing the problem is there. I should clarify that I do have other mac's and pc's in the house and they are working fine, so I don't think this is a problem by my ISP. Any suggestions?? Thanks

    Might give a try with Applejack...
    http://www.versiontracker.com/dyn/moreinfo/macosx/19596
    After installing, reboot holding down CMD+s, then when the DOS like prompt shows, type in...
    applejack AUTO
    Then let it do all 5 of it's things.
    At least it'll eliminate some questions if it doesn't fix it.
    The 5 things it does are...
    Correct any Disk problems.
    Repair Permissions.
    Clear out Cache Files.
    Repair/check several plist files.
    Dump the VM files for a fresh start.
    As long as you don't have a USB connection in tandem with a UPS, which can cause problems.

  • RSS feed not working correctly

    I have several RSS feeds and have for a while. All of a sudden, one feed (NYT Travel) started coming into my InBox as well as into its RSS box. If I delete the article from INBox, it's deleted from the RSS box. Same in reverse. However, I can't move them from InBox to RSS box and they're clogging my InBox. Other feeds are working fine. Can anyone help? Thanks.

    I had the same problem. I didn't knowingly do anything. In the past when that happens the whole thing moves up to the inbox & I can click on the down arrow that shows up next to it. Not the case this time.
    To fix it do this:
    Right click on the RSS feed in the left column. There is a popup menu that gives you the option to "View in inbox" which probably got turned on, uncheck it.

  • RSS Feed not working in chrome browser for anonymous users but working fine in IE

    HI All,
    We are having public facing site for anonymous users. We have created links for OOTB RSS feed for lists and libraries. The link is working fine in IE, but for chrome it is asking for credentials. We are using publishing site. Any idea or pointers is much
    appreciated. We are in testing phase and this issue sticking us.
    Rohit Pasrija

    Hi,
    According to your description, my understanding is that you want anonymous user access RSS feed link without asking for credentials.
    I suggest you can check if you have deactived the “Limited-access user permission lockdown mode” feature in the site settings-> site collection features
    In my environment ,after disabling the feature, then the rss feed link will be accessed without credentials for anonymous users in Chrome.
    Thanks
    Best Regards
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jerry Guo
    TechNet Community Support

  • RSS feed not working properly.

    Site is http://www.shatteredthought.com
    The site redirects to a subdomain http://www.shatteredthought.freeservers.com
    When I went to publish to a folder, I did stated the path should be http://www.shatteredthought.freeservers.com and not the correct domain, but the RSS feeds are not working still.
    Has anyone experienced this?
    They had worked before, I have tried republishing the page twice with the same result.
    Tried as well under domain, http://www.shatteredthought.com as well as subdomain with same result. Feed failed to load. It was working prior to this. I looked at the XML code and it all appears fine to me.
    Any help would be appreciated

    Issue was resolved and narrowed down to web hosting company

  • Why is this RSS Feed not working?

    Here is the code I used on the RSS Parser file. Yet when I
    open the flash viewer no changes have been made from the original
    example I pulled this from. Sorry, the code is listed twice. The
    second version is when I used "attach code" and I can't seem to
    delete the original cut & paste.
    Mind you, I'm just getting through the latter stages of a
    beginner Flash course, so if possible, please keep explanations
    relatively understandable to a newbie. :)
    package com.example.programmingas3.rssViewer {
    import flash.net.URLRequest;
    import flash.net.URLLoader;
    import flash.events.*;
    * RSSParser includes methods for
    * converting RSS XML data into HTML text.
    public class RSSParser extends EventDispatcher {
    * The text to use as the title of the application
    public var sampleTitle:String = "Raw Story: Breaking News";
    * The text to use as the description of the application
    public var sampleDescription:String = "Bringing you the news
    the supposed liberal media won't";
    * The URL of the source RSS data. Alternate URLs are listed
    as comments.
    * Note that in order to use RSS data from a network address,
    the source server
    * needs to impliment a cross-domain policy file. For
    details, see the "Flash Player
    * Security" chapter in the Programming ActionScript 3.0
    book.
    public var url:String = "
    http://feeds.feedburner.com/rawstory/gKpz"
    //"./RSSData/ak.rss"
    http://feeds.feedburner.com/rawstory/gKpz"
    * The XML object containing the source RSS data
    public var rssXML:XML;
    * The string that will contain the converted HTML version of
    the RSS topic data.
    public var rssOutput:String;
    * The title of the RSS feed.
    public var rssTitle:String;
    * Used to load RSS data.
    private var myLoader:URLLoader;
    * An event used to signal that the HTML version of the RSS
    data has been written.
    private var dataWritten:Event;
    * Initiates loading of the RSS data.
    public function RSSParser() {
    var rssXMLURL:URLRequest = new URLRequest(url);
    myLoader = new URLLoader(rssXMLURL);
    myLoader.addEventListener("complete", xmlLoaded);
    * Invoked when the RSS data is loaded. This method parses
    through the
    * XML data by looping through each item element in the XML,
    extracting
    * the title description and link elements in the item
    element.
    * The buildHTML() method returns HTML in the form of an
    XMLList
    * object, which is converted to the rssOutput string.
    * The channel.title property of the rssXML is used as the
    * title for the RSS feed. When the method is complete, it
    dispatches
    * a dataWritten event, which notifies the host application
    of the
    * completion.
    public function xmlLoaded(evtObj:Event):void {
    rssXML = XML(myLoader.data);
    var outXML:XMLList = new XMLList();
    /* The source RSS data may or may not use a namespace to
    define
    * its content.
    if (rssXML.namespace("") != undefined) {
    default xml namespace = rssXML.namespace("");
    for each (var item:XML in rssXML..item) {
    var itemTitle:String = item.title.toString();
    var itemDescription:String = item.description.toString();
    var itemLink:String = item.link.toString();
    outXML += buildItemHTML(itemTitle,
    itemDescription,
    itemLink);
    XML.prettyPrinting = false;
    rssOutput = outXML.toXMLString();
    trace(rssOutput);
    rssTitle = rssXML.channel.title.toString();
    dataWritten = new Event("dataWritten", true);
    dispatchEvent(dataWritten);
    * Builds an XMLList object that represents a segment of HTML
    code,
    * based on the three string parameters that define the
    title, description,
    * and link information from an RSS item.
    * The return text is of the following form:
    * <p>itemDescription<br/><a
    href="link"><font
    color="#008000">More...</font></a></p>
    private function buildItemHTML(itemTitle:String,
    itemDescription:String,
    itemLink:String):XMLList {
    default xml namespace = new Namespace();
    var body:XMLList = new XMLList();
    body += new XML("<b>" + itemTitle + "</b>");
    var p:XML = new XML("<p>" + itemDescription +
    "</p>");
    var link:XML = <a></a>;
    link.@href = itemLink; // <link
    href="itemLinkString"></link>
    link.font.@color = "#008000"; // <font
    color="#008000"></font></a>
    // 0x008000 = green
    link.font = "More...";
    p.appendChild(<br/>);
    p.appendChild(link);
    body += p;
    return body;

    Please when you have a question post the feed URL, not its contents. For reference, your feed is at
    http://gamersscope.emachine08.com/podcast.rss
    You have failed to close the category tag, which renders the feed unreadable. You need to add a line as here:
    <itunes:category text="Games &amp; Hobbies">
    <itunes:category text="Video Games"/>
    </itunes:category>
    <itunes:owner>
    Though it doesn't affect the validity of the feed, your link tag:
    <link>http://gamersscope.emachine08.com</link>
    leads to a server directory, not a page.

  • Iweb rss feed not working

    I published my website (www.nigelreblochon.com) to a folder, then uploaded (using cyberduck) to my webhost. For it to work properly there, I had to remove all items from the folder iWeb created for my site (lets call the folder nigel). The site works fine except for the fact that the podcast feed no longer works because the files needed are no longer in the "nigel" folder. What to do, I would give up the rss feed if there is no other solution. Any help would be apreciated.

    well, i didi that. only problem is the index.html
    that was sent with the iweb folder was for my .mac
    site instead of the nigel site (since iweb always
    publishes EVERYTHING! instead of just something.)
    If you have multiple sites inside iWeb, then to have the index.html refer to the nigel site, just make sure that the nigel site is at the top of the list in the site organizer when you publish to your local drive.
    am
    i right in assuming that setting up a new user
    "nigel" and working on iweb from there would rectify
    my problem.?
    Yes, as long as nigel is at the top of the list of your sites (or the only site of course) inside iWeb when you publish. You could make it the only site by putting a copy of your Domain file in the appropriate place in the new account and opening iweb and deleting the other sites.

  • RSS feed not working in iweb

    Hi
    Any idea why RSS player displays "the RSS feed source can't be reached, try again later", is it becasue the source RSS contains pictures?
    Would this cause compatibility issues in iweb?
    Thanks for your help
    Lawrence

    Hi,
    According to your description, my understanding is that you want anonymous user access RSS feed link without asking for credentials.
    I suggest you can check if you have deactived the “Limited-access user permission lockdown mode” feature in the site settings-> site collection features
    In my environment ,after disabling the feature, then the rss feed link will be accessed without credentials for anonymous users in Chrome.
    Thanks
    Best Regards
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jerry Guo
    TechNet Community Support

  • HELP please! iphone not working because of 2.02 update!

    So my phone is not working. AT ALL.
    It just shows that I need to plug in my iphone cord and then an arrow that points to the iTunes icon. Then I've been doing that, but it prompts me in iTunes that I need to Restore. So I click restore and it says "contacting the iPhone software update server..." for 15 MINUTES now.
    I am absolutely furious because I haven't been able to use my phone for 3 hours now and this is taking forever. It came out of nowhere.
    I also have a stable internet connection. Is the iTunes store messed up right now? someone help please!

    Sorry to hear about your problems...iTunes Store appears to be working properly right now. Did you already have the 2.0.2 update on the iPhone? If so, you should have the backup file in your computer under Users/(your user)/Library/iTunes/iPhoneSoftwareUpdates. If it isn't there, you should be able to download it from the apple site (I think). If not, you can install ANY version of the software by holding down the 'option' key while clicking 'Restore' (not sure which modifier key to hold in Windows)...this will bring you to a dialog box that will let you select a file...navigate to the above mentioned folder and choose the latest software you have. Good luck!!!

  • Help please! Keyboard not working after installing windows XP sp3 on T61

    I just changed to windows XP sp3 in last weekend on my T61. From then on, when I turn on the T61 every morning, the key board is not working, sometimes I could not type password. I need reboot several times to make it work. I installed the keyboard customizer utility from some online information, however, it's not helping. I searched the lenovo support website, but there are lots of drivers there,I don't know which to pick. Does anyone had met the similar issue or know how to solve it? Thanks a million!

    I have exactly the same problem. It is not related to docking for me - just regular standby/resume. A reboot solves the problem. Not exactly what you'd expect from a high-end business model. This is the first time in my over 22 years history of using computers that the keyboard fails randomly. Fix this IMIDIATELY Lenovo!
    Message Edited by Chigu on 06-13-2009 12:39 PM

  • RSS feeds not working? (on N8)

    I got a couple feeds on my N8 (bbbc, cnn, engadget....) anyways since yesterday they wont update, i checked online some people said this has something to do with installing fring (which i did install last night), so is this relevant at all? and if so how do i fix it? (i need fring as well)
    If you found this post or any other psot helpful please press the green kudus star

    Same problem here.
    Only update if I reboot the phone, going in there on the browser and manually updating them will give me an "Unknown error".
    Seems to have happened after an over the air update of Social Networking on the phone.
    N8 User.

  • Need help please swf html not working right

    Hello everyone,
    I created a game in keynote for my HS kids with links to the right slide according to whether or not they are the correct answer.
    I exported it to flash. I got two files xxx.swf when I click on this on my desktop it opens in safari with a black background and it plays.
    the second file is xxx.html when I click on this on my desktop it opens in safari and plays in a smaller frame with a white background.
    So I uploaded my swf to idisk and I copied the content of the HTML in a snippet. I thought it would work. It does not.
    I could not care less about the background I just want one or the other to work but I can figure it out.
    Thank you in advance for your help
    Mireille

    Upload the SWF and the HTML file to your website folder in Finder/Go/iDisk/My iDisk/Web/Sites.
    Create a link on any web page to the HTML file....
    http://web.mac.com/username/WebsiteName/xxx.html
    ... and select "open in a new window" if you want.
    Clicking the link should then open your movie to play in a new window.

  • Help please Whats app not working at all

    hello all
    my whatsapp just stopped working one day when I did a battery pull, I have deleted the app and downloaded it again, done a soft and a hard reset, I even updated my blackberry to the new firmware 6.0 bundle 2949 (v6.0.0.668) platform 6.6.0.236 on the Blackberry curve 9300 and still no luck.
    I’m using whatsapp 2.7.2723 my WHATSAPP will not even pass the phone number verify check stage and when it does (after about 3 battery pulls) it gets to the updating stage and just freezes on me very upsetting to see your blackberry can do theses kind of thing to you L
    I’m in dying need of help
    Thanks
    Solved!
    Go to Solution.

    I got mine working, what I did was backed up my device, then reloaded my os back on to the phone and just restore the contacts and emails. Hopefully when you download what's app again don't go to bb app world go www.whatsapp.com/ota and it should work let me no if it worked for you

  • Help Please: Mail will not work when Wifi uses HTTP Proxy

    I am using an IPad 2 under iOS5. At work, I can connect to the internet using Safari via our wifi network with no problems. This requires access via a manually set HTTP Proxy.
    However, all attempts to create or use a (GMail) account have failed. I know that the mail account works because I have used it with no problems via my home wifi network. It would appear that Mail is not using the wifi proxy information in settings.
    The same was true under iOS4, but I would have hoped that a fix would have appeared in iOS5.
    Can anyone offer help or advice as to how I get around this problem?
    Thanks,
    Chris

    Still need help

Maybe you are looking for

  • How can I get my App Store sign in to match my newly updated Apple ID?

    How can I get my App Store sign in to match my newly updated Apple ID? The old ID is already grayed in the box for my ID and it does not allow me to type in my new ID.

  • Chinese characters displayed with Arial

    Hello, I have got a very strange problem. I have a java application (I'm using Swing) that uses Chinese characters. The characters are displayed correctly. During runtime the characters turn into squares. There is no regularity or specific action I d

  • 9630 Tour & Uconnect

    Has anyone been able to come up with a solution to the Uconnect/Blackberry Tour problem?  I am having issues with my 06 Grand Cherokee. I can get it all to connect, but the Uconnect will not disconnect unless I manually disconnect the device on my Bl

  • Back order with net price

    Dear Friends,         As you know, we can run Back order report by t-code V_RA to show back order list. However, there are no net price in this report, i have to run VBAP  to link the price, it is so discommodious !!         Can you please tell me ar

  • ODBC error occurred while executing SQLExtendedFetch to retrieve the result

    Good morning everyone, I had the following error message while trying to run a simple query in Answers with 3 dimensional columns, 1 fact, and 4 calculated facts... "State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general e