Please solve this problem for me.

I can not get it up in the game's "Your Purchase Could Not Be Completed. For assistance, contact iTunes Support at www.apple.com / support / itunes / ww. Please solve this problem for me.

Maybe you should try following the directions in the message... http://www.apple.com/support/itunes/ww

Similar Messages

  • Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Reboot the machine holding Command and r keys down, you'll boot into Lion Recovery Partition
    In there will be Disk Utility, use that to select your Lion OS X Partition and Repair Permissions.
    After that is done reboot the machine and see if you can log in.
    If not repeat the above steps to get into Lion Recovery, get online and reinstall Lion again, it will overwrite the installed version and hopefully after that it wil work.
    Reboot and try again.
    If not follow my steps to create a Snow Leopard Data Recovery drive, then option boot from it and grab a copy of your files off the machine.
    Then reinstall all your programs onto the external drive like setting up a new machine, then use Disk Utility to erase the entire internal boot drive (select the drive media on the far left, not the partiton slightly indented) format Option: GUID , 1 partition OS X Extended and then use Carbon Copy Cloner to clone the external to the newly formatted internal drive. Once that is finished reboot and disconnect the external drive.
    Once you go that, boot into Snow Leopard and update to 10.6.8, use the AppStore and option click on Purchases and download Lion again and install.
    Lots of work, but there is no Lion disks.
    https://discussions.apple.com/message/16276201#16276201

  • I will personally donate to whoever solves this problem for me

    Long story short, I like many of the others have a shot Iphone 5 now due to the 7.1 upgrade.
    My wifi is so weak that it will only  pick up signals if I literally lay it on top fo the router. The back of the device heats up and my battery is draining like crazy. This is completely insane.
    I have tried every single trick in the book short of throwing it out the window. Restart, and turn wifi on/off and backup and restore from itunes on mutliplel computers and over the icloud and hard reset and soft reset and petting it and pleading with it to please work. This is very very frustrating. Unfortunately I'm located in Kurdistan right now on business so lack of an iStore isn't helping either.
    Again its an unlocked GSM Iphone. My only option is downgrading. While I have downloaded previous firmware, unfortunately itunes gives me an error when trying to downgrade (shift and then choose the firmware). Yes I have tried going to host file to delete the apple link, no I'am unable to find the apple link on MULTIPLE devices.
    Please someone help me because Apple is not doing anything about this apparently. I will personally donate to whoever helps me solve this, I'm guessing if I can successfully downgrade back to 7.04 or 7.06 that'd be my best bet (I have the firmware ready, just Itunes not allowing me).
    Thanks in advance

    I had the battery problem and it was due to a software glitch (which might also effect the WiFi). This is what I did to fix the battery problem:
    Turn off both location services and background app refresh, let the battery completely discharge to the point where the phone turns itself off. Recharge the battery completely, then turn both location services and background app refresh back on.
    I think the battery discharging to the point where the phone shuts down resets some aspects of the phone. It couldn't hurt to try.

  • IOS 7.0.3 in Apple note app there are not any next option to switch one note to other! Why?please solve this problem.

    Please solve it with new update

    Oh, also want to add that the PC I'm currently using is:
    Windows Vista Home Premium Service Pack 2
    My other PC was:
    Windows 7 Ultimate
    My MacBook is:
    Max OSX 10.5.something (the last update available for it. .8 maybe? haha)
    Not sure if this stuff is important, but I thought I'd add it.

  • Please solve this error for me

    This program gives an error as follows
    <---------------------------------------------------------------------->
    H:\Semester1\Java\Assignment 5\RandomLetterApplet.java:96: cannot resolve symbol
    symbol : method toString (char)
    location: class java.lang.Character
                   g2.drawString(Character.toString(ch), xPos, yPos);
    ^
    1 error
    Tool completed with exit code 1
    <---------------------------------------------------------------------->
    Here is the program
    <---------------------------------------------------------------------->
    import java.applet.Applet;
    import java.awt.Color;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.util.Random;
    import java.awt.Font;
    import java.lang.Character;
    An applet that draws 100 letters randomly from A to Z of random fonts and sizes.
    public class RandomLetterApplet extends Applet
         private Random generator;
         private char ch;
         private float red;
         private float green;
         private float blue;
    private Color fontColor;
         private int fontSize;
         private int xPos;
         private int yPos;
         private Font font;
         private final int ASCII_VALUE_OF_A = 65;
         private final int ASCII_VALUE_OF_Z = 90;
         private final int APPLET_WIDTH = 500;
         private final int APPLET_HEIGHT = 500;
         private final int MIN_X = 0;
         private final int MIN_Y = 0;
         private final int MIN_FONT_SIZE = 8;
         private final int MAX_FONT_SIZE = 48;
         public RandomLetterApplet()
              // Constructs a random object
              generator = new Random();
         public void paint(Graphics g)
              Graphics2D g2 = (Graphics2D)g;
              for (int i = 1; i <= 100; i++)
                   generates aninteger between 65 and 90 and then converts it
                   to corresponding alphabet
                   ch = (char)((int)(generator.nextDouble() * (ASCII_VALUE_OF_Z - ASCII_VALUE_OF_A)
                   + ASCII_VALUE_OF_A));
                   // Generates a random value between [0.0f, 1.0f)
                   red = generator.nextFloat();
                   green = generator.nextFloat();
                   blue = generator.nextFloat();
                   // Constructs a new color
                   fontColor = new Color(red, green, blue);
                   // Sets the color produced above as the foreground color
                   g2.setColor(fontColor);
                   // Generates a random font size between 8 and 48
                   fontSize = (int)(generator.nextDouble() * (MAX_FONT_SIZE - MIN_FONT_SIZE) + MIN_FONT_SIZE);
                   // Creates a new font
                   font = new Font("Seriff", Font.BOLD, fontSize);
                   g2.setFont(font);
                   // Generates a random position along x-axis
                   xPos = (int)(generator.nextDouble() * (APPLET_WIDTH - MIN_X) + MIN_X);
                   // Generates a random position along y-axis
                   yPos = (int)(generator.nextDouble() * (APPLET_HEIGHT - MIN_Y) + MIN_Y);
                   g2.drawString(Character.toString(ch), xPos, yPos);

    Well, after looking at the text your compiler so helpfully gave you:
    symbol : method toString (char)
    location: class java.lang.Character
    g2.drawString(Character.toString(ch), xPos, yPos);And consulting the API docs (which I Strongly Suggest you read) for the java.lang.Character class (a clue I found in the above text) I see absolutely no static method called "toString" that takes a char. Thus, it is my esteemed opinion, that there is no static method with a signature of toString(char) in the Character class, and your attempt to use it on line 96 of your RandomLetterApplet.java file is causing this error.
    Is that solved?
    Lee

  • I had purchased iPhone 5s from UAE and now i am at india but FaceTime is not working on my phone.can u please solve this problem ?

    i had purchased iphone 5s drom Dubai while comming back to india, but after comming back to india when i activated my phone then i noticed that there is no face time in it .can any one help me out with it ..?

    Correct, there is no way to have FaceTime on a model purchased in a region where FaceTime is banned.

  • My gmail mails are not being showed by apple mail icon. Please solve this problem as soon as possible.

    I have added my gmail account in apple but i am not being notified after making all setting in notification centre.

    You have to go to autherized iPhone agent.

  • Few days before I brought one iphone 5 by second party and this phone make a unlock but it sometime have a cellular network most of time say no service can u solve this problem please and I put serial number it say this phone is replace can u help me for

    Few days before I brought one iphone 5 by second party and this phone make a unlock but it sometime have a cellular network most of time say no service can u solve this problem please and I put serial number it say this phone is replace can u help me for original serial number....

    If Apple's service database says that your iPhone was replaced, then Apple will no longer provide any service for that phone.
    First, get a new SIM from your cell carrier and see if that corrects the problem. If it does not, try the usual steps for addressing software problems: restart, reset, restore.
    http://support.apple.com/kb/HT1430
    http://support.apple.com/kb/HT1414
    If you try restoring from a backup and that doesn't fix the problem, try restoring to factory settings and, if the problem goes away, then sync back your apps and content. You'll lose the app data and settings, but if the problem is due to a corrupt cache or settings file, restoring to factory settings should cure it.
    If none of that helps, your device may have developed a hardware fault. Again, Apple will provide no service for it, so you will need to pay some independent repair shop to fix your iPhone.
    Regards.

  • HT1349 The nice man Joseph Shen helped me with my google problem on my iPhone and worked for 2 days and now not working again please help me solve this problem were I can retrieve my messages on the I phone when I am not at home  on my wi Fi is the only t

    The nice man Joseph Shen helped me with my google problem on my iPhone and worked for 2 days and now not working again please help me solve this problem were I can retrieve my messages on the I phone when I am not at home  on my wi Fi is the only time it works correct. Bill. [email protected]  708 752  3667 

    http://lifehacker.com/5852948/what-to-do-if-youve-forgotten-your-iphones-passcod e

  • Hello Sorry for the inconvenience, but I have a problem in Java I can not open files, audio chat, which type of jnlp after the last update of the Java 2012-004 Please help me in solving this problem.

    Hello Sorry for the inconvenience, but I have a problem in Java I can not open files, audio chat, which type of jnlp after the last update of the Java 2012-004
    Please help me in solving this problem. 

    Make sure Java is enable in your browser's security settings.
    Open Java Preferences (in Utilities folder)
    Make sure Web-start applications are enabled.
    Drag Java 32-bit to the top of the list.
    jnlp isn't an audio file format. It's just a java web-start program (Java Network Launching Protocol).

  • When i save any image from any website then there is no option showing in the save as box like saves as .jpg etc. In this case I manually add the extension of image for example .jpg .gif etc. Please solve my problem :(

    When i save any image from any website then there is no option showing in the save as box like saves as .jpg etc. In this case I manually add the extension of image for example .jpg .gif etc. Please solve my problem :(

    I'm guessing your problem is caused by code validation errors: orphaned division tags for example, or mismatched code and document type (i.e.  XHTML /> mixed with HTML > style closures).
    Start by using the code validation tools below and fix any reported.  You'll need an Internet connection for this:
    HTML Validator - http://validator.w3.org 
    CSS Validator - http://jigsaw.w3.org/css-validator/  
    HTML & CSS Tutorials - http://w3schools.com/
    If this doesn't solve the problem, you will need to post a URL to your live page so we can see your code and images working together.   Or at the very least copy and paste your HTML and CSS code into a reply using double arrows >> Syntax Highlighting > Plain.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • TS2972 when i ask for Authorizeed computer i got the message " make sure your computer' date is set correctly and that it accepts cookies from the itunes stores " how can i solve this problem please .

    when i ask for Authorizeed computer i got the message " make sure your computer' date is set correctly and that it accepts cookies from the itunes stores " how can i solve this problem please .

    Ok, so I just worked out that itunes communicates through your browser so it's a cookie in the browser not PC direct that fixes this.  Bit of a convoluted route but for me it was IE>Internet setting>privacy>sites, then allow all activity from apple.com/itunes.

  • HT5622 my apple id is not working when i sign in from my laptop it works but when i sign in from my iphone4 then its not working it gives the message of "your aapleid or password is incorrect"? how can i solve this problem please help

    my apple id is not working when i sign in from my laptop it works but when i sign in from my iphone4 then its not working it gives the message of "your aapleid or password is incorrect"? how can i solve this problem please help

    Hey nocillado,
    Thanks for using Apple Support Communities.
    It sounds like you have 2 things you want to address. These articles can help you use iCloud with your existing Apple ID.
    Get help activating your iPhone
    http://support.apple.com/kb/ts3424
    Using your Apple ID for Apple services
    http://support.apple.com/kb/ht4895
    Using the same Apple ID for Store purchases and iCloud (recommended)
    Have a nice day,
    Mario

  • Hello Experts Please help me to solve this problem.

    Hello Experts,
    I am getting a problem while installing the SOLUTION MANAGER 4.0.
    in step 17/45 IMPORT ABAP :
    the problem is :
    ERROR 2008-04-29 03:10:28.110
    CJS-30023  Process call '/usr/sap/SLM/SYS/exe/run/R3load -testconnect' exits with error code 2. For details see log file(s) R3load.exe.log.
    when i saw R3load.exe.log file it has the following contain :
    sapparam: sapargv( argc, argv) has not been called.
    sapparam(1c): No Profile used.
    sapparam: SAPSYSTEMNAME neither in Profile nor in Commandline
    /usr/sap/SLM/SYS/exe/run/R3load: START OF LOG: 20080428095833
    /usr/sap/SLM/SYS/exe/run/R3load: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#13 $ SAP
    /usr/sap/SLM/SYS/exe/run/R3load: version R7.00/V1.4 [UNICODE]
    Compiled Jul 14 2007 02:19:03
    /usr/sap/SLM/SYS/exe/run/R3load -testconnect
    DbSl Trace: OCI-call 'OCIServerAttach' failed with rc=12505
    DbSl Trace: CONNECT failed with sql error '12505'
    DbSl Trace: OCI-call 'OCIServerAttach' failed with rc=12505
    DbSl Trace: CONNECT failed with sql error '12505'
    (DB) ERROR: db_connect rc = 256
    DbSl Trace: OCI-call 'OCIServerAttach' failed with rc=12505
    DbSl Trace: CONNECT failed with sql error '12505'
    DbSl Trace: OCI-call 'OCIServerAttach' failed with rc=12505
    DbSl Trace: CONNECT failed with sql error '12505'
    (DB) ERROR: DbSlErrorMsg rc = 99
    /usr/sap/SLM/SYS/exe/run/R3load: job finished with 1 error(s)
    /usr/sap/SLM/SYS/exe/run/R3load: END OF LOG: 20080428095834
    Please can any body help me to solve this problem.
    waiting for fast response, as my installtion is pending due to this problem.
    have a nice day.
    Regards,
    Shivendra.

    Hi,
    The following should be verified:
    (1) check what DB instances the listener currently is aware of.  This can be done with the command 'lsnrctl services'.
    (in case you listener does not have the default name LISTENER, then use 'lsnrctl services <listener name>' )
    (2) Perhaps there is an issue with the dynamic instance registration, even though the error code is different, you should nevertheless check the points from note #563574.
    (3) Verfiy the value of the parameter local_listener (see mentioned note). Since you have changed the listener, the parameter might still be wrong.
    In case local_listener is correcly set you should give the command
      ALTER SYSTEM REGISTER;
    a try.
    Best Regards,
    Michael

  • I have a problem in my iphone 4 with wi-fi after update to IOS6 please can help my how can solve this problem?

    I have a problem in my iphone 4 with wi-fi after update to IOS6 please can help my how can solve this problem?

    Nope
    One needs to press the home and sleep / wake keys together for the phone to reset
    The other thing I could recommend
    Let the battery run out and the phone completely "die"
    It may take a day or two with it not being used
    Then plug it in to charge and see if there is any change in behavior
    If you cannot get this to work - you may need to bring it to an Apple store

Maybe you are looking for