When I am downloading a free application (foursquare) in the App Store, it came up with a message saying Verification Required which means I need to pay for it. Can anyone tell me how to fix this problem?

I am currently using iPhone 3GS and when I am going to download foursquare which is a FREE application in the App Store, it came up with a message saying Verification Required which means I need to pay for it. Can anyone tell me how to solve the problem? For further informations, I am currently using Windows running Vista. Special thanks to those who replied.

Your iTunes account sounds like it does not have a credit card or payment attached to it. Even free apps require that you have entered payment information even though you won't be charged for the app.

Similar Messages

  • I have recently bought an Iphone 4s but since i've had it, it has been saying 'no service'. can anyone tell me how to fix this problem?

    Can someone please help me to fix this?
    Since the very first day i had the phone it has been saying 'no service'.
    when i turn it on it says 'searching' for at least 1 minute but after it says 'No Service' I dont know what to do as with previous Iphones i have never came accross this problem.
    would be great if someone could give me information on how to fix this.
    Thanks

    what did you phone carrier say when you contacted them about your cellular data issue?

  • Rss it it's does nothing can anyone tell me how to fix this problem it's really starting to get annoying

    problem it's really starting to get annoying

    Your iTunes account sounds like it does not have a credit card or payment attached to it. Even free apps require that you have entered payment information even though you won't be charged for the app.

  • I installed mackeeper and used its Cleaning feature, and ever since then my macbook has been restarting on its own. Can anyone tell me how to fix this problem.

    Hi,
    I installed mackeeper four days ago, and I used the cleaning feature. Ever since, my macbook pro has been restarting on its own. I was wondering if their was a way to fix the problem that it caused and remove it safely.

    https://discussions.apple.com/docs/DOC-3036

  • My iphone 3g is not recognized by my computer or itunes, can anyone tell me how to fix this problem?

    I can't figure this thing out for the life of me.

    We could try, but if it's jailbroken all bets are off. The number of possibilities is endless. One of these may help:
    http://support.apple.com/kb/TS1538
    http://support.apple.com/kb/TS1591
    http://support.apple.com/kb/HT1808
    http://support.apple.com/kb/HT3743

  • Hello I have encounted a problem with Photoshop. Normally when you start a new documant, you are given the options to have A4, A3, ect page set ups. These inbuilt page set ups seem to have disapeared, does anyone please know how to fix this? Many thanks

    Hello I have encounted a problem with Photoshop. Normally when you start a new documant, you are given the options to have A4, A3, ect page set ups. These inbuilt page set ups seem to have disapeared, does anyone please know how to fix this? Many thanks Ben  [email protected]

    Hello Trevor
    Thanks for your message. You can custom set pages but there are no preset of page sizes like A4, A3, ect. I cannot click the size preference, nothing comes up
    Ben

  • When I open iCal, I get the message 'The file name is invalid.' Can anyone tell me how to fix this?

    When I open iCal, I get the message 'The file name is invalid.' Can anyone tell me how to fix this?

    These latest Flash is corrupted.  Adobe has acknowleged the problem.  The following Adobe Forum message may be of help to you:
    http://forums.adobe.com/message/6288150

  • My ipad is no longer syncing automatically when I connect to my macbook pro.  Can anyone tell me how to fix this?

    I've had an ipad since late December 2010.
    In the past, it has always automatically synced when I connect it to my macbook pro.
    Now, when i connect it...nothing happens.
    Can anyone tell me how to fix this?

    The first thing to do is to launch iTunes on your Mac. Go to Preferences - under the iTunes heading in the menu at the top. Click on Devices. Make sure that you uncheck the box next to - Prevent iPods, iPhones and iPads from syncing automatically. Quit iTunes and restart your Mac.
    Connect your iPad to the Mac and launch iTunes. Select your iPad under the Devices heading on the left side of iTunes. Then click on the Summary Tab at the top right side of the iTunes window. Put a checkmark (select) in the box next to  - Open iTunes when this iPad is Connected. Make sure that all of the other boxes are checked as you desire according to what you want to sync. Click - Apply - in the lower right corner to sync.
    Disconnect your iPad after syncing. Quit iTunes. Then connect your iPad again and iTunes should launch and sync automatically.

  • I deleted my back up files from my external hard drive and my trash won't empty. I get an error code -22. Can anyone tell me how to fix this?

    I deleted my back up files from my external hard drive and my trash won't empty. I get an error code -22. Can anyone tell me how to fix this?

    JLCruz wrote:
    I deleted my back up files from my external hard drive ...
    If this is related to Time Machine Backups...
    See here  >  Should I delete old backups?  If so, How?
    From Here  >  http://pondini.org/TM/FAQ.html
    If the TRASH still won’t Empty...
    See Here  >  http://pondini.org/TM/E6.html

  • I've used Firefox for years. 2 days ago it wouldn't open. I uninstalled it using Revo uninstaller and put it back. Its still the same. Can anyone tell me how 2 fix this or change my mail settings for I Explorer. thx

    and now it just wont open can anyone tell me how 2 change my mail going 2 firefox and start going 2 i explorer please

    For gmail there are no settings to change, you can access gmail from any browser just by going to the gmail site and logging in.
    The [[Firefox will not start]] article should help with the problem you are having with Firefox.

  • Can Anyone Tell Me How To Fix This?

    Hi everyone, can anyone tell me what this error means:
    Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException
    at Quiz.main(Quiz.java:22)
    I got this error when I tried to run a quiz program, I downloaded it from the internet to see how it worked but I am now unable to run it, here is the code:
    import java.io.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.util.Vector;
    import java.awt.*;
    public class Quiz
    JButton answer1;
    JButton answer2;
    JButton answer3;
    JButton answer4;
    int numberCorrect = 0;
    int numberIncorrect = 0;
    int totalNumber = 0;
    public static void main(String[] args)
    JFrame frame = new JFrame("Spanish Quiz");
    frame.getContentPane().add(new Quiz().create(args[0])); //I think error is here
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    frame.pack();
    frame.setVisible(true);
    public Component create(String fileName)
    JPanel pane = new JPanel();
    try
    BufferedReader in = new BufferedReader(new
    FileReader(fileName));
    boolean moreLines = true;
    Vector lines = new Vector();
    while (moreLines == true)
    String currentLine = in.readLine();
    if (currentLine == null)
    moreLines = false;
    break;
    lines.addElement(currentLine);
    for (int i = 0; i < lines.size() / 6; i = i + 6)
    JLabel question = new JLabel((String)
    lines.elementAt(i));
    answer1 = new QuizButton (this, (String)
    lines.elementAt(i + 1));
    answer2 = new QuizButton (this, (String)
    lines.elementAt(i + 2));
    answer3 = new QuizButton (this, (String)
    lines.elementAt(i + 3));
    answer4 = new QuizButton (this, (String)
    lines.elementAt(i + 4));
    pane.setLayout(new GridLayout(5,1));
    pane.add(question);
    pane.add(answer1);
    pane.add(answer2);
    pane.add(answer3);
    pane.add(answer4);
    catch (Exception e)
    return pane;
    class QuizButton extends JButton implements ActionListener
    JButton button;
    String button_text;
    Quiz m_quiz;
    QuizButton (Quiz quiz, String text)
    button_text = text;
    m_quiz = quiz;
    button = new JButton (button_text.substring(1));
    public void actionPerformed(ActionEvent e)
    JButton button = (JButton) e.getSource();
    if (button_text.charAt (0) == '*') {
    JOptionPane.showMessageDialog(null, "Correct");
    m_quiz.numberCorrect ++;
    m_quiz.totalNumber ++;
    else
    JOptionPane.showMessageDialog(null, "Incorrect");
    m_quiz.numberIncorrect ++;
    m_quiz.totalNumber ++;
    button.removeActionListener (this);
    I think that It expects a command line parameter - a file name to be more exact but I do not know what - Can anyone please tell me
    Thanks everyone

    HI
    The problem lies with the command line argument.Your program uses command line arguments( args[0] ), provide some arguments to it.
    Secondly ArrayIndexOutOfBoundsException occurs if you are trying to access an element of array which does not exist i.e
    if you have an array of say 5 elements i.e arr[5]
    and you are trying to access 6th element which does not exist as your array contains only 5 elements.Try to check the size of array which you are using in the code.
    Deepak
    [email protected]

  • I updated adobe flash and now all it does is crash can anyone tell me how to fix this?

    I update adobe flash and now when i play games the adobe flash crashes does anyone know how to fix this problem

    These latest Flash is corrupted.  Adobe has acknowleged the problem.  The following Adobe Forum message may be of help to you:
    http://forums.adobe.com/message/6288150

  • HT4623 my daughter was trying to do an ios update on her new ipad mini it now says to plug into itunes she does not have a seperate computer for that, the reason for the ipad can anyone tell me how to fix this or how to reset the ipad

    tried to do an ios update the ipad mini is now asking to plug into itunes, have now seperate computer to do this can not get any other screen to come up on ipad can the  ipad be reset or how do I fix this

    If it's showing the connect to iTunes screen then it sounds like it's gone into recovery mode and will need to be connected to a computer's iTunes in order to be reset. Does neither she nor you have a computer, and if she hasn't has she been backing up to the cloud instead ?
    Depending upon what country that you are in, and whether content is still in the store, she might be able to re-download some/all of her downloads via the Purchased tabs in the App Store and iTunes store apps

  • Can anyone tell me how to solve this problem I have just come across today when trying to add a contact on my Blackberry Pearl 9105...

    I tried adding a number to my phonebook this morning and my phone froze, I had to take the battery out to unfreeze it
    and when I retried it came up with an error message but I can't remember what exactly it said.
    I have since noticed that I cannot even edit current contacts in my phonebook
    Pllllleeeeease can someone help me????
    Thanks
    Debi
    Solved!
    Go to Solution.

    Hello,
    The exact and complete error message is critical to helping you...there are something like 10,000 possibilities, it'll be so much faster if you provide the exact and complete error message. If you can re-create it, then do so and provide that message.
    Thanks.
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Can anyone tell me how to fix this in lay-man's terms?

    Hi.  I've installed and uninstalled the flashplayer on both the 32 bit and 64 bit Internet Explorer versions I have.  You tube and all things that play youtube videos will not work.  I click on a video and get a black screen and when I right click it says the video isn't running.
    I don't really understand what others have posted because I'm not really technically saavy.  Can anyone please help me fix this?
    Thanks.

    Hi, Can you tell me what Operating System you are using? XP, Vista or Win7? Also what version of IE(Internet Explorer) do you have? If you don't know for sure, go up to Help, open it and click on About Internet Explorer. It should tell you there.
    Then go to the Adobe test site with the IE browser and let me know if you can see the Flash Player logo(Red F) animate(spin)
    Also what version of Flash Player is shown as Installed?
    Test site:  http://www.adobe.com/software/flash/about/
    There may be a couple of other things to check, but that will depend on that test.
    If you have any other browsers Installed, then test with each one in addition to IE.
    Thanks,
    eidnolb

Maybe you are looking for

  • Save as dialog box hides behind the dock

    Ever since upgrading to Yosemite, the 'save as' dialog box will partly hide behind the dock. I can't see the 'save' nor the 'cancel' button. Now I don't want the dock to auto hide, nor do I want to make it so small I can hardly see the icons, because

  • OSB doesn't work with DMZ zone

    Hello all, I have a configured DMZ zone at our network infra. But after our web service doesn't work. We have a two ip address, which are public (x.x.x.x) and osb (y.y.y.y). This is my hosts config: 127.0.0.1 localhost.localdomain localhost y.y.y.y  

  • SQL- Getting Subtotal From a Query

    Hi, I need to run a query where I can get a subtotal for each items in a table.  The query should produce something like: 3 apple 4 grape 1 orange I did a SUM and COUNT function but, I get the total records (8) in the table instead of the subtotals.

  • Log file consumed all drive space; will not commit after adding space

    SQL 2008 - Have a drive that is 250GB that holds both the database and log files for a given database; nothing else is on the drive.  The database file is ~2GB in size and the log file is ~248GB, filling up the entire drive.  I have had issues in the

  • The "open with..." menu in Mail is not alphabetical. How do I fix it?

    The "open with..." menu in Mail is not alphabetical. How do I fix it?