HT1206 I can't log into the Itunes store.  I type in my Apple ID and my password and the message "This Apple ID cannot be used for the iTunes Store." "Enter another Apple ID."  I need help on fixing this.

I can't log into the Itunes store.  I type in my Apple ID and my password and the message "This Apple ID cannot be used for the iTunes Store." "Enter another Apple ID."  I need help on fixing this.

Yeah I'm starting to see a ton of forums posts right now about the same thing :/ I wonder what's going on

Similar Messages

  • Help! My iPod touch won't let me download any apps. A message keeps coming up saying "This Apple ID cannot be used for the iTunes store. Please enter another Apple ID" I changed my ID to see if that would work but the same message still comes up.

    Help! My iPod touch won't let me download any apps. A message keeps coming up saying "This Apple ID cannot be used for the iTunes store. Please enter another Apple ID" I changed my ID to see if that would work but the same message still comes up.

    Where are you physically located?
    What country's Store are you using?
    The two have to be the same and the payment method for your account also has to be associated (billing address, where iTunes gift card was purchased) with that country.
    Has the ID(s) worked before for purchases for this country's store?

  • My Snow Leopard 10.6.3 has Safari 4.0.4 but this cannot be used for the new features of iTune.  I tried upgrading to Safari 5.1.7 but it needs Snow Leopard 10.6.8.  Where can I get a version of Safari 5.1 that is compatible with Snow Leopard 10.6.3?

    My Snow Leopard 10.6.3 has Safari 4.0.4 but this cannot be used for the new features of iTunes.  I tried upgrading to Safari 5.1.7 but it needs Snow Leopard 10.6.8.  Where can I get a version of Safari 5.1 that is compatible with Snow Leopard 10.6.3?

    Hi..
    here can I get a version of Safari 5.1 that is compatible with Snow Leopard 10.6.3?
    Not possible. You need to update to v10.6.8
    Click your Apple menu > Software Update
    Or update using the this download > Mac OS X 10.6.8 Update Combo
    Then restart your Mac.

  • I can't download anything on the Mac App store. It says This Apple ID cannot be used for the Mac App Store.

    I can't download anything on the Mac App store. It says This Apple ID cannot be used for the Mac App Store.

    I went into settings, iTunes & App Store and tapped on my appleID, then signed out. I went back into the App Store on my phone and tried to download the app and then signed in again, and it worked!

  • Please help, i connect my phone to computer and gives me error code this i phone cannot be used because the apple mobile device is not started

    please help, i connect my phone to computer and gives me error code this i phone cannot be used because the apple mobile device is not started

    http://support.apple.com/kb/HT1923
    uninstall and reinstall
    there is a complicated way to work with just the mobile device support but its simpler just to uninstall itunes and related components and then reinstall itunes
    ur music will be fine, u will just lose the playlists. but ur mobile device support will be working again.

  • HT2589 ibooks still gives me the following error message "This Apple ID cannot be used for the iTunes Store."

    I've done all of the above suggested sign in methods, and yet ibooks gives me the following error message "This Apple ID cannot be used for the iTunes Store."

    Found this in the forums here, it works.
    "OK...I think I have found a solution.  In settings, select tunes & app store.  click on Apple ID> View Apple ID>Payment Information. It appears it is not saving or requiring payment information to be updated. This worked for me."
    Thanks

  • When I plug my i pod in to down load music a screen pops up and says. this i pod cannot be used because the apple mobile device service is not started. please help

    when I plug my I pod in to download music a screen pops and says. this i pod cannot be used because the apple mobile device service is not started. please help

    See:
    How to restart the Apple Mobile Device Service (AMDS) on Windows

  • HT2500 After my last software update I can no longer access my mail.  message displayed says "you have mail version 4.5 this cannot be used on  Mac OS X Version 10.6.8 .  How do I fix this???

    After my last software update I can no longer access my mail.  message displayed says "you have mail version 4.5 this cannot be used on  Mac OS X Version 10.6.8 .  How do I fix this???

    See possible fixes here.
    https://discussions.apple.com/message/19760703#19760703
    https://discussions.apple.com/thread/4311280?tstart=0
    https://discussions.apple.com/message/19710911#19710911
    Some have reported success simply by reinstalling the update.
    http://support.apple.com/kb/DL1586
    Or download and apply, or reapply, the 10.6.8 Combo update first, then apply the Security Update again.
    http://support.apple.com/kb/DL1399
    I'd suggest starting with the simplest of these fixes, so look them over first.

  • HT1386 I am trying to download ios 5.1.1 on my iphone from itunes and i get an error message that my iphone cannot be updated because the filmware is not compatible?  What do I do?

    I am trying to download ios 5.1.1 on my iphone from itunes and i get an error message that my iphone cannot be updated because the filmware is not compatible?  What do I do?

    iOS 5 is only compatible with the iPhone 3Gs and later...
    Updating to iOS 5   http://support.apple.com/kb/HT4972

  • Msg comes up "This i-pod cannot be used because the Apple Mobile Device Service is not started"

    Having trouble with my i-pod touch.  When I plug in the i-pod to the computer a message comes up "This i-pod cannot be used because the Apple Mobile Device Service is not started"  - Any ideas ?

    How to restart the Apple Mobile Device Service (AMDS) on Windows
    iTunes- How to remove and reinstall the Apple Mobile Device Service on Mac OS X

  • Need help on fixing this bug

    Hello!
    I have my cod which needs some bug fixing. This is a drag and drop application where the user will drap the correct answer on corresponding targets. My problem here is, when one target is already occupied by an object i can still drop another object there, which shouldn't. can you please help me fix this?
    thanks in advance!
    Sincerely.
    Milo
    Here's my code:
    var startX: Number;
    var startY: Number;
    var correct: Number = 0;
    var attempt: Number = 0;
    var currentlyDragged:MovieClip;
    // collection of objects stored in array
    // so that you can reference them programmatically
    var objects:Array = [at1, in1, in2, in3, in4, in5, in6, in7, in8, on1, on2];
    activateObjects();
    // assigns listeners and other functionality to the objects in objects array
    function activateObjects():void {
         for each(var mc:MovieClip in objects) {
              mc.addEventListener(MouseEvent.MOUSE_DOWN, pickObject);
              mc.buttonMode = true;
              // assign drop targets based on names
              switch(String(mc.name).substring(0, 2)) {
                   case "at":
                        mc.dropTargets = [targetAT1];
                   break;
                   case "in":
                        mc.dropTargets = [targetIN1, targetIN2, targetIN3, targetIN4, targetIN5, targetIN6, targetIN7, targetIN8];
                   break;
                   case "on":
                        mc.dropTargets = [targetON1, targetON2];
                   break;
    function pickObject(e:MouseEvent):void {
         currentlyDragged = MovieClip(e.currentTarget);
         currentlyDragged.startDrag();
         startX = currentlyDragged.x;
         startY = currentlyDragged.y;
         stage.addEventListener(MouseEvent.MOUSE_UP, dropObject);
    function dropObject(e:MouseEvent):void {
         stage.removeEventListener(MouseEvent.MOUSE_UP, dropObject);
         stopDrag();
         var droppedOn:MovieClip;
         if (currentlyDragged.dropTarget) {
              // loop through targets belonging to the currently dragged clip
              for each(var mc:MovieClip in currentlyDragged.dropTargets) {
                   if (currentlyDragged.hitTestObject(mc)) {
                        // get the target
                        droppedOn = mc;
                        currentlyDragged.removeEventListener(MouseEvent.MOUSE_DOWN, pickObject);
                        currentlyDragged.buttonMode = false;
                        currentlyDragged.x = droppedOn.x;
                        currentlyDragged.y = droppedOn.y;
                        correct++;
                        correctCounter.text = String(correct);
                        // stop loop - it is not necessary to continue
                        break;
         attempt++;
         attemptCounter.text = String(attempt);
         // return to the initial position if there is no hit
         if (!droppedOn) {
            currentlyDragged.x = startX;
            currentlyDragged.y = startY;
         if (correct == objects.length) {
              var congrats:CongratsMC = new CongratsMC();
              // place i in the middle of the screen
              congrats.x = (stage.stageWidth - congrats.width) * .5;
              congrats.y = (stage.stageHeight - congrats.height) * .5;
              addChild(congrats);

    Try the code below.
    Also, use int instead of Number whenever possible - it is smaller and faster.
    import flash.display.MovieClip;
    import flash.display.Sprite;
    var startX:Number;
    var startY:Number;
    var correct:int = 0;
    var attempt:int = 0;
    var currentlyDragged:MovieClip;
    // collection of objects stored in array
    // so that you can reference them programmatically
    var objects:Array = [at1, in1, in2, in3, in4, in5, in6, in7, in8, on1, on2];
    var congrats = new CongratsMC();
    congrats.addEventListener("close", closeCongrats);
    activateObjects();
    // assigns listeners and other functionality to the objects in objects array
    function activateObjects():void {
         for each(var mc:MovieClip in objects) {
              mc.addEventListener(MouseEvent.MOUSE_DOWN, pickObject);
              mc.buttonMode = true;
              // assign drop targets based on names
              switch(String(mc.name).substring(0, 2)) {
                   case "at":
                        mc.dropTargets = [targetAT1];
                   break;
                   case "in":
                        mc.dropTargets = [targetIN1, targetIN2, targetIN3, targetIN4, targetIN5, targetIN6, targetIN7, targetIN8];
                   break;
                   case "on":
                        mc.dropTargets = [targetON1, targetON2];
                   break;
    function pickObject(e:MouseEvent):void {
         currentlyDragged = MovieClip(e.currentTarget);
         currentlyDragged.startDrag();
         startX = currentlyDragged.x;
         startY = currentlyDragged.y;
         stage.addEventListener(MouseEvent.MOUSE_UP, dropObject);
    function dropObject(e:MouseEvent):void {
         stage.removeEventListener(MouseEvent.MOUSE_UP, dropObject);
         stopDrag();
         var droppedOn:MovieClip;
         correctCounter.text = String(correct);
         if (currentlyDragged.dropTarget) {
              // loop through targets belonging to the currently dragged clip
              for each(var mc:MovieClip in currentlyDragged.dropTargets) {
                   if (currentlyDragged.hitTestObject(mc)&& mc.notUsed) {
                        // get the target
                        droppedOn = mc;
                        mc.notUsed = false;
                        currentlyDragged.removeEventListener(MouseEvent.MOUSE_DOWN, pickObject);
                        currentlyDragged.buttonMode = false;
                        currentlyDragged.x = droppedOn.x;
                        currentlyDragged.y = droppedOn.y;
                        correct++;
                        correctCounter.text = String(correct);
                        removeTarget(droppedOn);
                        // stop loop - it is not necessary to continue
                        break;
         attempt++;
         attemptCounter.text = String(attempt);
         // return to the initial position if there is no hit
         if (!droppedOn) {
            currentlyDragged.x = startX;
            currentlyDragged.y = startY;
         if (correct == objects.length) {
              // place i in the middle of the screen
              congrats.x = (stage.stageWidth - congrats.width) * .5;
              congrats.y = (stage.stageHeight - congrats.height) * .5;
              addChild(congrats);
    function removeTarget(target:Sprite):void {
         var i:int = 0;
         for each(var mc:MovieClip in objects) {
              for (i = 0; i < mc.dropTargets.length; i++) {
                   if (mc.dropTargets[i] == target) {
                        mc.dropTargets.splice(i, 1);
    function closeCongrats(e:Event):void {
         removeChild(congrats);

  • This apple id cannot be used for the itunes store. please enter another apple id. How do I fix this?

    How do i fix this?

    Reports are that this is a problem with the iTunes Store that they're working on. Some people have had success after signing out of their account and back in. If that doesn't work for you, wait a few hours or perhaps until tomorrow and by then they may have the problem sorted out.
    Regards.

  • In System Preferences, I can't log into iCloud.  It tells me that either my AppleID or my password is wrong -- which it isn't.  My MBP also won't let me update apps OR purchase apps -- same deal..tells me wrong ID or password. Yet I can manage acct. Help!

    It's very frustrating....  I've uploaded all of my music to iMatch and I can get it all on my iPhone, but now on my MBP, it's all back on my computer and I'm unable to sync my phone with my computer (in iTunes, I get the rainbow wheel of death and have to force quit) with the cable for the inital set up (just got the phone) so that I can then do it with wifi in the future.  ARGH!  I've spent hours for the last 2 evenings with a great Apple Tech, but she hasn't been able to figure it out either -- said that she had another customer with the same problem....

    She was as frustrated as I and was going to kick the problem "upstairs."  She felt that by now iCloud had been out long enough for them to have resolved the issues without having to resort to fixes from the outside (so in essence, I would have to say that she agrees with you that they should be able to provide a resolution for their own software).
    I have more than just that issue on my MBP (iPhoto keeps asking me to "upgrade" everytime I open it, old Safari windows open when I restart or turn the machine on from a shutdown....I think it's possessed.  I'm able to do everything that I want to do, but it's very annoying....) and so I'll be working with her again when she returns to work on Monday.  I do have to say that she doesn't rush and has spent at a minimum 2 hours each night for the last 2 nights with me over the phone (talk about califlower ear!) 
    She had me do a reinstall of Lion last night and as far as I can tell, it fixed nothing....  

  • HT1222 I have a new pc with windows 7 and cn no loner connect myniphone or iPad says cannot be used because the required software is not installed run the iTunes installer to remove iTunes then install the 64 bit version ofnitunes where do I find that lin

    How do I upgrade my iPhone 4s and mybipad to the windows 7 64 bit version of iTunes

    Let's try a standalone Apple Mobile Device Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of why it's not installing under normal conditions.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleMobileDeviceSupport.msi (or AppleMobileDeviceSupport64.msi) to do a standalone AMDS install.
    (If it offers you the choice to remove or repair, choose "Remove", and if the uninstall goes through successfully, see if you can reinstall by doubleclicking the AppleMobileDeviceSupport.msi again.)
    Does it install (or uninstall and then reinstall) properly for you? If so, can you get a normal iTunes install to go through properly now?
    If instead you get an error message during the install (or uninstall), let us know what it says. (Precise text, please.)

  • Every time I close a window my app tabs disappear. The requested solutions haven't worked. I haven't updated FF recently and this problem only just started today for no apparent reason. What's wrong? How do I fix this?

    Starting today my app tabs started closing when I closed my browser. I have tried the suggested solutions but they haven't worked. I haven't updated FF recently. I do have to close my browser frequently because the internet service my family has is of low quality and constantly looses service. Every time it gets service again it asks you to close your browser and start again. App tabs help me keep my sessions when this happens.
    PS I recently got a virus that infected my Window's Updater, so I can no longer shut down my computer unless I want it to infect my computer. Please find a solution that does not involve shutting down my computer.
    PSS I am currently running Fire Fox 5.0 on Window's 7, if that helps.

    It turns out that my hard drive was shot. I took my MacBook to the Apple Store on Wednesday, they kept it for analysis and repair. They replaced the hard drive, and I've already got it back (Friday; less than two days in total).
    Although I did check my hard disk with the disk utility, it did not identify the problem.
    Some other troubleshooting advice that I overlooked was to try reinstalling my OS and to try starting up in Safe Mode. Neither would have helped in this case, but they may be useful for someone else having similar problems.
    Other advice - always make sure your data is backed up and that you Apple Care coverage is up to date.

Maybe you are looking for

  • Read  in loop

    Hi all ,       I have one internal table itab1 as mblnr    zeile   vgbel   lifnr 11     1     z           08 11     2     z           77 11     3     z           76 11     4     z           75 11     5     z           08 12        1     z           7

  • Group by in BEx query designer

    Hello experts, I'm new in BEx query designer and I'm currently working on displaying the maximum of a list of values and group them by calendar day like the exemple below: CalendarDay Client Amount 02.09.2014 A 3000 02.09.2014 B 2000 03.09.2014 A 150

  • Time Capsule won't connect to internet, Airport Utility

    Tonight we lost power, and ever since our Time Capsule been out of commission.  The cable modem is working when I directly connect it to my computer via the ethernet cable.  I've unplugged the Time Capsule several times.  When I plug it back in the a

  • HTTP Receiver Adapter - HTTP client code 110 reason error when sending

    Hi, I am getting the following error when using the HTTP adapter as a receiver to perform an HTTP Post in a destination system : <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> - <!--  Call Adapter   --> - <SAP:Error xmlns:SAP="http://sap.co

  • Nokia 500 Security code error

    Yesterday I switched on my Nokia 500 with pin code and security code with out any trouble,but after few minutes  it restarted and security code is not accepted, ,I can answer the incoming calls, but i cant connect it to nokia suit help me with this ,