Library not appearing

I recently updated my Mac. iTunes was running very slowly and I keep my 40gb + music library on my external hard drive. When I restarted my computer I opened iTunes and my library did not appear. It took me to the basic Music page that first time users of iTunes see when they first open the program. When I go to the iTunes store it still shows my regular id. Not even my saved playlists are appearing. I would just add my library back to iTunes but that can take several hours because of the size. Any recommendations?

check out these links:
Troubleshooting security software issues
Troubleshooting Home Sharing
and, last but not least, see this discussion concerning bonjour being the culprit.

Similar Messages

  • Since I have iTunes match, why does my iTunes library not appear in iPhoto music options for slideshow?; only songs purchased or placed on iTunes over a year ago appear in the iPhoto library under the iTunes or purchased option.

    since I have iTunes match, why does my iTunes library not appear in iPhoto music options for slideshow?; only songs purchased or placed on iTunes over a year ago appear in the iPhoto library under the iTunes or purchased option.

    10/20/14
    Yes, I am signed in to iTunes match on the macbook pro, iPhone , & iPad (all updated & correct music libraries) where I bought all the tunes but still no updated tunes on the iPhoto music library after 3 days of being on iTunes match.
    Thank you,
    TMAbanjoman

  • Aperture - Album from Shared Library Not Appearing in iTunes

    I have a recurring problem which is making Aperture downright useless.
    I operate a shared Aperture library (shared between 2 users on the same iMAC) which resides in the 'Shared' Users folder. Obviously we cannot have the same library open at the same time -that's no problem. I have set the sharing properties for the library contents and folders to Read and Write for both of us.
    The problem is that when I add photos and create a new Project ad Album to put them in (not worried about the other user at the moment), these don't show up in the Aperture album or project list in Photos in iTunes to sync to my iPad or iPhone.
    I have this very minute added a new album, closed Aperture and made sure its written to disk. Then I have closed the iTunes app and made sure it has quit.
    Then when iTunes loads up again and I connect my device - the library and project do not appear in the items to sync.
    This happens all of the time and it's making Aperture pretty pants. If the only resolution is to rebuild thumbnails, rebuild XML file etc or any more of that - then its not fit for purpose.
    Has anybody a long term permanent fix for this?
    It's seriously doing my head in!

    Bumping this up as it seems that nobody has any idea.

  • Aperture 3 library not appearing in open or attach dialog

    I've just installed iPhoto 9.0.1 but the Aperture 3 library is now not appearing in open or attach dialog. How can I fix it?

    There's a long thread here
    http://discussions.apple.com/thread.jspa?threadID=2620852&tstart=0
    on the Aperture forum. Something there might help.
    Regards
    TD

  • ITunes Library Not Appearing

    Suddenly my libraries are not appearing on the iTunes desktop when it opens. For example, the left hand column shows I have 75 podcasts in my library. However, when I click on this menu item none of them appear on the iTunes screen. I did check the iTunes folder and everything is there but it won't appear within iTunes itself. Anyone have any ideas or solutions? TIA

    ok

  • Title of Page from Pages library not appearing as expected from custom pagelayouts VS solution

    hi,
    i have created a custom web page from pages library using custom page layouts library with the help of a wsp.
    here is my  sample page.
    now my issue is,  when i go to the page / the title of the page is not displaying correctly.
    as per my requirement the ttile  of the page   should be  APPROVE/REJECT Doc
    which is mentioned in the  <title>APPROVE/REJECT Doc</title></head>.
    and in my VS 2012 pagelayouts solution i have added this page name approve1.aspx.
    hence  i am getting the Page title from the pages lib as approve1 .
    can someone pls help what should i do to get this title issue  resolved.
    i cant rename the page again from the solution.i  would like to see the title of this page takes from <title>APPROVE/REJECT Doc</title></head> .
    <%@ Page Inherits="Microsoft.SharePoint.Publishing.TemplateRedirectionPage,Microsoft.SharePoint.Publishing,Version=15.0.0.0,Culture=neutral,PublicKeyToken=71e9bce111e9429c" %> <%@ Reference VirtualPath="~TemplatePageUrl" %>
    <%@ Reference VirtualPath="~masterurl/custom.master" %><%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"
    %>
    <html xmlns:mso="urn:schemas-microsoft-com:office:office" xmlns:msdt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"><head>
    <!--[if gte mso 9]><xml>
    <mso:CustomDocumentProperties>
    <mso:PublishingContact msdt:dt="string">47</mso:PublishingContact>
    <mso:PublishingIsFurlPage msdt:dt="string">0</mso:PublishingIsFurlPage>
    <mso:display_urn_x003a_schemas-microsoft-com_x003a_office_x003a_office_x0023_PublishingContact msdt:dt="string">hellooo1</mso:display_urn_x003a_schemas-microsoft-com_x003a_office_x003a_office_x0023_PublishingContact>
    <mso:PublishingContactPicture msdt:dt="string"></mso:PublishingContactPicture>
    <mso:RobotsNoIndex msdt:dt="string">0</mso:RobotsNoIndex>
    <mso:PublishingContactName msdt:dt="string"></mso:PublishingContactName>
    <mso:ContentTypeId msdt:dt="string">0x010100C568DB52D9D0A14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF390076F7B5D03DD146D699D042E1C5D76EF70034D563D3D2DE07429FB160DADE75B460</mso:ContentTypeId>
    <mso:PublishingPageLayoutName msdt:dt="string">myPage.aspx</mso:PublishingPageLayoutName>
    <mso:Comments msdt:dt="string"></mso:Comments>
    <mso:PublishingContactEmail msdt:dt="string"></mso:PublishingContactEmail>
    </mso:CustomDocumentProperties>
    </xml><![endif]-->
    <title>APPROVE/REJECT Doc</title></head>

    Hi,
    As there is no complete code at hand, you can take the snippet below about updating the name of a page in a page library as a reference:
    if((Get-PSSnapin | Where {$_.Name -eq "Microsoft.SharePoint.PowerShell"}) -eq $null) {
    Add-PSSnapin Microsoft.SharePoint.PowerShell;
    $web = Get-SPWeb http://yoursite
    $list = $web.Lists["Site Pages"]
    $listItems = $list.Items
    foreach($item in $listItems)
    if ($item.Name -eq "Page1.aspx")
    $file = $item.File
    $file.MoveTo($item.ParentList.RootFolder.Url + "/" + "Page1_changed.aspx")
    $file.Update()
    #dispose of web
    $web.dispose();
    Best regards
    Patrick Liang
    TechNet Community Support

  • IPhoto library not appearing in open or attach dialog

    Hello this is my first posting here and this might be in the wrong area but I'm having a problem with iPhoto and I'm not exactly sure where to ask for help.
    I just purchased a new MacBook Pro 15" and have migrated all my stuff from my old MacBook 13". Everything is working great with one small problem. When I go to select photos in other applications I choose photos under media, and only photo booth shows up. On my old MacBook I had iPhoto as an option and could select my photos from there, but iPhoto is not showing up at all.
    I've tried everything I could find on the forums such as rebuilding the database, trying to create a new database, etc.. Nothing makes iPhoto show up under the open, attach or choose photo dialog.
    Does anyone out there know of any way to fix this issue??
    Just an update: Aperture also is not available where it was before... The only option under media that is available is photo booth...
    Message was edited by: gcstanley

    Fantastic- Thanks so much for this brilliantly simple answer. I was having the same problem on my lovely new 13inch macbook pro- was thinking about taking it back to a genius in the applestore- but this has saved me the trip. I wonder why it has never appeared as a software update though- you would have thought everyone would need it and would appear automatically rathe than have to find this forum. Anyway... thanks a bundle.
    Oh, PS- I have no idea what you mean about the permissions I'm afraid, however i just downloaded, installed, restarted and it worked perfectly.

  • Library not appearing. Itunes really laggy

    Hi guys, I just got a new macbook pro and I was trying to get all of my songs over to iTunes. The problem is, when I try to put any song into iTunes, it just straight up doesn't work, no matter what the file type is. Also when I select movies (which is empty so the tutorial pops up) and then try to open up my library it remains on the movies window even though the music one is selected on the menu on the left.
    iTunes is the latest version and I've already removed it completely and tried a fresh reinstall of the program. I have my whole library in Music>iTunes>iTunes Music but it doesn't show up in the program itself
    Help !

    ok

  • HT4597 Why does my photo library not appear in i-cloud?

    I have just gone from the mobileme service to the i-cloud and the photo icon is absent from the i-cloud home page.  I had expected that after 12 hours of upload time for my data that the photo library would be saved to the cloud but I cannot find it!

    10/20/14
    Yes, I am signed in to iTunes match on the macbook pro, iPhone , & iPad (all updated & correct music libraries) where I bought all the tunes but still no updated tunes on the iPhoto music library after 3 days of being on iTunes match.
    Thank you,
    TMAbanjoman

  • IPhone 4S Music Library Not Appearing in iTunes 11?

    Since iTunes 11 has come out, I have had trouble seeing the music I have in my iPhone 4S. I can't see my playlists or anything on my iPhone & I was able to on the previous version of iTunes. Any help on what is going on or how I can fix this problem or bug?

    Hi Kdickerson11,
    If you are having issues importing photos from your iPhone since updating to iOS7, you may find the following article helpful:
    iOS: Importing personal photos and videos from iOS devices to your computer
    http://support.apple.com/kb/HT4083
    Regards,
    - Brenden

  • I have my first mac. the music folder does not appear in favourites from the finder menu so i cant transfer my itunes library

    I have my first mac. I want to transfer my iTunes library from my pc but the music folder does not appear in favourites when I select finder.

    Choose Home from the Finder's Go menu.
    (117823)

  • HT2905 When I sync recently bought albums to my iPhone I get duplicated tracks.  How can I resolve this.  The duplicated tracks do not appear in my itunes library, just on my iPhone.

    When I sync recently bought albums to my iPhone I get duplicated tracks.  How can I resolve this.  The duplicated tracks do not appear in my itunes library, just on my iPhone.

    It seems to happen with songs that were purchased before synchronizing the new iPhone
    I will tell you how I fixed it.
    Note: I have iTunes in spanish so I will try to translate and figure out the commands that appear on ITunes in english. I will put my translations into brackets. English is not my native language. I will do my best.
    The workaround is:
    1.- Dragg no working songs from iTunes to a folder on the hard disk. (Only for backup purposes)
    2.- Deleted those songs from iTunes library.
    3.- On the left panel in ITunes click on "Purchased" under the STORE option. All your purchased songs will appear on the right panel
    4.- At the bottom and right there is the option : "Download Previous Purchases". Click there.
    5.- Click on the option "Are not in my Library" (top right)
    6.- The songs you deleted from iTunes will appear.
    7.- Downloaded them again. (You have the option to download at the bottom right)
    8.- Syncronize your iPhone and that's all.

  • I  started using icloud a few months ago- I now have music on my iphone purchased over a year ago which does not appear on my library on the computer- how can I get it off my iphone?

    I started using icloud a few months ago- I now find I have music on my iphone that my daughter purchased last year- I can't get it off as it does not appear on my Library on my pc. Any ideas- other than banning daughter from my account!

    Add all the songs you want to burn the playlist onto the disk.
    Best Regards, Brandon.

  • My iPhoto library has suddenly disappeared from my computer. When i click on iPhoto it tells me to choose my library or create a new one. However no library option appears. I have searched the computer for the library but it does not seem to exist

    My iPhoto library has suddenly disappeared from my computer.
    When i click on iPhoto it tells me to choose my library or create a new one. However no library option appears. I have searched the computer for the library but it does not seem to exist anymore. I did not have time machine set up, so there is no back up. Is there any way i can retrieve my library?
    Here is a picture of what appears when i click on iPhoto:

    In terms of searching i have searched for photos on my finder. However, none of the photos that appear are from my iPhoto Library.
    Search with FindAnyFile. You can download it here:   http://apps.tempel.org/FindAnyFile/index.php
    Search for any file with "ThumbJPGSegment" in the name. If you added at least one image to your library, the library should contain a file with this name, see OldToad's post: Re: Since I updated to iPhoto 9.5.1, my library is not listed or available. How can I find it? Can I use the time machine to restore it?

  • Pictures not appearing in iphoto library

    I'm using version 2.0.1 of iphoto. Some of the pictures that are in my picture folder will not appear in the photo library. I have "rebuilt" iphoto, but some of the more recent pictures do not appear in the library. Any ideas on what else I could do to get all my photos to appear in the library.
    iMac   Mac OS X (10.4.8)  

    Some of the pictures that are in my picture folder will not appear
    in the photo library
    That's not surprising since iPhoto 2 wouldn't have any way to know anything about photos that haven't been imported into iPhoto. Your Pictures folder isn't the same as your iPhoto Library folder.

Maybe you are looking for

  • Time Machine - Need to manually enter backup disk

    When I enter Time Machine for a particular folder, it does not work. All it shows me is the current state; the Finder windows in the back, which are supposed to represent past states, are all black/blank. The time line on the right side only shows me

  • Videos are not shown in folder

    I have lumia 520 and I unable to understand that why my videos are not shown in video player list only SD card videos are shown and there is no option to select SD card or phone storage in video player just like as in mp3 music player . Is this probl

  • Item Display Options in Portal

    Hi all I have Oracle Portal 10.1.4. In home Page I have Region type is Items. its contents as files (like : WordFiles ). when I want to Sort this Region it has only ( title & size ). Edit Item Region Item Display Options How sort items by ( Create Da

  • Adding itunes purchases to iphone

    This may be a stupid question but: My iphone is synced to my home computer. I often buy songs from itunes while I'm at work (on a different computer). Is there any way I can just dump the songs I buy at work onto my iphone without having to burn them

  • JVM for PPC

    I dont know is this the right place for it but I have to ask. I'm in need for Java 1.4 for Linux on PPC, but it seems to me that nobody is doing the porting(in fact I'm sure). www.blackdown.org was doing the porting of java on other platforms, but th