I'm having trouble with my payment method payment type it's not accepting any of my cards

Payment method/payment type will not accept any of my cards for payment it's saying my security codes are wrong there are available funds on both card

You have exactly the same name and address on your iTunes account that the cards are registered to : http://support.apple.com/kb/TS1646 ?
And when you say that there are available funds on the cards, do you mean that they are debit cards ? If they are then I don't think that they are still accepted as a valid payment method in all countries - from this page :
You may be able to use other payment types in your country, like debit and Maestro cards
which implies that they are not accepted in all countries, and there have been a number of posts about them being declined.

Similar Messages

  • Hi, i am having trouble with my mac mail account, i cannot send or receive any emails because of the server connection problems. Message says it could not be connected to SMTP server. Thanks in advance for your help.

    Hi, i am having trouble with my mac mail account, i cannot send or receive any emails because of the server connection problems. Message says it could not be connected to SMTP server. Thanks in advance for your help.

    Hello Sue,
    I have an iPad 3, iPad Mini and iPhone 5S and they are all sluggish on capitalisation using shift keys. I hope that Apple will solve the problem because it is driving me crazy.
    I find using a Microsoft Surface and Windows 8 phone, which I also have, work as well as all the ios devices before the ios 7 upgrade.
    It has something to do with the length of time that you need to hold the shift key down. The shift key needs to be held longer than the letter key for the capitalisation to work. For some reason, this is a major change in the way we have learnt to touch type on computers. I am having to relearn how to type!
    Michael

  • I am having trouble with the Jpeg icons and also now thumbnails not being visable in bith teh Apple finder and now also Adobe Bridge. Can anyone shed any light on this ?

    I am having trouble with the Jpeg icons and also now thumbnails not being visable in bith teh Apple finder and now also Adobe Bridge. Can anyone shed any light on this ?

    Argh - once again, I find my solution right after posting this. Left out one modification to the SWIG script, now it runs in 29 seconds vs C 16 seconds, I can live with that.

  • I'm having trouble with using Calculated-User Can Override, it will not honor my overide

    I'm having trouble with using Calculated-User Can Override, it will not honor my overide.  I'm using LiveCycle Designer ES v.8.2

    Reset the device:
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    If that doesn't help, tap Settings > General > Reset > Reset All Settings
    No data is lost due to a reset.

  • HT4623 Anyone having trouble with App Store install and cloud store buttons not working after 6.1 update?

    Anyone having trouble with App Store install and cloud store buttons not working after 6.1 update? I go to install an app. I hit install and nothing happens. About a minute later it asks me for my password and then it does nothing. The install button goes back to saying install. However the app shows up in my installed list and in cloud but no app installed.

    OK - I found a helpful post - closed app store app and under Settings/General/Date and Time I reset the date and time by switching off "Set Automatically" and then switching it on again. Went back to App Store, launched it and Updatesseems to be working again.
    Go figure? Logical, No!

  • I'm having trouble with "this" and method dependence

    For my Data Structures course, we have to create a simple Word Processor. The constructor contains two stacks, left and right. The way the class populates the strings is pretty straight forward. Any text to the left of the cursor gets pushed onto the left stack and any text to the right of the cursor gets pushed onto the right stack (in reverse order). For example, the phrase "hello" with the cursor between the l's, would push h, then e, then l onto the left stack. o then l is pushed onto the right stack. Follow me so far?
    Next, we have to implement several methods, such as moveLeft, moveRight, delete, insert, and moveToStart. There is also a toString() method which prints the two stacks as a String. The way I have my toString() method mapped out, is first to call the moveToStart() method. This method then pops all values from the left stack and pushes them onto the right stack (left: empty, right: h-e-l-l-o). So now, I simply pop each value from the right stack and store the values in a char[] array. The array is then returned as a String.
    This data structure converts the stacks to a String fine, the only problem is preserving the original stacks. So I tried to copy the value of "this," which should correlate to the EditableString es2 (declared in main), to a temp EditableString, tempEs. I then call moveToStart on tempEs, and pop values from tempEs.right. This is all in hopes to preserve the original es2. However, as you could see from the output at the bottom is that toString() modifies es2. If it didn't, "Hello, how are you" would have printed twice. Instead, an empty string is printed.
    There is obviously something wrong with my moveToStart(). Any suggestions? I apologize for not providing any comments in the code, it's just that I tried to save space. If any further explanation is necessary, don't hesitate to ask. Thanks.
    public class EditableString {
    private Stack left;
    private Stack right;
    private JavaStack l = new JavaStack();
    private JavaStack r = new JavaStack();
    private char[] text;
    private static String cursor = new String("|");
    private EditableString tempEs;
    private Character characterObject;
    private char test1;
    public EditableString() {
    left = new JavaStack();
    right = new JavaStack();
    public EditableString(String left, String right) {
    new EditableString();
    for (int i=0; i < left.length(); i++) {
    characterObject = new Character(left.charAt(i));
    l.push(characterObject);
    for (int i = right.length(); i > 0; i--) {
    characterObject = new Character(right.charAt(i-1));
    r.push(characterObject);
    this.left = l;
    this.right = r;
    public void moveToStart() {
    while (! this.left.isEmpty())
    this.right.push(this.left.pop());
    public String toString() {
    tempEs = this;
    tempEs.moveToStart();
    text = new char[(tempEs.right).size()];
    for (int i=0; i < text.length; i++)
    text[i] = ((Character) (tempEs.right).pop()).charValue();
    return new String(text);
    public static void main(String args[]) {
    System.out.println("Starting Word processor!");
    System.out.println("----------");
    EditableString es2 = new EditableString("Hello, how", " are you");
    System.out.println("es2: " + es2.toString());
    System.out.println("es2: " + es2.toString());
    /* Output:
    Starting Word processor!
    es2: Hello, how are you
    es2:
    */

    Ok, I tried to create a copy(Es) method and modified the toString() method as follows, but I am having the same problem. Ok, in order to test my methods, I print the various sizes of several stacks. In the toString() method, right after tempEs is declared, this.left=10, this.right=8 and tempEs.left=tempEs.right=0. After the copy method is invoked and assigned to tempEs, this.left=tempEs.left=10 and this.right=tempEs.right=8. Follow me?, this is where I have trouble.
    I try to "pop" one value from tempEs.right to see if the action occurs on tempEs and not this. Well, it does. Right after the pop() method, this.left=tempEs.left=10 and this.right=tempEs.right=7. I need this.right to stay at 8. Why are these Editable Strings dependent?
    And for the record, I'm not trying to "pay" anyone to do my homework. I am simply trying to pass, and in turn, graduate. This is the second time I am taking this course (failed it with style the 1st time) and desperately need to pass. I have VERY little Java background and this class is unfortunately required for my engineering degree. So, I am simply looking for some help with my 30+hour homework assignments.
    public EditableString copy(EditableString ES) {
            EditableString xTemp = new EditableString();
            xTemp.left = ES.left;
            xTemp.right = ES.right;
            return xTemp;
        public String toString() {
            EditableString tempEs = new EditableString();
            tempEs = copy(this);
            tempEs.right.pop();
            tempEs.moveToStart();
            text = new char[(tempEs.right).size()];
            for (int i=0; i < text.length; i++)
                text[i] = ((Character) (tempEs.right).pop()).charValue();
            return new String(text);

  • I am physically disabled and having trouble with the sensitivity of the screen on my iPad mini - any suggestions?

    I am physically disabled and having trouble selecting apps because of the sensitivity of the screen - any suggestions on what to do?

    I would think assistive touch would be exactly what you are looking for.  It's engaged using the Accessibility method I described above.
    Here's the writeup about assistive touch from the iPad User Guide:
    AssistiveTouch AssistiveTouch helps you use iPad if you have difficulty touching the screen or pressing the buttons. You can use a compatible adaptive accessory (such as a joystick) together with AssistiveTouch to control iPad. You can also use AssistiveTouch without an accessory to perform gestures that are difficult for you.
    Turn on AssistiveTouch: Go to Settings > General > Accessibility > AssistiveTouch. To set Triple-click Home to turn AssistiveTouch on or off, go to Settings > General > Accessibility > Triple-click Home.
    Adjust the tracking speed (with accessory attached): Go to Settings > General > Accessibility > AssistiveTouch > Touch speed.
    Show or hide the AssistiveTouch menu: Click the secondary button on your accessory.
    Hide the menu button (with accessory attached): Go to Settings > General > Accessibility >
    AssistiveTouch > Always Show Menu.
    Perform a swipe or drag that uses 2, 3, 4, or 5 fingers: Tap the menu button, tap Gestures, and then tap the number of digits needed for the gesture. When the corresponding circles appear on the screen, flick or drag in the direction required by the gesture. When you finish, tap the menu button.
    Perform a pinch gesture: Tap the menu button, tap Favorites, and then tap Pinch. When the pinch circles appear, touch anywhere on the screen to move the pinch circles, then drag the pinch circles in or out to perform a pinch gesture. When you finish, tap the menu button.
    Create your own gesture: Tap the menu button, tap Favorites, and then tap an empty gesture placeholder. Or, go to Settings > General > Accessibility > AssistiveTouch > Create New Gesture.
    Lock or rotate the screen, adjust iPad volume, or simulate shaking iPad: Tap the menu button, then tap Device.
    Simulate pressing the Home button: Tap the menu button, then tap Home. Move the menu button: Drag it to any location on the screen.
    Exit a menu without performing a gesture: Tap anywhere outside the menu.

  • Having trouble with the renameTo() method in Windows

    Hi all,
    The below code works perfectly well in netbeans but as shown as I try to call it from cmd prompt I get issues.
    The below code is designed to move or delete log files from one area or another.
    now if i try to delete the logs from command prompt I have no problem.
    However when I tried to move the files by doing renameTo() I get a false back. And as this method seems to have no relevant error message, I am at a loss....
    Now I have checked the permissions, this is not a problem (all users can edit the files, if I can't edit them why will let me delete them?), I have checked to make sure no duplicate files exist and they don't. i have also tried to move the files to different locations, same problem. The files are definitely not open.
    I need the below to work on 1.5 due to compatibility issues with other programs.
    Any ideas?
    public class Main {
         * @param args the command line arguments
         * args[0] = Directory where files are to be processed from
         * args[1] = file extension to process
         * args[2] = Number of days to limit on. IE 31 means all files older than 31 days
         * args[3] = location of log file
         * args[4] = del/move. if del, files are deleted. if move, files are moved.
         * args[5] = Location of the new file. only applicable if file is moved.
        public static final String newLine = System.getProperty("line.separator").toString();
        public static void main(String[] args) {
            try {
                File file = new File(args[0]);
                FileNameFilter fileFilter = new FileNameFilter(args[1]);
                int days = Integer.parseInt(args[2]);
                File[] children = file.listFiles(fileFilter);
                // longs required because int overflow limit reached.
                long daysAgoPart1 = 1000 * 60 * 60;
                long daysAgoPart2 = 24 * days;
                long daysAgoPart3 = daysAgoPart1 * daysAgoPart2;
                long daysAgo = new Date().getTime() - (daysAgoPart3);
                // System.out.println(daysAgoPart3);
                // System.out.println(new Date().getTime());
                // System.out.println(daysAgo);
                // System.out.println(new Date().toString());
                Date limitDate = new Date(daysAgo);
                // System.out.println(new Date(new Date().getTime()).toString());
                //  System.out.println(limitDate.toString());
                for (int i = 0; i < children.length; i++) {
                    if (children.lastModified() - limitDate.getTime() < 0) {
    if (args[4].compareTo("del") == 0) {
    printLog("Deleted file: " + children[i].getAbsolutePath(), args[3]);
    children[i].delete();
    } else if (args[4].compareTo("move") == 0){
    String fileName = children[i].getAbsolutePath();
    if (!children[i].canRead()){
    printLog("Can't read: " + fileName, args[3]);
    } else if (!children[i].canWrite()){
    printLog("Can't write: " + fileName, args[3]);
    if( (children[i].renameTo(new File(args[5] + children[i].getName())))){
    printLog("Moved file "+ fileName, args[3]);
    } else {
    printLog("Failed to move file "+ fileName, args[3]);
    } catch (Exception err) {
    printLog(err.toString(), args[3]);
    public static void printLog(String message, String logLoc) {
    try {
    File errLog = new File(logLoc);
    FileWriter errFW = new FileWriter(errLog, true);
    errFW.append(new Date().toString() + " " + message);
    errFW.append(newLine);
    errFW.close();
    } catch (IOException errFWException) {
    }Edited by: enema0007 on Sep 2, 2009 8:27 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    right I think I have worked out what I am doing wrong I think.....
    I am calling the code with:
    java -jar "deleteLogs.jar" "D:\TADDM" ".rar" 31 "D:\Working Files\deleteFilesLog.log" "move" "D:\Working Files\"
    However when I go to create file its giving me:
    D:\Working Files"logs.rar
    Which is clearly not the correct file name....
    So why is it removing the \ and not the "?

  • I am having trouble with CSS.  Displays right in DW but not in web browser

    Hello,
    I am having difficultiy getting my webpage to look the way it does in Dreamweaver in a browers (All 5 of them).  My problems are with:
    - Title Heading Content
    - Sidebar
    I have two lines in my heading with the name of the organization.  I made two rules.  Header H1 and a sub header.  For some reason while previewing them in a browser there is a gap between the two words.  But in DW there is not.  I do not want the gaps.  How can I fix it?
    In a browser the side bar does not come all the way down.  There is a small gap between it and the footer.  Like the other problem this does not appear in DW only in the browers.
    Any help would be appreciated!  I am still learning CSS.
    I believe these are the only two files you need to look at.
    Thanks for the help!

    Also how can you see if your ISP offers the free web server space?
    Contact your internet service provider (ISP).  Often this is your telephone or cable broadband provider too.  If not, there are many free or very low cost remote server hosts around.   Do a Google search.
    I did do the validator and it told me I was fine.  I did not do a CSS one though.
    Good. So we know it's not an HTML error.  Get the FF Web Developer Toolbar.  It permits you to edit CSS in your browser to see how changes effect the layout plus a lot of other cool stuff.
    Sorry I'm still new to all of this.
    Don't fret, Tim. We all started in the same place.  You'll catch on soon enough. 
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb

  • I'm having trouble with the sync all feature and i'm not sure what to do about it

    i'm using Lr 5.3 on a windows 8.1 and a really fast laptop "can render movies in after effect in minutes"
    the problem i'm having is when i click the sync all button and the top loading bar moves like everybody, only the pictures viewed in my bottom slider will change even if i leave it for hours and this happen with big and small number of pictures so i tried reinstalling it and that didn't work
    i do a lot of timelapses and i thought maybe if i export the video they will show with the edited settings and that didn't happen and it showed the pictures that i havent moved to view blured, like the same blue when you move fast between raw pictures
    so i t tried exporting them and that worked fine but takes ages, the pictures still didn't change in the viewer but all the exported pictures did and thats not helping me in my job !
    FIND ME A SOLUTION please cause i'm dealing with 500-1000 picture here and i need to move the slider every 20 sec or so every picture is changed and this takes time and effort  guys !

    It could be overheating..........thing is ....i never realy though ibooks got that hot....the ibook does not even have a cooling fan...at least my blueberry 300mhz doesn't.
    I would have to say sounds more like your hard drive may be starting to fail you.

  • I'm having trouble with a toolbar called searchqu that I do not remember installing, it will not allow me to have MSN as my homepage, I removed the add on but still have the problem. Thoughts?

    had an add on installed somehow called searchqu. It will not allow me to have msn as my home page. I removed the add on and still have the same trouble.

    Hi!
    My name is John and I'm a member of the Searchqu support team, I'm here to assist! :)
    When a software was installs onto your pc it offered two basic installs, typical installation, which lists the add-on features such as searchqu default search, and Custom installation, which allows you to select the add-ons that you wish to install. There's no need to worry if you did the typical install - this isn't a virus,
    nor malware, and there's no need to Perform a virus scan against it.
    In order to change Searchqu as your homepage please check the following: http://support.mozilla.org/en-US/kb/How%20to%20set%20the%20home%20page
    For visual instructions please check: http://bit.ly/searchqutoolbar
    We are here to help with any further question :)
    The Searchqu support team.

  • HT4528 Having trouble with my apple password.  ICloud and Dropbox both accepted my new password because they woulod not accept my apple password

    Need help sorting out apple ID.  Icloud and Dropbox asked for a new ID which worked fine. Why does it not work on my new iphone to get the dropbox app?

    Ben
    I had a similar issue with my iPad, it was asking for what essentially was a username - back before you needed an actual email address, god knows why, so I ignored it during the setup process and once the home screen loaded up it asked my for my details and hey presto it was fine.
    If you don't get asked for your details right away you can add them by going to Settings>iTunes & App Store
    Regards,
    Steve

  • Is anyone else having trouble with the mute switch in Ios 6.1 Not working?

    I have a verizon iphone 4s and ever since i updated to ios 6 my mute switch will not work at all... Help anyone?

    Try resetting the keyboard dictionary
    Settings>General>Reset>Reset Keyboard Dictionary

  • HT201320 having trouble setting up gmail acct on my ipod, will not accept my email address or password

    I have entered all the right info to set up receiving email from my gmail account. Keeps telling me the name or PW is incorrect. HELP!

    Here's the iOS Mail Setup Assistant.  Hope it helps:
    http://www.apple.com/support/ipad/assistant/mail/#section_1

  • Why am I having trouble with my keyboard?

    Ever since the IOS 6 update, I have been having trouble with my keyboard.  I type a word and press space bar, then type the next word but it doesn't recognize the fact that I typed the space bar. It lights up as a mispelled word.  It has done with numerous times.  I then have to go back, highlight the area, and choose two separate words when the auto-correct options appear.  It is very annoying.  Anyone else having this issue????

    If the App store app is crashing see:
    IOS 6 App store crash: Apple Support Communities
    For othe other problems try:
    Try:
    - Reset the iPod. Nothing will be lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup
    - Restore to factory settings/new iPod.
    - Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

Maybe you are looking for