HT3702 When i try to purchase something like a song, it says i need to enter the security number on my card.. and when i do it says i need to enter a valid number. Even though that is the correct number.

When i try to purchase something on itunes it says I need to entrer the security code on my card and when I do it says i need to enter a valid one.

Is the address on your iTunes account exactly the same (format and spacing etc) as on your credit card bill : http://support.apple.com/kb/TS1646 ? If it is then you could try what it says at the bottom of that page :
If the issue persists, contact your credit card company and verify that they and any company they use to process credit card authorizations have the correct information on file.
And/or try contacting iTunes support : http://www.apple.com/support/itunes/contact/

Similar Messages

  • When I send email to a group, it shows all members addresses even though that option is turned off in the preferences.

    When I send email to a group, it shows all members addresses even though that option is turned off in the preferences. This just started happening on all my devices. I have the latest update instaled.

    That doesn't work on Mavericks. Follow Tuttle's advice.

  • My podcast says it's not availabe in New Zealand, even though that's where I am and where it's uploaded from. Any ideas?

    My podcast says it's not availabe in New Zealand, even though that's where I am and where it's uploaded from. Any ideas?

    Your podcast appears to have been removed from the Store. There appears to be no technical problem with the feed. Other reasons for removal (and I'm not accusing you of any of these) include unacceptable content such as racism or unacceptable sexual content, strong or sexual language when the 'itunes:explicit' tag is not set to 'yes'.], and breach of copyright. A very brief listen to bits of your latest episode doesn't seem to suggest that any of those is applicable as it seemed to be only speech - have you included any commercially issued music anywhere?
    You could try emailing them at podcasts 'at' apple.com - it might have been an error (it's not unknown), though I can't promise you will get anything approaching a cogent answer.
    If you want to try resubmitting you will have to change the title slightly to get round the bug which is giving you the message you saw.

  • HT4009 When I try to purchase something in my game it says please contact iTunes store to complete transaction

    Please help...
    When I purchase something in my game it says contact iTunes support to complete transaction

    I have the same problem but whenever I contact ITunes support I can't find my specific problem.

  • HT201304 I m playing the ghostbusters game and I'm facing a problem when I try to purchase something from App Store! I made actin tact to the support guys and told me that this is a apple issue! I don't have any other purchase troubles with App Store ! He

    ...

    What happens when you try to buy something, does the 'buy' button not work, do you get any error messages ... ?
    If you are getting a message to contact iTunes Support then you can do so via this link and ask them for help (we are fellow users here on these forums) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption
    If it's a different problem ... ?

  • When I am logged into iTunes and try to purchase something the window requesting I sign in to iTunes store keeps an appearing no matter how many times I enter the password (even though I'm already signed in!). Any suggestions greatly appreciated. Thanks.

    When I am logged into iTunes and try to purchase something the window requesting I sign in to iTunes store keeps an appearing no matter how many times I enter the password (even though I'm already signed in!). Any suggestions greatly appreciated. Thanks.

    This may help.
    Fix for “No Content” on iPhone & iPod after iOS 4.2.1 update
    The try the standar fixes:
    - Reset. Nothing will be lost.
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Restore the iPod from backup via iTues
    - Restore the iPod factoery defaults/new iPod.

  • I have a mini the new mini ipad I buy an iTunes cards and I redeem it each time I try to purchase something it ask me to verify my payment before when I finish it write to go on apple support please somebody can help me

    I have the new mini ipad I buy an iTunes cards and I redeem it each time I try to purchase something it ask me to verify my payment before when I finish it write to go on apple support and i cannot make any purchase please somebody can help me

    Click here and ask the iTunes Store staff for assistance.
    (107643)

  • When I try to purchase something, it dont succeed and it tells me to contact the support

    When I try to purchase something, it dont succeed and it tells me to contact the support

    Click here and request assistance.
    (85424)

  • How can I make iTunes sort on the first word by default, even though that word is "The" or "A"?

    How can I make iTunes sort on the first word by default, even though that word is "The" or "A"?
    I myself think that (for instance) "A tribe called Quest" should be sorted under "A", not "T".
    Now I can edit the sort options manually per track and/or per selection, but I would really like to just kill this "iTunes-knows-how-you-should-sort"-feature in iTunes.
    Anyone any suggestion on how to do that?
    Thanks

    Here is a modified version of one of Doug's Scripts. My modification was to add Sort Name to the list of tags that could be changed. I tried it on a single track and it worked. I recommend backing up your library first. Select the tracks you want to change (or all tracks) and run the script from the Applescript Editor.  If it works as intended, save it so you can apply it to newly imported tracks.  And, yes, I know this isn't the exact answer to your question, you want to change a preference setting in iTunes (if there is such a setting).
    Original script can be forund at http://dougscripts.com/itunes/scripts/ss.php?sp=thistagthattag
    Modified script is below. Start up Applescript Editor, paste it into a new window.  Start up iTunes and select the tracks to modify.  Click Run in the Applescript Editor.  Follow the instructions.
    (* Put This In That
    v2.0 april 22 2008
    - runs as universal binary
    - adds "Show" tag
    - consolidated code
    - saved as script bundle
    v1.7 October 3, 2006
    - adds "Album Artist" as option
    v1.6 October 28, 2004
    - works around iTunes 4.7 selection bug
    v1.5 ('04/1)-- adds "grouping" tag
    Get more free AppleScripts and info on writing your own
    at Doug's AppleScripts for iTunes
    http://dougscripts.com/itunes/
    This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
    This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
    Get a copy of the GNU General Public License by writing to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
    or visit http://www.gnu.org/copyleft/gpl.html
    -- CONSTANTS
    property allOptions : {"Song Name", "Artist", "Album", "Album Artist", "Composer", "Genre", "Comments", "Show", "Grouping", "Sort Name"}
    property my_title : "Put This In That"
    global thisTag, thatTag, theNewTags, theOriginalTags, yn
    tell application "iTunes"
              if selection is not {} then -- if tracks are selected...
                        set sel to selection
                        set numTracks to (length of sel)
                        set s to "s"
                        if numTracks is 1 then set s to ""
                        display dialog "The data from one tag REPLACES the data in another tag in all the selected tracks, with option to delete data in first tag." & return & return & (numTracks & " track" & s & " selected.") buttons {"Cancel", "Continue"} default button 2 with title my_title giving up after 30
                        if gave up of result is true then return
                        my choose_this_tag()
                        my choose_that_tag()
                        set yn to (button returned of (display dialog "Delete data in " & thisTag & " afterwards?" buttons {"Yes", "No"} default button 2 with title my_title giving up after 45) is "Yes")
                        set oldfi to fixed indexing
                        set fixed indexing to true
                        repeat with t from 1 to numTracks
                                  tell contents of item t of sel
                                            set theOriginalTags to {get name, get artist, get album, get album artist, get composer, get genre, get comment, get show, get grouping, get sort name}
                                            set theNewTags to theOriginalTags
                                            my do_put()
                                            set {name, artist, album, album artist, composer, genre, comment, show, grouping, sort name} to theNewTags
                                  end tell
                        end repeat
                        set fixed indexing to oldfi
              else
      display dialog "No tracks have been selected." buttons {"Cancel"} default button 1 with icon 0 giving up after 30
              end if -- no selection
    end tell
    to choose_this_tag()
              tell application "iTunes"
                        set n to (choose from list allOptions with prompt ("Select a tag to get data from:") with title my_title)
                        if n is false then error number -128
                        set thisTag to (n as text)
              end tell
    end choose_this_tag
    to choose_that_tag()
              set o to {}
              repeat with t in allOptions
                        if (t as text) is not thisTag then copy t to end of o
              end repeat
              tell application "iTunes"
                        set n to choose from list o with prompt ("Use data from the " & thisTag & " tag to REPLACE data in...") with title my_title
                        if n is false then error number -128
                        set thatTag to n as text
              end tell
    end choose_that_tag
    to do_put()
              try
                        repeat with i from 1 to (length of allOptions)
                                  if thisTag is (item i of allOptions) then
                                            set thisTag_sto to (item i of theOriginalTags)
                                            exit repeat
                                  end if
                        end repeat
                        repeat with i from 1 to (length of allOptions)
                                  if thatTag is (item i of allOptions) then
                                            set (item i of theNewTags) to thisTag_sto
                                            exit repeat
                                  end if
                        end repeat
                        if yn then
                                  repeat with i from 1 to (length of allOptions)
                                            if thisTag is (item i of allOptions) then
                                                      set (item i of theNewTags) to ""
                                                      exit repeat
                                            end if
                                  end repeat
                        end if
              end try
    end do_put

  • TS1702 I can't install and update any application, even for the free app the system ask me to sign in to the billing payment. Even though that I did sign, it still declined. Any one could help, please

    I can't install and update any application, even for the free app the system ask me to sign in to the billing payment. Even though that I did sign, it still declined. Any one could help, please

    All Apple iTunes Store accounts must have a valid form of payment set up. Even for free apps and updates. The Payment Declined message comes from your card issuer or payment source; Apple is just a pass-through for the message. You need to find out why your issuer is declining your card.

  • Format address panel in iCal to show Department from the address book. At the moment it is showing 'Job Title' even though that has been removed in Address Book.

    Can anybody help please How do I Format address panel in iCal to show Department from the address book. At the moment it is showing 'Job Title' even though that has been removed in Address Book.

    I have a similar problem. I actually spoke with a Paypal customer Representative a few months back who informed me that they had deleted all of my previous *Hidden* Address but when I just purchased an item today on a online merchant's site that I had never been to before and checked out using their Paypal option, I noticed that my default shipping address was in fact my old address and when I went to change the address to my current address, I noticed all of the old addresses I ever used were still there. I've just spoken with 2 separate paypal representatives who confirmed on their end that all of the old address have been deleted and the only one they have on file is my current address. Can anyone provide me an explanation as to why the old hidden address can still be showing up when I check out on merchant's sites using paypal even after they've seemingly been deleted? The last Representative suggested clearing out my browser's cache, but I don't believe that will resolve my issue. Thank you in advance.

  • When I try to purchase something it tells me my purchase cannot be completed .please apple support. Com/ itunes

    When I try to purchase something it tells me my purchase cannot be completed .please apple support. Com/ itunes

    Okay, the obvious answer, have you tried contacting iTunes Store support? http://www.apple.com/support/itunes/contact/

  • I just recently got an iPod touch 5 and it won't let me download apps. It says they are free but when I install it , it keeps popping up saying before purchasing I must tap continue to verify my purchase something like that. Idk what to do. !!!!!

    I just recently got an iPod touch 5 and it won't let me download apps. It says they are free but when I install it , it keeps popping up saying before purchasing I must tap continue to verify my purchase something like that. Idk what to do. !!!!!

    Yes. You can set the payment method to "None" once you log into iTunes on your PC/Mac. I have it set up this way.

  • HT201303 when i try to purchase something it asks me to enter my security questions but i dont remeber them how can i reset them?

    when i try to purchase something it asks me to enter my security questions but i dont remeber them how can i reset them?

    Try here:
    iTunes Store: My credit card's security code or zip code does not match my bank's records

  • HT201304 In app purchase in restrictions is turned of but when I try and purchase something in a app it says not allowed yet there are no restrictions??

    In app purchase in restrictions is turned of but when I try and purchase something in a app it says not allowed yet there are no restrictions??

    Contact iTune Support
    https://ssl.apple.com/emea/support/itunes/contact.html

Maybe you are looking for

  • ARC1: Heartbeat failed to connect to standby 'TEST10'. Error is 1031.

    Hi Every one, I m getting this error in alert log. Error 1031 attaching to destination LOG_ARCHIVE_DEST_2 standby host 'xxxx' ORA-01031: insufficient privileges *** 2003-11-30 18:55:30.984 49871 kcrr.c ARC1: Heartbeat failed to connect to standby 'xx

  • Can't install Adobe Flash Player (insufficient privilages)

    What do I do if I get a message that states: "The user does not have sufficient privilages to install adobe flash player" ?

  • Remove C:\Program Files\sapinst_instdir after successful installation

    Hello, do you recommend to delete the directory C:\Program Files\sapinst_instdir after successful installation. It wastes ~500 MB disk space. Thanks, Juergen

  • Ios 7.0.4 audio issue

    I updated my iPad 2 to iOS 7.0.4 that was released today. Now I have horrible audio issues. As I type there is this weird sound, like a "wisp" sound or something. When I lock my screen it's a loud buzz sound extremely annoying. The worst part is when

  • Upgrading to Clusterware 11Gr2 question

    I am need to upgrade to 11Gr2 clusterware from 11Gr1. One of the pre-reqs is to have a newer verision of ASMLIB. I have not found any docs that referr to the upgrade ASMLIB. What my sysadmin is indicating is that if this is done All of my current asm