Did enabling feedburner after submitting my podcast cause problems?

My podcast was submitted at http://www.audiotim.com/rss.xml, but since then I created a feed on feedburner at http://feeds.feedburner.com/AudioTim
My two problems so far are that when I created my profile on feedburner for this site I added category, subtitle, etc but that isn't showing up on the itunes page; and secondly, I now have a weird message on top of my second post that reads:
Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4
I'm not sure if enabling feedburner after submitting caused either of these problems, but can you explain to me how to correct these two errors? I've read the http://www.apple.com/itunes/podcasts/techspecs.html page, but man is that confusing in regards to submitting metadata such as category, subtitle, etc.

iTunes is looking for the feed at http://www.audiotim.com/rss.xml , which you have removed. What is displayed in the Store is cached from that feed, and won't be updated again unless you restore it. If you want to use the Feedburner version then you need to restore the original feed, and add the following tag in the top section (between the 'channel' tag and the first 'item' tag:
<itunes:new-feed-url>http://feeds.feedburner.com/AudioTim</itunes:new-feed-url>
You should leave the old feed in place for a couple of weeks.
As to the mysterious message, this was in the original feed and is in the present one. It's something you've put there yourself, though I can't say how. Sometimes people use a word processor to create a feed or its contents and this causes problems with the hidden commands - you should use a plain text editor. If you've created this feed by submitting data to Feedburner and letting it write the feed, rather than simply submitting the original feed to Feedburner, you will need to find the pace where you entered this info, delete it all and write it in again.

Similar Messages

  • How long after submitting a podcast does it show in iTunes?

    I submitted a podcast last Thursday, its Tuesday now and it is still not on iTunes. How long does it usually take?

    Several days is normal, plus yesterday's holiday will slow it up a bit as well.
    Is the author tag in your feed file contain a valid e-mail address? Apple will respond only to that address if it finds a problem in the feed file. Check the spam holding area too if the account has one.

  • After latest update, podcasts cause iPod to crash

    I've had no troubles at all with my Windows iTunes and iPod, until after updating to iTunes 7.0.1. Since then, certain podcasts will not play on my iPod (they will on my computer in iTunes), and only cause the iPod to reboot (with the apple logo). Is this a glitch in the latest update? Resyncing doesn't help. Thanks

    Thanks for the tip, but this isn't working for me.
    Same problem persists even with the EQ setting turned
    off.
    Since then, certain podcasts will not play on
    my
    iPod (they will on my computer in iTunes), and
    only
    cause the iPod to reboot (with the apple
    logo).
    if you're getting that with certain mp3
    podcasts, it might be worth checking to see if the
    workaround from this document is of any help with
    that:
    <A
    </div>
    HREF="http://docs.info.apple.com/article.html?artnum=3
    04490">Fifth Generation iPod resets when playing
    some
    mono MP3 songs and podcasts
    Hmm, I take that back. I reset the EQ to off AGAIN (apparently the first time it didn't take), and the affected podcasts play.
    But turning the EQ off has to be only a temporary work-around. I am hoping Apple patches this fast.
    Thanks!

  • After submitting a podcast, it only shows one episode and never updates?

    The podcast was approved on the 17th September, but it only ever showed one episode, and has never updated.  Can anyone help?
    https://itunes.apple.com/gb/podcast/bethany-church-warrington/id562744688 pulls a feed from http://bethanywarrington.com/blog/?feed=rss2&cat=4
    The feed is generated from Wordpress.  Thanks

    Thank you, I think you're right.  The 12th september one has an extra line in the RSS:
    <enclosure url="http://bethanywarrington.com/audio/120909%20Sermon%20John%20Addison.mp3" length="0" type="audio/mpeg" />
    Every post should have this, because they all have links to MP3 files.  The only weird thing is, I don't know how made this one post different, because I always submit every MP3 the same way with a link in the main body of text.  How do you think I could add that into every post?

  • Enabling Usage Rights on Livecycle PDF Causes Problems with Table

    I have a form that uses a script to dynamically add rows to a table.  Everything works great, except that once I enable usage rights on the PDF, the header row repeats 3 times on the document.
    LINK TO DOCUMENT WITHOUT USAGE RIGHTS  (link removed) Everything works perfectly, but once I enable usage rights...
    LINK TO DOCUMENT WITH USAGE RIGHTS (link removed) As you can see the table is all messed up. The header row repeats 3 times.
    I am at a loss as to why this is happening. If anyone has any ideas, I would be greatful!
    EDIT:  Okay so I figured out what my problem was for anyone else who has this problem. I UNCHECKED: "Repeat Row for Each Data Item" in the Object Properties of the Header Row.  No more repeating headers!

    Hi Sachin,
    Just run into a solution. You should upgrage to Reader Extensions v7.0.2 for this to work. Read the section
    "Enabling commenting in a PDF document rendered in a web browser"
    in the ReadMe.htm file that accompanies Adobe LiveCycle Reader Extensions Version 7.0.2
    The procedure described lets you enable Adobe Reader 7.0 and later to allow commenting when the PDF document is rendered in a web browser, similar to Adobe Reader 6.0.
    Regards,
    Evangelos

  • Problem in enabling constraint - after disabling and truncation of table .

    Hello Friends,
    I have a table called DRR_TABLES that has list of table names . The requirement is to truncate the tables present in DRR_TABLES except KEY_IDS table and table_name like '%TYPE%' table.
    written a procedure . successfullly truncating the tables from DRR_TABLES but while enabling constraints after truncation , I am getting problem in enabling constraints .
    ERROR at line 1:
    ORA-02270: no matching unique or primary key for this column-list
    ORA-06512: at "schema123.TRUNCATE_DRR_TABLES ", line 49
    ORA-06512: at line 1
    Heres is the code .
    PROCEDURE TRUNCATE_DRR_TABLES is
    x varchar2(200);
    v_tablecount number := 0;
    cursor c is select TABLE_NAME from DRR_TABLES where population_source='PUBLISHING' and TABLE_NAME != 'KEY_IDS' and TABLE_NAME NOT LIKE '%TYPE%';
    BEGIN
    DBMS_OUTPUT.PUT_LINE (' TRUNCATING DRR TABLES ...........');
    OPEN c ;
    LOOP
    FETCH c INTO x ;
    EXIT WHEN c%NOTFOUND;
    for c1 in (select table_name, constraint_name from user_constraints where TABLE_NAME = x and status ='ENABLED' ORDER BY CONSTRAINT_TYPE DESC )
    loop
    begin
    execute immediate ('alter table '||c1.table_name||' disable constraint '||c1.constraint_name|| ' cascade');
    NULL;
    end;
    end loop;
    EXECUTE IMMEDIATE 'TRUNCATE TABLE ' || x ;
    v_tablecount := v_tablecount + 1 ;
    DBMS_OUTPUT.PUT_LINE('TABLE TRUNCATED :'|| x );
    END LOOP ;
    DBMS_OUTPUT.PUT_LINE (' TOTAL TABLES TRUNCATED ' || v_tablecount );
    CLOSE c;
    OPEN c ;
    LOOP
    FETCH c INTO x ;
    EXIT WHEN c%NOTFOUND;
    for c2 in (select table_name, constraint_name from user_constraints where TABLE_NAME = x and status = 'DISABLED' ORDER BY CONSTRAINT_TYPE)
    loop
    begin
    execute immediate ('alter table '||c2.table_name||' enable constraint '||c2.constraint_name);
    NULL;
    end;
    end loop;
    END LOOP ;
    CLOSE c ;
    END TRUNCATE_DRR_TABLES ;
    LINE 49 is the line corresponding to enable constraint statement.
    Edited by: kumar73 on 3 Sep, 2012 11:44 PM

    It is such a pity that a user having 321 posts till date is unaware of basics of Posting a Question.
    1. You need to provide us with your Oracle version
    select * from v$version;2. You need to understand and get accustomed to using tags before and after Code or SQL's for better readability.
    3. You need to provide us with the Table Structure and the Constraints Definition.
    There are many things that looks like Bad Coding practices:
    <font face="Times New Roman" size=2>
    1. Avoid RBAR (Loops).
    2. Implement Bulk Collect.
    3. Why do you need to disable the constraints before truncating? Are you kind of handling the Referential Integrity Constraints?
    4. Duplicate checking of Disabled Constraints.
    5. When the procedure is being executed at Production Environment, are you going to Monitor the DBMS_OUTPUT? Why not Log the Statements into a LOG Table?
    6. Why use a TableCount variable? Would the TableCount Variable be not equal to the Number of Records returned by Cursor C?
    7. What is the need to use a NULL statement after every Execute Immediate?
    8. What is the Need to surround each execute Immediate with Begin .. End block?
    9. Where is your Exception handling Block? Forgot to write?
    </font>
    What has been your effort in finding which Constraint/Table is causing you the trouble?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Re-submitting my podcast feed after it has been deleted dosen't work?

    Hi
    I had recently submitted a podcast feed for my company. However I made a mistake in asking to have it deleted so I could make some changes.
    Now having completely revised my understanding of how the feed works, I have now re-submitted my feed:
    http://www.shogunaudio.co.uk/podcast.xml
    When the podcast was up before it ran fine, and was very popular. My feed is valid, I can subscribe using the 'advanced - subscribe to podcast' in iTunes. But for some reason it won't register. I have re-submitted the same feed 3 times and I don't get a 'duplicate feed' warning, it just says that it is submitted and I will be getting an email, but nothing happens.
    I desperately want to get this up and running asap, what is wrong here?
    Thanks

    I can't really say what is going on, but I don't think submitting from another account or changing the IP number will have any effect. Normally in this situation you should change the title slightly, and also rename the feed - as I suggested, you could call it podcast1.xml (so that the URL changes) - these are the parameters affecting it. The only other possibility I can think of is that you have managed to introduce some problem into the feed which is causing it not to be accepted (though if you can subscribe from the 'Advanced' menu this seems unlikely).
    Would you like to post the URL of the revised feed?

  • I submitted my information to receive a replacement 1st generation nano but somehow did not notice what steps I needed to take to return the Ipod to Apple. What needs to be done after submitting the serial number information online?

    I submitted my information to receive a replacement 1st generation nano but somehow did not notice what steps I needed to take to return the Ipod to Apple. What needs to be done after submitting the serial number information online in order to obtain a replacement?

    They're supposed to send you a box with shipping instructions which you then use to send them your 1st generation iPod, however, I've been waiting a month for my box and can't figure out why I have not received it

  • Several weeks after submitting podcast to iTunes and still not there

    I submitted a podcast that I created for work many weeks ago now (over 1 month) and, for some reason, it still isn't showing up when I search for it in the iTunes store. I've tried resubmitting the podcast, but iTunes tells me that it has already been submitted.
    The feed is http://feeds.feedburner.com/ASHAPodcast
    Of course, I can subscribe with a direct link, but I'd like it for folks to be able to search for it in iTunes to find it.
    Anyone know what the problem is, or how I can resolve it?
    PC   Windows XP Pro  

    When you submitted the podcast to iTunes, if it was accepted, you should have received an email from the iTunes staff indicating that your podcast was accepted and it listed a link directly to the iTunes podcast page for that feed.
    Something like the following:
    Dear Podcast Owner
    Your podcast, located at [ http://example.com/example.xml ], has been approved. You should expect to see it in iTunes within the next few hours. When it's available, you will be able to access it with the URL below.
    http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=0000000
    If you have questions or wish to make changes to your feed, please consult the technical spec at http://www.apple.com/itunes/podcasts/techspecs.html. The spec contains detailed information about key topics like adding "cover art", changing your feed URL, and adding other helpful iTunes-specific tags to your podcast.
    There is also an Apple Discussions Forum exlcusively for podcast producers, located here: http://discussions.apple.com/forum.jspa?forumID=1107. If you have a question or a problem that the technical spec cannot answer, the community of iTunes podcasters may be able to provide valuable guidance.
    Sincerely,
    The iTunes Store Team
    If you never received an acceptance email, it may not have been accepted or it was sent to someone else. They will send an email to the <itunes:email> email address in the feed and the email address of the apple account who submitted the feed.
    Erik
    Dell   Windows XP Pro  

  • Could I link my existing youtube videos (or Facebook, Myspace, Vimeo, Flickr duplicates) in a field somewhere and link to them (after initially submitting a podcast feed URL)?

    I've found podbean.com, and will explore podomatic.com, for submitting video podcasts to the iTunes Directory. But now that I've found these RSS feed URL generators (and will look for others) is there a way within these websites or in blogs to link to my existing videos on Facebook, for example, and the video appear in the iTunes Store?

    I'm afraid not - please see my response to your post in the other thread.

  • OIM 11g - User Not enabled After the job "enable user after start date"

    Hi,
    I have a future hired user in OIM whose start date is set in OIM. The status of the user in OIM is 'Disabled Until Start Date'.
    After the start date has passed and the scheduled job 'enable user after start date' is run, I see that the user is still in the status 'Disabled Until Start Date'. I re-run the scheduled job 'enable user after start date', this time manually, still the state of the user remains unchanged.
    Please help in troubleshooting as to find out the root cause of the issue and a workaround/solution, if possible.
    This issue is intermittent and has happened with quite a number of user. Any pointer would be helpful.
    Regards,
    Sudipto S.

    I agree with Nayan.
    One alternative approach can be to write your own custom scheduler which can overcome the limitation of OOTB scheduled job 'enable user after start date'. Let the OOTB job get executed first. After it, your custom scheduler should fire a simple SQL Query:
    SELECT USR_KEY, USR_STATUS FROM USR WHERE (USR_START_DATE > SYSDATE -1) AND USR_STATUS='Disabled Until Start Date';
    //Means those users who are supposed to get enabled today and are still not yet enabled and are in 'Disabled Until Start Date'. May be 2-3 user keys at max will come...
    As you said it happens only intermittently and not for all users... So, let the OOTB scheduled job take care of most of such users... And after it has finished, if any user still remains in 'Disabled Until Start Date', your custom scheduler should enable it via using tcUserOperationsIntf.enableUser(userKey);
    Using API is always better than database update... Because APIs trigger downstream provisioning workflows as well and not just updates OIM Database...
    Keeping your constraints in mind, I think it is the correct answer.

  • Takes longer then normal to load hotmail after submitting user credentials and doing this on other websites

    firefox takes longer to load webpages after submiting user credentails on websites such as hotmail or banking websites. this has been doing this since i upgraded firefox. also been experiencing alot of firefox crashes since the upgrade. firefox is usually a better and faster brouwser then IE9.

    -> Tap ALT key or press F10 to show the Menu Bar
    -> go to Help Menu -> select "Restart with Add-ons Disabled"
    Firefox will close then it will open up with just basic Firefox. Now do this:
    -> Update ALL your Firefox Plug-ins https://www.mozilla.com/en-US/plugincheck/
    -> go to View Menu -> Toolbars -> unselect All Unwanted toolbars
    -> go Tools Menu -> Clear Recent History -> ''Time range to clear: '''select EVERYTHING''''' -> click Details (small arrow) button -> place Checkmarks on '''Cookies & Cache''' -> click "Clear Now"
    -> go to Tools Menu -> Options -> Content -> place Checkmarks on:
    1) Block Pop-up windows 2) Load images automatically 3) Enable JavaScript
    -> go to Tools Menu -> Options -> Privacy -> History section -> ''Firefox will: '''select "Use custom settings for history"''''' -> REMOVE Checkmark from "Permanent Private Browsing mode" -> place CHECKMARKS on:
    1) Remember my Browsing History 2) Remember Download History 3) Remember Search History 4) Accept Cookies from sites -> select "Exceptions..." button -> Click "Remove All Sites" at the bottom of "Exception - Cookies" window
    4a) Accept Third-party Cookies -> under "Keep Until" select "They Expire"
    -> REMOVE CHECKMARK from CLEAR HISTORY WHEN FIREFOX CLOSES
    -> go to Tools Menu -> Options -> Security -> place Checkmarks on:
    1) Warn me when sites try to install add-ons 2) Block reported attack sites 3) Block reported web forgeries 4) Remember Passwords for sites
    -> Click OK on Options window
    -> click the Favicon (small drop down menu icon) on Firefox SearchBar (its position is on the Right side of the Address Bar) -> click "Manage Search Engines" -> select all Unwanted Search Engines and click Remove -> click OK
    -> go to Tools Menu -> Add-ons -> Extensions section -> REMOVE All Unwanted/Suspicious Extensions (Add-ons) -> Restart Firefox
    You can enable your Known & Trustworthy Add-ons later. Check and tell if its working.

  • Changes in the xml file AFTER submitting to store

    hi,
    I recently added a Podcast for BMWGroup.com to the iTunes store, which hasn't been released yet.
    What I want to know is, whether changes in the xml file, that i made AFTER submitting it will be taken over when the feeds are going to be released.
    For example a different categorie or image..
    and if not? how can i change categorie or image later? does it update from the xml?
    does anyone know?
    thx,
    best regards,
    oliver
    thx,

    Oliver:
    The simple answer is yes. Any changes you make to your RSS feed file (xml file) will eventually be updated by ITMS. Usually ITMS updates feed changes within 24 hours. However, the most recent changes I made in my feed files took almost 8 days before ITMS refreshed my listing.
    One issue is clear. If you make changes to your image file, there is a high probability that when ITMS updates your database record, your listing in ITMS will show the broken link image for awhile. I've changed my image file twice, and each time, my ITMS listing showed the broken link image. Eventually the new image shows up, but it does take a long time for this day and age.
    Good luck!

  • There was an error submitting your podcast

    We have installed Podcast Producer 2 on a demo 10.6.2 server. We are able to use Podcast Capture directly on the server and podcasts are produced and able to be accessed through the Podcast library.
    But when attempting to use Podcast Capture on a 10.5.8 client, after logging in and recording the podcast, when publishing we get the following message from Podcast Capture:
    "There was an error submitting your podcast"
    Some things I have noticed from the Server Logs:
    Apache Error Log:
    [Wed Feb 17 09:14:29 2010] [warn] RSA server certificate CommonName (CN) `demomaster.nobl.k12.in.us' does NOT match server name!?
    [Wed Feb 17 09:14:30 2010] [warn] RSA server certificate CommonName (CN) `demomaster.nobl.k12.in.us' does NOT match server name!?
    [Wed Feb 17 09:14:30 2010] [notice] Apache/2.2.13 (Unix) mod_ssl/2.2.13 OpenSSL/0.9.8l configured -- resuming normal operations
    Our servername is demomaster.nobl.k12.in.us, but our local hostname is demomaster.local. Would this be a problem? changeip -checkhostname shows "success"
    From the Application Log:
    Processing SubmissionsController#createforfile (for 10.12.12.60 at 2010-02-17 09:16:36) [POST]
    Session ID: d01cfcdf22d9d9c541cad23337cbe193
    Parameters: {"workflow_name"=>"Sample Workflow", "submission_type"=>"file"}
    Rendering default/failed.xml.builder (401)
    Filter chain halted as [:authorize] renderedorredirected.
    Completed in 148ms (View: 20, DB: 0) | *401 Unauthorized* [https://10.0.12.41/podcastproducer/submissions/createforfile]
    The 401 Unauthorized also shows up even when we use podcast capture directly on the server. But the podcast still works then. So I'm not sure this is really an issue.
    I have a feeling this is some sort of permissions issue, but I have tried changing the permissions on the /var/pcast and /var/pcast/server folder
    http://www.sysarchitects.com/node/92
    And I have turned off digest authentication in cluster_preference.plist as well with no success.
    http://support.apple.com/kb/HT3899
    Any other ideas? We really need to get this working. Thanks for any help.

    I keep finding a little more information...
    The plist file of the podcast that was to be uploaded looks like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>cachedmetadatafile</key>
    <string>/Users/admin/Library/Application Support/pcastuploader/metadata/3FE7240F-7E9A-409D-A2F5-CEF2E15FA1C5.plist</stri ng>
    <key>checksslcert</key>
    <string>false</string>
    <key>content_paths</key>
    <array>
    <string>/Users/admin/Library/Application Support/Podcast Capture/LocalAudio-2010-02-17-101316.mov</string>
    </array>
    <key>created_at</key>
    <string>Wed Feb 17 10:13:34 -0500 2010</string>
    <key>deleteafterupload</key>
    <string>true</string>
    <key>estimatedtimeleft</key>
    <string>0</string>
    <key>filecopypath</key>
    <string></string>
    <key>ftpuploadurl</key>
    <string></string>
    <key>httpsuploadurl</key>
    <string>*https://demomaster.local:8170/cgi-bin/pcastupload.cgi<*/string>
    <key>originalmetadatafile</key>
    <string>/Users/admin/Library/Application Support/Podcast Capture/submission-9398F39D-357E-4509-AAF5-A5BCFA16A931.plist</string>
    <key>percent_done</key>
    <string>0</string>
    <key>recording_uuid</key>
    <string>FBDB1CF7-CDDD-40DB-AA79-30207DF7D1E3</string>
    <key>server_url</key>
    <string>*https://demomaster.nobl.k12.in.us:8170/podcastproducer*</string>
    How do I change my server so that it uses the FQDN "demomaster.nobl.k12.in.us" everywhere instead of sometimes using the local hostname demomaster.local.
    It appears this is a DNS issue. We have set the hostname using scutil and running changeip -checkhostname shows
    Current HostName = demomaster.nobl.k12.in.us
    DNS HostName = demomaster.nobl.k12.in.us
    The names match. There is nothing to change.
    dirserv:success = "success"
    nslookup on the ip shows that the reverse is working and pointing to the FQDN.
    Computer Name in Server admin is set to: demomaster.nobl.k12.in.us
    Local Hostname is set to: demomaster
    but under the podcast Producer overview screen in Server Admin our Podcast Library and Capture URL both show http://demomaster.local:port instead of the FQDN.
    How do we change this?
    Thanks again.

  • Trouble submitting my podcast

    Hi community,
    I get an unspecific error message, when submitting my podcast: http://www.startuprad.io/feed/
    I am not sure what is wrong and why iTunes won't accept it. Please advice!
    Best
    Joe

    This is not a podcast feed. It has no 'enclosure' tags containing the URLs of your media files, as required by iTunes. and lacks the 'iTunes declaration' in the second line. There is a reference to an mp3 file in you 'content: encoded' tags but iTunes does not read these; there is also a reference to a .swf file which iTunes does not play.
    You have constructed your feed in WordPress. I can't advise on the details of WordPress but I suspect you will need either to use the PodPress plugin or route your feed through Feedburner and add the media files there. The former would be preferable as Feedburner has its own issues (and there are rumours of its impending discontinuation).

Maybe you are looking for

  • Computer Crashed...How do I get my purchased applications back?

    My hard drive recently crashed. After getting everything I could back up and running, I connected my Touch to Itunes and it removed all my apps and saved info from my Touch. Where did they go? ITunes doesn't show my apps in the apps folder either alt

  • Send mail notification on creation of substitute through SBWP.

    Hi All We create substitution for a person through SAP Mailbox. Settings>>Workflow settings>>Maintain substitute. This maintains the table HRUS_D2. How can we send a notification mail to the concerned people (the person who has been created as the su

  • I am getting "Download error. Tap to retry." 1st song processed fine.

    I purchased several songs. First song processed fine. The remaining get to a certain point in the "Processing" step and then I get the above error. Of course, it doesn't tell me what the "download error" is - that would make sense. I have plenty of s

  • Facebook and Flickr color space?

    My edit space is adobe RGB. When I sync with Facebook or Flickr, does Aperture convert the files to sRGB automatically? If not, is there anyway to do this without resorting to export versions and uploading the images outside of Aperture?

  • Iphone4 not responsing after software update

    I've got a standard iphone4 and I was reminded that I have to update my iphone system. And I followed the guidance and went to the general screen. After it finished update and reinstallation, the phone automatically shut down. While I was thinking it