Real Problems with Feedburner and iTunes. Please help!

I've tried numerous things to figure out whats going on but havent been able to pin point it. Maybe someone here can help. My latest podcast episode has not shown up in iTunes yet and it has been almost 2 days. I've tried pinging the iTS and pinging feedburner but I'm not sure what's going on. For my first 2 podcasts everything went fine but for this one, the feedburners site says it was unable to create an enclosure for the podcast. Any clues on where to even start? I'm not really a code guy so I don't know what to do. Here's my feed URL and the site I post my podcasts too:
http://moviepool.wordpress.com/feed/
http://moviepool.wordpress.com
feedburner feed:
http://feeds.feedburner.com/moviepool

interesting. I see they are in the iTunes Store now. Last night after I pinged iTunes AND feedburner it didn't show up. What is the usual wait time for pinging the sites? Maybe I need to just be a little more patient
All I care about are the actual mp3 episodes of my podcasts. I don't care about the other links or image files.
Bones

Similar Messages

  • Please help me with feedburner and iTunes! Help!

    I'm knew to podcasting, so if someone could help me out you'd rock. I have a show on podbean.com, and my show is also on iTunes.
    I burned the feed with feedburner, but feed burner shows 0 subscribers 0 listeners. Podbean.com shows hundreds of downloads.
    Could someone explain to me IN PLAIN SIMPLE ENGLISH how to get iTunes to recognize my feed burner version of my feed?!?! I can't seem to make sense out of any answers online, and i am frustrated!
    Here are my links, could someone simplify this for me? Thanks.
    http://todayinipad.podbean.com/feed/
    http://feeds.feedburner.com/TodayInIpad
    -Dr. Brad

    This is the problem with services like Podbean, they may make things easy, but you don't have a lot of control. The same is true of Feedburner, of course; mostly it works OK but you should be aware that if you wanted to change from it you would have the same problem. On the plus side, you can change the feed which you submit to Feedburner without upsetting iTunes, and of course you get the statistics which iTunes does not provide.
    In order to remove your existing podcast, follow the instructions here. Then submit anew using the Feedburner feed, or another if you decide to do that.
    However, if you keep the same title you will probably have the submission rejected on the grounds that a podcast of that name has already been submitted (even though it's been removed) - this appears to be a bug in the Store. You will probably need to make a small change to the title - a bit of punctuation, perhaps, such as 'Today - in iPad'; you could then change the title back once the feed has been accepted and is up and running.

  • Connecting Problems with iPhone and iTunes. Help please?

    When I connect my iPhone 4 to my laptop (Toshiba), I have a huge issue with connecting and syncing my phone on iTunes. During the time it is plugged and attached to my laptop, I can charge it and sync photos that are on my device to the compter, but I can not get it to sync with iTunes. Also, I do not know what my iTunes is fuctioning at (6.1- 7.1- 8.etc), but I did updated it about a month ago. Does anyone have any information and /or/ helpful advice on this topic?
    Thank you!

    Hi CookiCat,
    Follow the troubleshooting steps in the link below:
    http://support.apple.com/kb/TS1538
    Cheers,
    GB

  • Problems with titles and backgrounds PLEASE HELP

    At the beginning of my movie, I have inserted a title (pixie dust) which prompts me to include a background. I have done so. However, when i play the movie in full screen sometimes the title doesn't even show up at other times the title shows but without the pixie dust feature. I have tried to rectify this using precision editor but it doesn't work. When I play the video in the project library the pixie dust feature shows up. Please help. What am I doing wrong?

    This seemed to be a bug in iMovie v.8.0.6. I have the same problem independently of the font and the background but only at the beginning of the project.
    To avoid this problem make a short transition before the title clip and the text will appear in fullscreen mode too.
    Good luck.

  • Problem with threads and simulation: please help

    please help me figure this out..
    i have something like this:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class DrawShapes extends JApplet{
         private JButton choices[];
         private String names[]={"line", "square", "oval"};
         private JPanel buttonPanel;
         private DrawPanel drawingArea;
         private int width=300, height=200;
         public void init(){
              drawingArea=new DrawPanel(width, height);
              choices=new JButton[names.length];
              buttonPanel=new JPanel();
              buttonPanel.setLayout(new GridLayout(1, choices.length));
              ButtonHandler handler=new ButtonHandler();
              for(int i=0; i<choices.length; i++){
                   choices=new JButton(names[i]);
                   buttonPanel.add(choices[i]);
                   choices[i].addActionListener(handler);
              Container c=getContentPane();
              c.add(buttonPanel, BorderLayout.NORTH);
              c.add(drawingArea, BorderLayout.CENTER);
         }//end init
         public void setWidth(int w){
              width=(w>=0 ? w : 300);
         public void setHeight(int h){
              height=(h>=0 ? h : 200);
         /*public static void main(String args[]){
              int width, height;
              if(args.length!=2){
                   height=200; width=300;
              else{
                        width=Integer.parseInt(args[0]);
                        height=Integer.parseInt(args[1]);
              JFrame appWindow=new JFrame("An applet running as an application");
              appWindow.addWindowListener(
                   new WindowAdapter(){
                        public void windowClosing(WindowEvent e){
                             System.exit(0);
              DrawShapes appObj=new DrawShapes();
              appObj.setWidth(width);
              appObj.setHeight(height);
              appObj.init();          
              appObj.start();
              appWindow.getContentPane().add(appObj);
              appWindow.setSize(width, height);
              appWindow.show();
         }//end main*/
         private class ButtonHandler implements ActionListener{
              public void actionPerformed(ActionEvent e){
                   for(int i=0; i<choices.length; i++){
                        if(e.getSource()==choices[i]){
                             drawingArea.setCurrentChoice(i);
                             break;
    }//end class DrawShapes
    class DrawPanel extends JPanel{
         private int currentChoice=-1;
         private int width=100, height=100;
         public DrawPanel(int w, int h){
              width=(w>=0 ? w : 100);
              height=(h>=0 ? h : 100);
         public void paintComponent(Graphics g){
              super.paintComponent(g);
              switch(currentChoice){
                   case 0:     g.drawLine(randomX(), randomY(), randomX(), randomY());
                             break;
                   case 1: g.drawRect(randomX(), randomY(), randomX(), randomY());
                             break;
                   case 2: g.drawOval(randomX(), randomY(), randomX(), randomY());
                             break;
         public void setCurrentChoice(int c){
              currentChoice=c;
              repaint();          
         private int randomX(){
              return (int) (Math.random()*width);
         private int randomY(){
              return (int) (Math.random()*height);
    }//end class drawPanel
    That one's from a book. I used that code to start with my applet. Mine calls different merthod from the switch cases. Say I have:
    case 0: drawStart(g); break;
    public void drawStart(Graphics g){
      /* something here */
    drawMain(g);
    public void drawMain(graphics g){
    g.drawString("test", x, y);
    //here's where i'm trying to pause
    //i've tried placing Thread.sleep between these lines
    g.drawLine(x, y, a, b);
    //Thread.sleep here
    g.drawRect(x, y, 50, 70);
    }I also need to put delays between method calls but I need to synchronize them. Am I doing it all wrong? The application pauses or sleeps but afterwards, it still drew everything all at once. Thanks a lot!

    It is. Sorry about that. Just answer any if you want to. I'd appreciate your help. Sorry again if it caused you anything or whatever. .n_n.

  • Problem with podcasts and iTunes 6.0.1.3

    Hi everybody!
    First of all, please excuse my poor English: I'm French. I'll try to do my best to write as well as I can.
    I have some difficulties with podcasts and iTunes 6.0.1.3.
    When I "sign up" (FR: "s'abonner") to some podcasts, they are not updated in my iPod nano indeed (and some others are), although iTunes says: "Your iPod is updated" (FR: "Votre iPod est à jour").
    I have no way to put these podcasts episodes in my iPod...
    Could you help me please?
    Thanks in advance for your help!

    Hi iFriend,
    try this, it worked for me:
    1) first of all, uninstall QuickTime and older versions of iTunes from your PC, using the "remove" button in the "install applications" tool that you find in the windows control panel.
    2) reboot the system
    3) turn off the windows firewall application; go into the windows control panel, double click on windows firewall and disable the firewall option
    4) if you have one, disable your Anti-Virus application; i mean its real-time protection.
    5) probably it's not necessary, but for being sure... download and launch the standalone installer of QuickTime (latest version)
    6) download and launch the iTunes + QuickTime installer from this web address
    7) as an option, i suggest you to download and install also iTunes Art Importer. It's a nice application, that allows you to import from the internet directly into iTunes the album ArtWorks of the selected tracks in iTunes. I installed it, and it works very well with iTunes 6.
    8) after all the installations, remember to enable both firewall and anti-virus previously disabled!
    as i said, probably the 5th passage is not necessary, but i did it and it worked!
    if you have any questions or feedbacks, just relpy to this topic. stay iTuned!
    bye, bye,
    Marco

  • A Few Questions/Problems With My New iPod *PLEASE HELP*

    Hello! I just received my first iPod (4th Gen, 4GB, Red Nano) two days ago (Christmas Eve) and have so far been fairly happy with it. However, I'm experiencing a few problems with it and am hoping that someone could help me.
    Firstly, a few of the album covers on my iPod are just black squares. I've read other complaints about this on the forums, but haven't seen any solutions. What can I do to fix this?
    Second, I can't figure out how to put my songs in order. On iTunes, it allows me to put songs in alphabetical order, but being that most of my songs are part of full albums, I want my songs to be in the order of when they play on the actual albums. When I try to drag my songs into their correct places, I'm not able to.
    Also, is there any way to delete the games that my iPod came with? I think they might be taking up too much room for my liking...
    OK, well if you can help or add some extra tips to getting started with my iPod, it would be much appreciated. Thank you!

    Bump...

  • Firefox is having problems with "Southwest Airlines website" Please help soon

    Whenever I go on Southwest Airline website, it does not work. I am having this problem since last month. Please help on this as soon as you can.

    Clear the cache and the cookies from sites that cause problems.
    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    Other things that need your attention:
    Your above posted system details show outdated plugin(s) with known security and stability risks that you should update.
    * Shockwave Flash 10.0 r22
    * Java Plug-in 1.6.0_07 for Netscape Navigator (DLL Helper)
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://kb.mozillazine.org/Flash
    *http://www.adobe.com/software/flash/about/
    Update the [[Java]] plugin to the latest version.
    *http://kb.mozillazine.org/Java
    *http://www.oracle.com/technetwork/java/javase/downloads/index.html (Java Platform: Download JRE)

  • NO PHONE TAB IN ITUNES PREFS problem with V3i and iTunes

    Hey everyone. Just got a V3i and it won't mount in iTunes. It mounts on my desktop, and iSync, but not in iTunes. In iTunes Preferences I don't see the Phone tab. There's iPod, Parental, Music Store, Sharing,Advanced and all that but no Phone Tab. I've tried formatting the card several times, reset the phone, repaired permissions, and changed the cable. Nothing has worked. I just find it strange that iTunes Prefs does not show the Phone Tab to make edits. I have the Phone driver kext and the latest iTunes 6.0.5 also installed. Anyone with this problem solved please help. Thanx.
    iMacintel, Dual 500 G4, Converted G4 Pismo Powerbook   Mac OS X (10.4.7)  

    The setup has changed a bit. With your iPod connected to iTunes, click on the iPod's name. You will see the "Summary" page. You will also notice various tabs. This is where you will find the area to set-up syncing your contacts, etc.

  • Problem with IPod and Itunes

    Hi
    Can anyone please help me I installed Itunes latest version and updated the old version on the PC. Now when I connect my ipod it showsin the side bar of itunes only to give a message saying it is in recovery mode and I need to restore factory settings. After having done this reluctantly - it is supposed to then be visible after the ipod has rebooted in itunes - it isn't and if I connect again says the same thing about recovery mode. I now have an ipod that effectively has nothing on it and I cannot use has any had the same problem or got any ideas?
    Many Thanks
    Karen

    Have you had a chance to look at this troubleshooting page? If not, have a look at the bottom section that covers what to try if the message keeps reappearing: iTunes has detected an iPod in recovery mode - Use iTunes to restore
    Towards the end it says "If after restoring your iPod, the message described above reappears, the iPod drive letter may need to be reassigned. See the "Change the Drive Letter" section of this document for steps to assign a different drive letter" which contains a link to this article: Windows confuses iPod with network drive and iTunes may exhibit strange behavior in relation to the iPod.

  • Big problem with my 4th Gen, please help !!!

    Hi guys.
    Well I've a big problem with a 4th gen Ipod. The prob is that the Select button on the middle doesn't work.
    I've tried everything : Did a reset, a complet restore from Itunes 7, but it was unsuccesful.
    I don't really understand the problem, I was using the Ipod normally then suddenly the button didn't work !!
    Please help me. In addition, I cannot carry it to the Apple Centre because I live in Algeria.
    Thanks.

    No ideas ???
    I've tried to open it as well, I've unplugged all the connectors, cleaned it with alcohol, but the button still not responding.
    Do you think that the problem would come from the logic board ?? Because the button itself worked (I used a METRIX to test it), and I can make a reset with no problem (the reset needs the central button).
    Please help me. Thanks.

  • N95 problems with mototrola S9 BT PLEASE HELP!!!!

    I have an N95 and am having real problems connecting with my motorola S9 headset.
    My software version is 11.0.026, 17-04-07, RM-159, 65.01 (not sure which numbers are relevant.
    The S9 connects with all my other phones.
    I assume its a software problem but if anyone has the same issue or a fix please help.
    o2-uk, N95 8GB
    V20.0.016, 28-02-08, RM-320, (88.01)
    Running Rotate Me 2.2 & Rock'n'Scroll & Shake SMS & ShakeLock & Flip Silent

    Will it never connect or the the connection closes afther a while?
    In the first case it can be two things.
    1. The headset has reached the maximum amound of connections. Max os often 7.
    2. The BT profiels are diffrent. Nothing you can do.
    If the connection closes it's your Nokia phone. The nokia profile difrens from the one of the motorola. The refresh time is difrent.
    Hope I helpt.
    Drunken

  • Problem with messages and calls,, please respond

    Problem with my iphone is that the messages are sent and received very late, it hangs while sending, when delete a message it takes time to open messages firstly... messages in the thread disappear and such abnormalities.
    and in Calls, i receive notification when the call is missed.
    help!

    I would do a full restore using iTunes (backup first, of course)

  • Problem with adobe acrobat/reader - please help!

    Hello,
    My acrobat reader was fine and I was able to open the pdf files sent to me, then suddenly it just wouldn't open anything at all.  It went into open mode and just stayed there, and wouldn't let me close it.  Then I got a message saying "there is a problem with adobe acrobat/reader.  Please exit and try again".  I've done this lots of times and it still isn't working.
    I would be very grateful for any help or suggestions.  I have windows 7, and as I said its all been fine up until now.
    Thanks.
    mspryce.

    This is the Acrobat forum, not the Reader forum. You should check the reader forum. In the meantime, if you are not running AR9.3 or so, you should update. Prior versions before 9 are not designed for Win7 and that might be your issue -- you gave no indication of version.

  • Problem with my 3gs!please help

    need help! i just upgrade my 3gs to ios 5..but got problem with it..it says no sim..but the sim card is in it.can anyone help me?how do i fix this?

    here its is step by step,
    step 1 :- pluging iphone in ur laptop
    step 2 :- open itunes and
    step3 :- create new playlist ... here same picture
    step :- 4 picture here
    step :- when u create a new playlist click in ur playlist ....
    step 6 :-  when u drage all music in ur playlist then click ur devic and  click sync ....
    now ur playlist ready ...... enjyyyy with ur music

Maybe you are looking for