Why do I have so much trouble signing-in to Itunes?

Everytime I try to sign-in to ITunes, I always get the error that my ID/Password are incorrect. I wrote them down when I had trouble the last time but still cannot log-in to ITunes.
If I click Forgot Password then the button for answering security questions, when it asks for my date of birth, when I put that in it is wrong. Geeeze!!! I ought to know when I was born and why would I enter something different?
Getting so I don't want to mess with ITunes or Apple, period!!

Here's an update on my post.
When I click on my ITunes short cut, I get a window that says
I have no idea why I'm getting this error as I have not inserted a disc in my computer for months. I haven't created any playlists, nor have I purchased anything as I'm always denied.
In addition, when I am logged-in to the store (I'm assuming I am logged-in as my email address is reflected on the top left), when I select a song, then click Buy, I get the following error
I'm at a total loss as to why I am unable to do anything in ITunes, either through my desktop or IPhone. Quite obviously I don't have a network problem as I have to be on-line to even get into the ITunes store.
At this point, I'm convinced that ITunes doesn't want my money and am at the point that I'll just forget Apple and ITunes and try my luck elsewhere.
FYI. I have used two emails, and created 2-3 IDs/passwords trying to get into ITunes and buy something.

Similar Messages

  • Why am I having so much trouble signing in to Mozilla

    Every time I try to sign in it will not take username and password so I have to change it and then I forget what I changed it to.
    Also why can't I watch videos on facebook I can with Internet Explorer Windows 7

    Some added toolbar and anti-virus add-ons are known to cause
    Firefox issues. '''Disable All of them.'''
    In the event that the passwords information is lost, you
    should record all information in a separate text file somewhere else
    on your hard drive, or written down. You can easily copy and paste if
    you need to do so. If you are concerned about someone else looking
    at that file, you can compress it using a password.
    Many site issues can be caused by corrupt cookies or cache.
    * Clear the Cache and
    * Remove Cookies<br>'''''Warning ! ! '' This will log you out of sites you're logged in to.'''
    Type '''about:preferences'''<Enter> in the address bar.
    * '''Cookies;''' Select '''Privacy.''' Under '''History,''' select Firefox will '''Use Custom Settings.''' Press the button on the right side called '''Show Cookies.''' Use the search bar to look for the site. Note; There may be more than one entry. Remove '''All''' of them.
    * '''Cache;''' Select '''Advanced > Network.''' Across from '''Cached Web Content,''' Press '''Clear Now.'''
    If there is still a problem,
    '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]''' {web link}
    While you are in safe mode;
    Type '''about:preferences#advanced'''<Enter> in the address bar.
    Under '''Advanced,''' Select '''General.'''
    Look for and turn off '''Use Hardware Acceleration'''.
    Poke around safe web sites. Are there any problems?
    Then restart.

  • Why do I have so much trouble syncing?

    This is really starting to get on my nerves. I bought this iPhone because of all the cool stuff it can do and because it was supposed to be more reliable "because it's Apple." So far, I've had fewer complaints about the copy of Windows 7 that I bought around the same time. I never thought I'd say this but after about 9 months I'm more pleased with my purchase from Microsoft than I am with my purchase from Apple.
    Anyways, onto my real problem...
    Nearly every time I try to connect my iPhone I have to plug and unplug the USB cable several times before it finally gets recognized in iTunes. Just now I tried at least a dozen times before trying restarting both my computer and iPhone. When that didn't work I tried reinstalling iTunes. It synced this time, but on the second try so the problem isn't solved.
    What happens when I plug it in is the phone will make the sound it makes when you plug it in and it charges but it never goes on to say, "Sync In Progress." iTunes hangs for about a minute and then gives up trying to recognize it. If it does eventually work, iTunes loads the phone's contents quickly.
    Because of this issue I'm also wary of updating to iOS 4.0.2 as it could cause problems during the update process.

    @stellarwill
    "iTunes hangs for about a minute and then gives up trying to recognize it."
    @dosk
    Why would you post your question in my thread instead of making your own? Your problem is completely different.
    @shadowbeast
    I didn't think it was necessary to post my computer's specs but if you think it will help, these are them:
    Intel Core i7-920
    Asus P6T mobo (which is the Intel 1366 chipset)
    Mushkin 6GB Triple Channel DDR3
    WD 1TB 7200RPM SATA HDD
    ATi Radeon 5750
    Creative X-Fi XtremeGamer
    I built my computer by hand so I can't just call someone and play tech support tag getting transferred back and forth between Apple and the computer manufacturer. Problems like this never get solved by tier 1 tech support anyway.
    Could you link me to an article describing these faulty chipsets? I've never heard of anything like this.

  • Why do I have so much trouble with arrays

    using the following query:
    <cfloop index="loopCompanyNumberSet01Array" from="1"
    to="#arrayLen(companyNumberSet01Array)#" step="1">
    <cfquery name="qrySeriesList" datasource="erpdb01">
    SELECT DISTINCT Left(t_item,2)
    FROM
    dbo.ttiitm001#companyNumberSet01Array[loopCompanyNumberSet01Array]#
    ORDER BY 1
    </cfquery>
    </cfloop>
    I can use cfdump and see that I am getting the results I
    want, but I want to now take them and put them into an array (or
    list) so I can use them for another set of querires
    I tried:
    <cfset seriesArray=arrayNew(1)>
    <cfloop index="getSeriesList" from="1"
    to="#arrayLen(qrySeriesList)#" step="1">
    <cfloop query="#qrySeriesList[getSeriesList]#">
    <cfset seriesArray[currentRow][1]=1>
    </cfloop>
    </cfloop>
    but get error:
    Object of type class coldfusion.sql.QueryTable cannot be used
    as an array

    jkgiven wrote:
    > using the following query:
    > <cfloop index="loopCompanyNumberSet01Array" from="1"
    > to="#arrayLen(companyNumberSet01Array)#" step="1">
    > <cfquery name="qrySeriesList"
    datasource="erpdb01">
    > SELECT DISTINCT Left(t_item,2)
    > FROM
    dbo.ttiitm001#companyNumberSet01Array[loopCompanyNumberSet01Array]#
    > ORDER BY 1
    > </cfquery>
    > </cfloop>
    >
    > I can use cfdump and see that I am getting the results I
    want, but I want to
    > now take them and put them into an array (or list) so I
    can use them for
    > another set of querires
    >
    > I tried:
    > <cfset seriesArray=arrayNew(1)>
    > <cfloop index="getSeriesList" from="1"
    to="#arrayLen(qrySeriesList)#" step="1">
    > <cfloop query="#qrySeriesList[getSeriesList]#">
    > <cfset seriesArray[currentRow][1]=1>
    > </cfloop>
    > </cfloop>
    >
    > but get error:
    > Object of type class coldfusion.sql.QueryTable cannot be
    used as an array
    >
    1) just use qrySeriesList.recordcount instead of your
    arraylen(qrySeriesList)
    2) even better: why use cfloop over query rows when
    <cfoutput
    query="qrySeriesList"> does just that?
    ... oh, i see what you are trying to do now...
    ok, you will have to move the array populating code into your
    first
    cfloop, after the cfquery in it:
    > <cfloop index="loopCompanyNumberSet01Array" from="1"
    > to="#arrayLen(companyNumberSet01Array)#" step="1">
    > <cfquery name="qrySeriesList"
    datasource="erpdb01">
    > SELECT DISTINCT Left(t_item,2)
    > FROM
    dbo.ttiitm001#companyNumberSet01Array[loopCompanyNumberSet01Array]#
    > ORDER BY 1
    > </cfquery>
    move it into here
    > </cfloop>
    3) now, for your array populating script:
    a)
    > <cfset seriesArray=arrayNew(1)>
    that declares a one-dimensional array
    > <cfset seriesArray[currentRow][1]=1>
    but here, i believe, you are populating it as a
    two-dimensional array...
    b)
    > <cfloop index="getSeriesList" from="1"
    to="#arrayLen(qrySeriesList)#" step="1">
    instead of this loop, just use
    <cfoutput query="qrySeriesList">...</cfoutput>
    c)
    > <cfloop query="#qrySeriesList[getSeriesList]#">
    is this the line cf is complaining about?
    you never set your qrySelectList to be distinct queries in
    your first
    loop. with its every iteration that loop just creates a new
    qrySelectSeries, replacing the one created in the previous
    iteration.
    but once you move your array-setting code into the loop, you
    will no
    longer need this loop at all.
    Azadi Saryev
    Sabai-dee.com
    Vientiane, Laos
    http://www.sabai-dee.com

  • Why do I have so much trouble loading Frontierville, and why do I have to refresh it so much?

    When I go to load Frontierville, it takes forever; then when it finally does load, I no sooner get started then it tells me that the internet went all quiet and to refresh my page. What can I do to fix this?

    Here's an update on my post.
    When I click on my ITunes short cut, I get a window that says
    I have no idea why I'm getting this error as I have not inserted a disc in my computer for months. I haven't created any playlists, nor have I purchased anything as I'm always denied.
    In addition, when I am logged-in to the store (I'm assuming I am logged-in as my email address is reflected on the top left), when I select a song, then click Buy, I get the following error
    I'm at a total loss as to why I am unable to do anything in ITunes, either through my desktop or IPhone. Quite obviously I don't have a network problem as I have to be on-line to even get into the ITunes store.
    At this point, I'm convinced that ITunes doesn't want my money and am at the point that I'll just forget Apple and ITunes and try my luck elsewhere.
    FYI. I have used two emails, and created 2-3 IDs/passwords trying to get into ITunes and buy something.

  • Why am I having so much trouble signing in to g-mail, I realize I can skip and go into googlr but I haven't all day to play figure out the word.  I am getting my apple e-mail with the e-mail g-mail gave me.  You cannot reach google g-mail for support othe

    INSTALLED LION ABOUT A MONTH AGO.  AFTER THAT G-MAIL WOULD NOT TAKE MY E-MAIL ADDRESS OR CURRENT PASSWORD.  I HAD TO RESET E-MAIL, CHANGE PASSWORD.  SINCE THEN, FORGET ABOUT IT.  I CANNOT SIGN IN WITH NEW E-MAIL, WHICH BY THE WAY THEY GAVE ME.  NO WAY TO TALK TO PERSON AT GMAIL/GOOGLE, THEY JUST WANT YOU TO GAME WORDS ALL DAY.  WHAT IS THE SOLUTION?  CHANGE CARRIERS.  I AM GETTING E-MAIL WITH NAME THEY GAVE ME, BUT I SUSPECT IT IS COMING THRU APPLE.  AT THIS POINT I AM CRAZY.  HELP

    The is the forum for the Mac App Store. Apps for Mac computers.

  • Why do I have so much trouble getting my copy to format correctly inside my div?

    Hey guys, I'm very new at this so please bear with me   I'm designing my first website and I'm at the point where I want to add my copy.  I have a div with a background image, and another div nested inside of it.  When I paste my copy into the nested div, things seem to shift around in the design view.  They usually look ok when I preview in live mode, but it's very troublesome trying to work on the site when things are all jumbled up.  What am I doing wrong?  Should I paste the source code here so you guys can see it?  Thanks in advance!

    Depending on the CSS, live view and design view can be totally different.
    Its often best to type in your copy in the divs and then add the CSS to format it.
    Post the css and the set of divs with some content in order to enable people to try work out what is wrong.

  • Why does Java have so much trouble with deleting files

    So, I've been doing alot more code on the file-level and have been noticing that Java is really terrible at deleting files. This should be rather straightforward, but the delete method can fail in so many ways, it's unbelievable. Even with taking special care to close all streams, it will sometimes just not do it, or even return a "Yes I've deleted it" result and the file is still there! (deleteOnExit() suffers the same affliction)
    This problem is even scuttling the otherwise trusty Ant, which is really annoying. Ever seen this? "BUILD FAILED: Could not delete 'myproject.jar'" So any Ant-driven automated build-and-test process can fail because of this super-avoidable error. (We have to code a pre-build-jar-deletion shell script, which is annoying when jars are added/deleted/renamed for whatever reason.)
    Does anyone know the reason for this? I'm really curious.
    Maybe, in 1.5, they will come out with "File.crushAndDestroyWithMercilessPrejudice()". I'd use it all of the time! :)

    I had the same problem when I was working with JAI. I had about a half million images that I made a viewer for, which would allow our users to do away with microfiche. Project worked great, but the files wouldn't delete off the user box (Win2K). I checked everything and they just would not delete--windows would not acknowlege the resources had been released by Java.
    I finally took a lesson from MS developers and said: "It's not a bug, it's a feature!" I wrote it into the manual that it was a cache feature and would speed-up access to the images, yet delete the old ones (which it did, any images that were not accessed during the session would delete just fine, while any that were accessed would still be there next time for local access rather than hitting the network for them. The cache turned out to be one of the great features of the application.
    On the other hand, I've not had any problems deleting files from Linux.

  • Why do I have so much trouble getting keywords entered, especially...

    when selecting multiple photos?
    Often when the keyword field says "add keywords" and then when I select multiple images the offer disappears and I cannot add words no matter whee I click. Sometimes closing the INFO button at the bottom and reopening the pane will allow me to enter.
    This issue usually acts up when keywords already exist such as when a movie file is already tagged with a keyword called MOVIE.
    Anyone experience anything like this and what is the better way to get keywords in w/o having to use the info pane keywords filed?

    After selecting the multiple photos type Command+K to bring up the Keyword pane:
    Click to view full size
    Then click on the keywords you want to assign to those photos.

  • Why do I have so much trouble with java?

    I play games on Pogo. Every day it tells me that I need to download Java. It takes a long time to get it to work.

    Java plugins 7u10 or lower are blocked for security. You can download Java v7u11, and see all of:
    https://support.mozilla.org/en-US/questions/944956?page=3

  • Why am I having so much trouble installing Flash Player 17?

    Hello,
    I have installed and updated Flash Player since 1999, but never with so much trouble as with the latest version- 17.
    My pc runs Windows 7 64-bit with Internet Explorer 11. I have tried all the troubleshooting steps listed on the Adobe website with no luck.
    I am logged in as administrator, but when I go to a website the permission message pops up at the bottom of the page, as normal after updating,
    "This webpage wants to run the following add-on; ' Adobe Flash Player' from Adobe Systems Incorporated'.
    Whether I click on Allow or click on the dropdown and click on Allow for all websites, does not matter. It will not work and the permission bar stays up.
    Can somebody please help??
    Thanks,
    Dake

    I replied to another instance of this post (Why am I having so much trouble installing the latest version of Flash Player to use in IE?).  Locking this one.

  • Why am I having trouble signing in to iTunes with my AppleID? I change it

    Why am I having trouble signing in to iTunes with my AppleID? Once I go through the motions to reset my password on Apple's website & go back to iTunes, I still can't sign on. Should I have two passwords? Is there something I'm missing??

    Yep. Good point.
    To completely shut it down, even in the background, double click the home button to display the row of apps. Then press and hold the Facetime app until the app displays a minus sign. then touch the minus sign.
    The app is now stopped !

  • Why am I having so much trouble with my iPad air 2 reading and remembering my fingerprints?

    Why am I having so much trouble with my iPad air 2 reading and remembering my fingerprints? Even if I enter the same finger 5 times, it only works once or twice.

    Try this -> http://m.facebook.com
    which is the mobile optimized page of FaceBook.

  • I have so much trouble with the plug in part of the program I want to disable this in Mozilla. I have to go to windows explorer to get around this plug in problem with Mozilla.

    # Question
    I have so much trouble with the plug in part of the program I want to disable this in Mozilla. I have to go to windows explorer to get around this plug in problem with Mozilla

    Depending on the CSS, live view and design view can be totally different.
    Its often best to type in your copy in the divs and then add the CSS to format it.
    Post the css and the set of divs with some content in order to enable people to try work out what is wrong.

  • Why do I have so much storage 'other' on my iPhone 5, ios7?

    why do I have so much storage 'other' on my iPhone 5, ios7?

    Hi:  I had the same issue.  I believe mine was due to the fact that I always installed software updates over wifi.  I believe doing so did not remove the old software from my phone, which then took up space in Other. Here's why I think this.
    Yesterday, I had 6.2 GB of Other (on my 16GB iPhone).  Got the alert that a software update was available, but didn't have enough free space on my phone to update it over wifi.  I plugged my phone into my Mac today and ran the update on iTunes and the Other went down to 2.1 GB.  Note, when I previously updated software over wifi, it took about 3 minutes, today when I updated it by actually plugging into iTunes on my Mac, it took about 15 minutes.  It cleared everything off my phone and reinstalled it. 
    I'm not sure if this is the only reason for the Other storage to be high, but if you update over wifi, it could be.  Note:  if you're not due for an update, you may want to try resetting your phone and doing a restore from iTunes.  Be sure to back up your phone before doing this!
    Hope this helps.

Maybe you are looking for

  • Is there a way to hide todos without due dates?

    I have gobs of items without due dates.  iCal shows them all!  Is there any way of having it hide those? I am able to hide todos that have a due date in the future (past the view date of the calendar), but I cannot find an option for hiding the masse

  • How to show a field value and a message text in a message box

    Hi I have made a message box that shows the value of a text field when a button is clicked. I would like to add some message text to the message box as well, so that my message box will show something like: You have entered this data: "textField valu

  • Dashboards in TFS 2013

    Hi Guys                   I have just migrated my TFS2010 to TFS2013 . Can you please share how can i create Dashboards and work item statuses/changeset counts on TFS2013 like 2010. Your response in this regard will be highly appreciated. Waseem Bukh

  • Adobe Spry jQuery conflict in Text Field validation.

    I am using Adobe Spry for my form validation, and jQuery for hiding / showing elements on a page based on responses to questions.  jQuery works fine for this for me.  Where I am having a problem is using jQuery to take the value of one input and ente

  • ASA mail logging 716001

    Dears,         i configured logging list contains messages 716001 and 716002. i configured the mail logging to send this list , but i received only 716002 and didn't receive 716001 on my mail. ASA version is 9.0(3) on ASA5520. Thanks,