HT5085 i connected my apple ID to another computer, downloaded all purchased music and now all of my library is grey. whats wrong?

i connected my apple ID to another computer, downloaded all purchased music and now all of my library is grey. whats wrong?

If you are getting a message that the old email account is being used then that might mean that you have created a new account and not replaced the email address on the old account - try seeing if you can get the password reset for the old account/email : http://iforgot.apple.com

Similar Messages

  • TS3297 I connected my new iphone to my computer for the first time and lost all my contacts.  any way to get them back

    I connected my new iphone to my computer for the first time and lost all my contacts.  any way to get them back

    Did you have them stored in iCloud?

  • If i change my apple id will i loose all purchased music and videos

    if I change my apple id will I loose all purchased music and videos?

    Greetings elalewis, 
    Thank you for visiting Apple Support Communities. 
    If you would like to change the email address that you use as your Apple ID, you can do so without losing purchased content. Note that email addresses ending with @icloud.com, @me.com, or @mac.com are already Apple IDs, and cannot be changed.  
    See this article for the complete steps to change the email address used as your Apple ID:
    Change your Apple ID - Apple Support
    Sincerely,
    Jeremy 

  • I connected my ipad to a mac computer to stream a video, and now it doesn't recognize my sim card! Help!

    I had a movie in my ipad and wanted to see it on the tv. So i connected it to a friend's mac. Automatically when i connected it, itunes (his itunes) asked my for the name of the ipad and other stuff i don't remember.  We were able to see the movie but when i disconected the ipad  it says "No sim" even if the sim card is where it always is. Now i don't have any internet! (i'm using an ipad 2)
    does anyone know what happened?

    Download iTunes for your computer, by going to http://apple.com/iTunes Then connect it to iTunes and see what happens. If nothing happens try doing hard reset, by pressing the home and wake/sleep button, ignore the red slider, and continue pressing until it turns off and turns back on.

  • How to connect an apple tv to an enterprise network with a username and a password?   I need to use it over my university's wifi. theres no option to enter username and password. how to connect the apple tv to such enterprise network?

    How to connect an apple tv to an enterprise network with a username and a password?
    I need to use it over my university's wifi. theres no option to enter username and password. how to connect the apple tv to such enterprise network?

    Contact the University's IT dept, they may be able to set something up on the network to allow the ATV to connect without the need for a user name/password.

  • Is there a way to get around the pop up, "this device is already associated with an Apple ID. You can download past purchases on this device with just one Apple ID every 90 days. This device can be used with another Apple ID in 13 days."Someonehelp please

    Is there a way to get around the pop up, "this device is already associated with an Apple ID. You can download past purchases on this device with just one Apple ID every 90 days. This device can be used with another Apple ID in 13 days."Someonehelp please!

    What exactly are you trying to do?

  • Connecting to a database from another computer...

    hi guys!
    i just wonder if there is a simple way to connect to my database from another computer?
    do you have to change something in this method?
        private static Connection getConnection() {     Connection con = null;     try {         Class.forName("com.mysql.jdbc.Driver");         String url = "jdbc:mysql://localhost/Movies";         String user = "root";         String pw = "x";         con = DriverManager.getConnection(url, user, pw);         System.out.println("****Connected****");     }     catch (ClassNotFoundException e)     {         System.out.println(e.getMessage());           System.out.println("1");         System.exit(0);     }     catch (SQLException e) {         System.out.println(e.getMessage());           System.out.println("2");           System.exit(0);     }         return con;     }
    thanks! :)
    Edited by: Shaor-1 on Dec 22, 2008 3:47 AM

    hey!
    is there no one who knows how to do this?
    Here is my program that i want to change so it can connect to my mysql database but from another computer.
    import java.sql.*;
    import java.text.NumberFormat;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    public class ListMovies {
            static String exist = "existed";
        static int ye = 2221;
        static double pr = 21.12;
    public static void main (String[] args) throws InterruptedException {
    go();
    public static void go(){
           NumberFormat cf = NumberFormat.getCurrencyInstance();
        for(int i = 0; i < 1; i--){
        ResultSet movies = getMovies();
        try
            while (movies.next()){
                Movie m = getMovie(movies);
                String msg = Integer.toString(m.year);
                msg += ": " + m.title;
                msg += " (" + cf.format(m.price) + ")";
                System.out.println(msg);
              Thread.sleep(1000*10);
                catch (InterruptedException ex) {
                    Logger.getLogger(ListMovies.class.getName()).log(Level.SEVERE, null, ex);
                }    catch (SQLException e)
            System.out.println(e.getMessage());
    public static void loanMovie(String d) {
        Connection con = getConnection();
        try {
            Statement stmt = con.createStatement();
            String insert = "insert into movie "
                    + "(title, year, price) "
                    + "values ("
                    + "\"" + d + "\"" + ", "
                    + ye + ", " + pr +");";
            int i =stmt.executeUpdate(insert);
            if (i == 1){
                System.out.println("Loan recorded");
            else
                System.out.println("Loan not recorded");    
        catch (SQLException e){
            System.out.println(e.getMessage());
            System.out.println("CRAP"); 
    private static ResultSet getMovies()
        Connection con = getConnection();
        try {
            Statement s = con.createStatement();
            String select = "Select title, year, price " +
                    "from movie order by year";
            ResultSet rows;
            rows = s.executeQuery(select);
            return rows;
        catch (SQLException e)
            System.out.println(e.getMessage());
        return null;
        private static Connection getConnection() {
         Connection con = null;
         try {
             Class.forName("com.mysql.jdbc.Driver");
             String url = "jdbc:mysql://localhost/Movies";
             String user = "root";
             String pw = "x";
             con = DriverManager.getConnection(url, user, pw);
             System.out.println("****INFO****");
         catch (ClassNotFoundException e)
             System.out.println(e.getMessage());
               System.out.println("1");
             System.exit(0);
         catch (SQLException e) {
             System.out.println(e.getMessage());
               System.out.println("2");
              System.exit(0);
            return con;
        private static Movie getMovie(ResultSet movies) {
            try {
                String title = movies.getString("Title");
                int year = movies.getInt("Year");
                double price = movies.getDouble("price");
                return new Movie(title, year, price);
            catch (SQLException e)
            System.out.println(e.getMessage());   
            return null;
        private static class Movie
            public String title;
            public int year;
            public double price;
            public Movie(String title, int year, double price)
                this.title = title;
                this.year = year;
                this.price = price;
    BTW_
    my computers ip is: 81.229.40.17
    the database is on that computer.
    thanks!

  • HT203167 I have music on another computer that no longer works and did not back it up.  Can Apple somehow retrieve it for me?

    I have music on another computer that no longer works and did not back it up.  Can Apple somehow retrieve it for me?

    If they were purchases from iTunes then have you checked to see if you can re-download them (it's not possible in all countries), assuming that they are still available in the store : re-downloading ? If you aren't in a country where you can re-download past music purchases and you haven't got a backup, then you can try contacting iTunes support and see if they will grant you a re-download : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • HT3798 my iPod was originally connect to an old HP. The HP has since died and now I own a Macbook pro. I want to transfer the music from my iPod (originally synced with the HP) to my Macbook Pro. Is this possible without losing the music on my iPod?

    my iPod was originally connect to an old HP. The HP has since died and now I own a Macbook pro. I want to transfer the music from my iPod (originally synced with the HP) to my Macbook Pro. Is this possible without losing the music on my iPod?

    Your iPod is designed to sync with only one iTunes library at a time.  It will recognize the iTunes library on the PC as a new library.  If you sync the iPod with this new library, all content will be erased from the iPod and replaced with what is in the new library.  So what you will want to do is copy everything from the iPod to your new iTunes library on your PC first.
    See this older post from another forum member Zevoneer covering the different methods and software available to assist you with the task of copying content from your iPod back to your PC and into iTunes.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

  • HT201272 Error in connection when downloading previously purchased music. Help please!

    I'm trying to download previously purchased music onto a new authorized computer, but for a number of songs (1 in 10 approximately), I continually get the message that the connection cannot be established.
    In my Library, these songs cannot be played.
    However, when I go back under Itunes Store > Purchased - beside every song (regardless of whether it was successfully downloaded or not), it says Downloaded. So I can't download them again.
    Any help would be greatly appreciated! Thanks!

    Ability to redownload varies from country to country, the US having most options currently:
    http://support.apple.com/kb/HT5085
    If you think you should have more optons check your country is correctly set in iTunes.
    http://support.apple.com/kb/HT2519

  • I downloaded the IOS6 update and now it wont connect to my home wifi HELP PLEASE!

    I downloaded the new update and now it wont conect me to my home Wifi PLEASE HELP! when i click to connect with my wifi it brings up this apple page saying" try another search the page i searched for cannot be found" idk what to do!

    Have you tried starting FF in safe mode and then disabling all add-ons and extensions?
    Then restart the browser enabling each add-on one by one. I did this and found that Stumbleupon toolbar was the problem for me as my browser was freezing as soon as I started it and going into not responding but with this currently disabled the browser works fine. Just hope there is an update for Stumble soon.

  • I updated my computer to the new software and now the iPhoto has a circle with a line through it.  When I try to update, it pops up to say "These apps cannot be accepted by your apple id". Then will say "update unavailable with this apple id" how do i fix

    I updated my computer to the new software and now the iPhoto has a circle with a line through it.  When I first try to open it the pop us says: "You can't use this version of the application "iPhoto" with this version of OS X. Version: 9.2.1"  When I try to update, it pops up to say "These apps cannot be accepted by your apple id - These apps were already assigned to another Apple ID and they will be available in that Apple ID's purchases list.  If you don't have access to that Apple ID and want to receive future updates, you will need to purchase the application".  I checked and there is nothing under the "purchases" in my App store.  Then will say "update unavailable with this apple id - This update is not available for this Apple ID either because it was bought by a different user or the item was refunded or canceled." Then the third pop up says "We could not complete your request. There was an error in the App Store.  Please try again".  Just want to know how do to fix.

    After I upgraded to Mavericks I was also having this message when I tried to update. There was a previous post about this problem which offered this simple solution which worked for me:
    b0n0b0
    Re: Recently upgraded to Maverick from SnowLeopard. Unable to get updates from App store.
    Mar 15, 2014 9:05 AM (in response to Terence Devlin)
    Got it! Thanx.  What I did was go to my account, check that they had my new ID and Password which they did, then hit reset button. All fixed.

  • TS3694 I performed an iOS 7 software update on my iPhone yesterday, and now the phone is not working at all. The iPhone screen shows to connect to iTunes to restore. I've have done this, and still the iPhone is not working. What going on?

    I performed an iOS 7 software update on my iPhone yesterday, and now the phone is not working at all. The iPhone screen shows to connect to iTunes to restore. I've have done this, and still the iPhone is not working. What going on?

    I have no idea what may have caused your MacBook to stop working, but from your description it kind of sounds like it may have started before you ran Software Update and installed the new Apps. Just the general slow feeling and bugginess is what tips me off. You said that you weren't sure if you had closed all open windows, that doesn't matter if the computer restarts itself. It automatically closes all other open applications when restarting.
    As to your data being retrievable, if when you take it in they do a fresh install of the OS, then no, it will not be unless you want to pay several thousand dollars to a software retrieval company.
    I am glad to hear that you have taken into the Apple Store to get it fixed, and that you have all of your purchased music backed up to your iPod. You should be able to just transfer it all back to iTunes once you get your computer back should it be necessary.
    As a side note, the proper place for this topic would probably in the MacBook forums, not iTunes since there is no evidence that iTunes started the issue.

  • While updating my ipod it crashed and now all I get is the apple logo on the screen.

    I clicked on the update operating system that had a notification next to it. It downloaded for a long while then asked me to hook up to itunes. I didi and it said it was downloading again . Then updating. Then said update failed and now all that shows on the screen is the apple logo. Also
    the ipod won't shut off. Please help.

    This device is not eligible for the requested build (Also sometimes displayed as an "error 3194")
    Update to the latest version of iTunes.
    Third-party security software or router security settings can also cause this issue. To resolve this, followTroubleshooting security software issues.
    Downgrading to a previous version of iOS is not supported. If you have installed software to performunauthorized modifications to your iOS device, that software may have redirected connections to the update server (gs.apple.com) within the Hosts file. Uninstall the unauthorized modification software from the computer.
    Edit out the "gs.apple.com" redirect from your hosts file, and then restart the computer for the host file changes to take affect. For steps to edit the Hosts file and allow iTunes to communicate with the update server, see iTunes: Troubleshooting iTunes Store on your computer, iPhone, iPad, or iPod—follow steps under the heading Blocked by configuration (Mac OS X / Windows) > Rebuild network information > The hosts file may also be blocking the iTunes Store. If you do not uninstall the unauthorized modification software prior to editing the hosts file, that software may automatically modify the hosts file again on restart.
    Avoid using an older or modified .ipsw file. Try moving the current .ipsw file (see Advanced Steps > Rename, move, or delete the iOS software file (.ipsw) below for file locations), or try restoring in a new user to ensure that iTunes downloads a new .ipsw.
    Also:
    iPhone Error 3194 - How to Fix iTunes Error 3194?
    Fix Error 3194 from iTunes during iPhone restore

  • Can connect to appstore but not can't download songs or music albums

    can connect to appstore but not can't download songs or music albums in mp3.

    Sorry, but music tracks and other media contact are not available in Israel via an iTunes Store at this time. None of us here can say when Apple will be able to obtain the necessary licenses and feel it worthwhile to set up an iTunes Store for your country.
    Regards.

Maybe you are looking for

  • Residual cleared item - per invoice

    Hi All - In F-28, in residual process, how can residual clearing per invoice be achieved ? Is this possible? Any ideas...  Appreciate a response...

  • E63 compatibility with CK-7W Bluetooth hands free ...

    The E63 does not appear in the compatible phones list for the CK-7W. Is this an oversight or is there really a problem? Can't really understand why there should be but if so perhaps someone could explain please?

  • When I click a link it goes to a new window Search Bookmarks and History

    I have clicked several different links on webpages and the link keeps taking me to a new window that would allow me to Search Bookmarks and History. It seems to be random but certain links go to the new window every time.

  • ::    .swf dependencies issues  ::

    Hey everyone, Let's start from the really basic; I created a flex app that uses google maps. When embedding the .swf file into an HTML I get nothing on the screen- its missing its dependencies. I copied all the generated files to the same relative lo

  • Error when I start xl reporter

    Hi, i have SBO 2007, SP: 00, PL: 47 when start the XL reporter this message was appear : Unable to start XL Reporter. Object variable or With block variable not set and when i try to start it from his file this massage was appear: Run time error '739