Why does Itunes say it can't find the original file for a particular song?

why does Itunes say it can't find the original file for a particular song? and then asks if I want to locate it? I can't access a bunch of old song files. any new cds are available to me in itunes. all others are not accessible. how do i merge the new cd's with the old ones so that all the songs are playable in Itunes. thanks.

sheri 0713 wrote:
Of course, I have backed up to CD and/or external drive.
I'm wondering if you're attempting to maintain your library on your external HDD? If iTunes has been directed to use a location on your external hard drive as your iTunes Music Folder location (you can check this in iTunes > Preferences > Advanced tab) you MUST ensure that the hard drive is connected to the computer and mounted in the Finder prior to launching iTunes. If it isn't, it can cause this error to appear. This is probably one of the most common reasons this error begins to appear.
It seemed my purchased songs were the first to DISAPPEAR and I had to rebuy.(Nice scam in the bug?)
So... why not restore them from your backup? If, for some reason, this wasn't an option, you could have also recovered them from any iPod or iPhone they were currently synced to (http://support.apple.com/kb/HT1848), or, you can also email iTunes Store support and request a "regrant," which is a once-per-account exception they might be able to offer you and allow you to download missing purchases again.
I am now convinced this a HUGE BUG in 7.7.1. and possibly the previous version or two.
I'm not so sure... I've never run across this particular error (my library is stored on my internal hard drive, but copied to an external for backup purposes with an application other than iTunes or Finder. I don't think Apple will provide acknowledgment to issues experienced only by very small numbers of people... I'm one of those, perhaps foolish, individuals who allows my computer to download updates immediately, rather than waiting for fear of problems, and again, I've never had this error.
CG

Similar Messages

  • Imported  Songs from CD.  Now iTunes says it can't find the songs

    My mom has an iPhone and a laptop with Windows 7 on it.  But she's not exactly "technically savy" so she has me deal with anything technology related.
    She imported a number of CDs into iTunes on her laptop and then sync'd to her iPhone.  The music plays fine on her phone.  But when she attempts to play the music on her laptop (in iTunes), she gets a message that iTunes can't find the original file.
    TIA! 

    Easiest way to fix that is to find the CD, reload it, and take the files off the other place on your computer. Another way is instead of putting it right onto iTunes, take it to "C:\Documents and Settings\Administrator\My Documents\My Music\iTunes\iTunes Music\Unknown Artist". In there, past the music then double click them one at a time. The file will start to play on iTunes and will save itself under its Artist's name/names. There shouldn't be any problem after that.
    Now lets see if you can help me. Call be stupid, but I can't figure out how to post my own topic.
      Windows XP  

  • How can i find the exact BADI For a Particular Transaction

    hi ppl,
    How can i find the exact BADI For a Particular Transaction. Is there any Standard transaction or Programs to do this or suggest some other way.

    Use this code:
    *& Report  ZGET_BADI
    REPORT  ZGET_BADI.
    TABLES : TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA : FIELD1(30).
    DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS : P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA wa_tadir type tadir.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT in ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    *Sorting the internal Table
    sort jtab by OBJECT.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type C.
    clear : wf_smod, wf_badi , wf_object2.
    *Get the total SMOD.
    LOOP AT JTAB into wa_tadir.
    at first.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 wf_object2,
    105 SY-VLINE.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE MODTEXT into wf_txt
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    when 'SXSD'.
    *For BADis
    wf_badi = wf_badi + 1 .
    select single TEXT into wf_txt
    from SXS_ATTRT
    where sprsl = sy-langu
    and EXIT_NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    endcase.
    WRITE:/1 SY-VLINE,
    2 wa_tadir-OBJ_NAME hotspot on,
    41 SY-VLINE ,
    42 wf_txt,
    105 SY-VLINE.
    AT END OF object.
    write : /(105) sy-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    data : wf_object type tadir-object.
    clear wf_object.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    when 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    endcase.
    Regards
    Vinayak

  • I can't play song in library ,they said can't find the original file,help me pls bec  over one thousand song can't play

    I can't play the song in my library bec they can't find the original file which i can play before may be I try to import mp 3 which couple song from mp3 can play but the song that come from original cd or purchase from itune store can't play

    iTunes doesn't import it INTO the Library, it keeps it in it's original place and just adds the song into it, try and find them again and re-add them into your library.

  • Where can i find the chassis file for import in MAX for drawing connection diagram before purchasing

    where can i find the chassis file for import in MAX for drawing connection diagram before purchasing
    chassis: NI PXIe-1078
    thx

    This board is for an obsolete product called Measure - an add-on for Excel. Please repost with details on exactly what you mean by 'chassis file'.

  • Where can I find the LOG file for bash/command history typed into Terminal?

    Where can I find the LOG file for bash/command history typed into Terminal?
    For 2 weeks ago I was searching for a log file on my server. Somehow I opend a file where I could see a list of all bash-commands I had ever entered into OSX Terminal.
    Now I need this file.. but cant find it.
    What is the official location for this LOG file?
    Thank you so much for helping.

    cat .bash_history

  • Where can I find the xsd file for SQL2012 .dtsx files?

    Where can I find the xsd file for SQL2012 .dtsx files?
    Tom G.

    I would start here. 
    http://msdn.microsoft.com/en-us/library/gg587789(v=sql.105).aspx The xsd is spread out over several of the appendices.
    Russel Loski, MCT, MCSE Data Platform/Business Intelligence. Twitter: @sqlmovers; blog: www.sqlmovers.com

  • After installing the latest of iTunes the original files for almost 300 songs cannot be found for syncing to my iPod. The files are songs that were bought from iTunes, and copied into iTunes from CDs.

    After installing the latest of iTunes the original files for almost 300 songs cannot be found for syncing to my iPod. The files are songs that were bought from iTunes, and copied into iTunes from CDs.

    Apparently, security programs like Macafee and Norton view Itunes updates as new programs and block then from access. If you add Itunes to the list of exemptions, it solves the problem.

  • When syncing with itunes, says that it can't find the required file for syncing with iphoto

    when i sync my iphone to itunes, when it comes to the part of syncing the photos from iphoto
    it says that it cant find the required file. so when i tick off the sync with iphoto and i sync again with itunes, it doesn't give this problem
    so it has to do with the sync with iphoto
    can somebody help me plz?

    Delete the iPod photo cache, as described here:
    http://support.apple.com/kb/ts1314

  • ITunes can't find the original file?

    I have my entire iTunes collection on my iPod and, supposedly on my laptop. Yet every time I click on a laptop song, I get a message telling me that ITunes can't find the original song, do I want to look for it? I then have to run "Search", wait for the song to appear, and click on it to add it to my usable library. Then, I get two listings for the same song, and if I eliminate one listing, I get the "can't find original" message again. I have just under 60 gig of music and I don't want to search and add thousands of songs when they are already in there somewhere. I appreciate greatly any one's expertise in helping me solve this frustrating problem. Thanks!

    Hi, Mike-D.
    I'm assuming your music files are all in one centeral location - the iTunes Music folder or what have you.
    There are a few basic strategies for dealing with your unfortunate situation:
    1) Telling iTunes where the lost songs are on a one by one basis.
    2) Moving the songs to where iTunes thinks they are. Unfortunately, there's no way to find out where that might be.
    3) Start with a new iTunes library. Regrettably, this method will lose your playlists and related information (Ratings, Play Counts, Dates Last Played, etc.).
    If that's not a deal-breaker for you, delete the current entries in your Library by highlighting them - iTunes Edit menu > Select All - and then right-clicking > Delete . You remove the entries from your Library but keep the files themselves in your iTunes Music folder, again that's assuming that's where they are in the first place.
    You can then add them back into your Library by selecting the iTunes Music folder in Windows Explorer and dragging it into the Library entry in the iTunes Source List (left-hand column).

  • Where can I find the Install File for Acrobat Standard 9?

    I am trying to reinstall Acrobat Standard 9, but can't locate the Install File for Standard, only for Pro.  Can anyone tell me where the file for Standard is kept?

    As far as I know the older versions of Acrobat Standard are (still) not available... I've seen discussions where that's debated but I have yet to see anyone report  finding the file.

  • Error 1301: I need to reinstall Acrobat but can't find the original file

    Error 1301: I need to reinstall Acrobat but can't find the original file

    Pro
    Danielle
    Danielle DeGarmo | DEGARMO CREATIVE | 703-351-6767
    2258 North Vernon Street, Arlington VA 22207
    Dropbox: https://dropbox.hightail.com/DCsend

  • HT1338 I've shortcut file and i can't find the original file

    I'm a web developer and i use XAMPP .. I removed file from htdocs to trash and before i removed it , i took a shortcut to my desktop
    The shortcut doesn't open and i can't find the source file in trash
    Where can i find my source file :'(

    If you put the file in the Trash, the alias will not open it. It should tell you that it cannot open it because it is in the Trash. However, if it is no longer in the Trash, the alias will not be able to find it.
    If you deleted the trash, there is nothing left for the alias to point to.
    Did you try searching with Spotlight?
    If it is not in a user accessible place, you might need to search with the Finder.
    Type cmd-ctrl-F. Click the Add button to add criteria,
    You'll need to add a criteria to search for System Files. In the criteria (Kind) popup menu, select Other...
    Then, scroll down and find System Files. Select the checkbox so it stays in the menu and click ok.
    Set the second popup to Are Included.
    Select This Mac and type htdocs in the search field.

  • My iTunes account says that it cannot locate the original file for all of my songs.  My iPhone still has all the music and is able to play the songs, if I sync and backup my iphone will the songs be replaced with the empty copies from my itunes library?

    So basically I tried to back up my itunes library to my external hard drive and when I followed the instructions and then went to play a song it said Orginal file cannot be found. It said that for all of the songs. I'm not sure how to fix what I did, I already tried consolidating and all of that stuff and it didn't locate the files.  I'm guessing that I somehow deleted the original songs along the way.  I synced my iPhone without knowing what I did and surprisingly all of the music is still on my phone.  So now that I've completely screwed up my iTunes account, I need to know how to get all my music back onto my iTunes account and have that library only on my external hard drive, not my computer. Everything looks fine on my iTunes besides the fact that it cannot locate the files but what I'm afraid of is me syncing and backing up my iPhone and then being left with no music because it syncs to the empty songs.  How can I fix this? and if I can't fix my iTunes library is there anyway for me to still be able to backup my iphone and all the music on it, without erasing my music?

    Well I'm not sure if I correctly backed up my itunes library because when trying to open itunes from that back up it keeps saying original file not found. Okay this is going to sound confusing but bear with me.  I "backed up" my itunes, meaning I just dragged and dropped the iTunes folder into my external hardrive, and then I changed the destination on iTunes to open from my external hardrive.  It was working fine when I did that, however I did that just on my own, I didn't know about consolidating the files or any of that so I hadn't done that before copying the folder to my external hard drive. I can't remember but I'm pretty sure I deleted the iTunes folder after I had copied it to my external hardrive. So I did that and it was working fine, I was able to open my itunes with my external hardrive.  BUT yesterday I thought that I hadn't done it correctly because I didn't consolidate the files and all that, so I wanted to be more thorough and do that, I followed the steps to do that but when I did that I think it got all the files from my computer and not from my external hard drive so it basically didn't find anything on my computer because I had deleted them. And like an idiot, I replaced the iTunes folder on my external hard drive (the one I did correctly the first time), with the one I did wrong. So I believe I pretty much deleted all the music files from both my external hard drive and my computer. Please correct me if I'm wrong?
    I believe getting all my music back on my itunes is a lost cause. BUT I still have all my songs and stuff on my iPhone. My question is, if I plug my phone into my computer and sync it, will it erase all my songs from my phone? A little more info, my iTunes still has the names and stuff of all my songs, they just can't be played because the files are missing, my iPhone doesn't need to erase and sync when I plug in my phone because it's already synced to my computer. What I'm afraid of is when I plug in my phone to backup and sync, will it erase my music because it can't find the files on my computer or external hard drive anymore? Or will it just leave the songs because they're already there (on my phone) and only sync the new songs that I've downloaded? I just need to know is my iTunes still going to be functional as far as me being able to backup my phone?
    I have a lot of songs purchased from iTunes but a lot (like 60%) are from CDs that I no longer have. So re-downloading my music would only account for 40% of my library.

  • Where can i find the Datewise stock for a particular material

    Hello friends,
    In which table i can find the stock of a particular material on particular date?.MARD, MCHB these all tables gives the current stock of material.But i want to find the stock of material on particular date.In Report MB5B and MC.9 we can find the stock on particular date but is there any table from where these reports fetch the data?
    Thanking you guys in advance.

    Dear Jitendra,
    Check once again in this thread whether are you able to find out some help.
    But I'm sure MB5B is not getting the info from a single table,it's getting the information from info
    structures and few tables.
    table to see stock on particular date
    Regards
    Mangalraj.S

Maybe you are looking for

  • Problem in CRMD_BUS2000126

    In the CRMD_BUS2000126 transaction , i am performing an activity , in this transaction , i am providing 'Person Responsible' field  a value . After performing action ,say 'call succeefull/call unsuccessfull' the Business partner for the 'Person Respo

  • How to re-download Lightroom 4? [was: Hi my fellow geeks( complement not been funny)]

    Hi all hope you are well. A wile ago( excuse me for any wrighting errors) i bought the Lightroom4 but in download form and used it with no isuess. Untill one day while my laptop where in the floor my room became a 2'' deep water pond so my toshiba dr

  • Server0 starts very slowly in PI 7.11 in Win 2008 / SQL 2008 MSCS config

    Hi all. I have a problem in our newly installed PI 7.11 system on Windows Server 2008 and MS SQL 2008 MSCS setup. The J2EE application server on the node where the SCS is running, takes about 1 hour to start. About 20 minutes after starting, it goes

  • Outbound IDOC not getting triggered while new master data is created

    Hi Experts, I am trying to trigger an outbound idoc for Cost Center master data when ever cost center is being created or cost center is being changed. (Usinf COSMAS) I have successfully made use of change pointers and now able to trigger the idoc wh

  • Multiple User FTP with semi-Isolation

    So I have a bit of a conundrum that general walkthroughs don't seem to cover. So I have a machine running Windows Server 2012 with IIS8. There's no AD or anything fancy. I have 3 types of users for my machine: Administrators, Users, and a usergroup I