What causes itunes application to stop at loading store?

I'm using Win7 with IE8 (32 & 64 Bit). When I launch the iTunes Application all is well. I can go to "View my Apple ID" (which I thnik is in the Apple Store). But when I try to go to the Store, I get the following message. "iTunes has stopped. Windows is checking for a solution to the problem" A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available". Then iTunes application closes.
Message was edited by: JBDJr - Diagnostic results: Microsoft Windows 7 x64 Home Premium Edition Service Pack 1 (Build 7601)
HP-Pavilion FK886AA-ABA m9457c
iTunes 11.0.2.26
QuickTime 7.7.3
FairPlay 2.3.31
Apple Application Support 2.3.3
iPod Updater Library 10.0d2
CD Driver 2.2.3.0
CD Driver DLL 2.1.3.1
Apple Mobile Device 6.1.0.13
Apple Mobile Device Driver 1.64.0.0
Bonjour 3.0.0.10 (333.10)
Gracenote SDK 1.9.6.502
Gracenote MusicID 1.9.6.115
Gracenote Submit 1.9.6.143
Gracenote DSP 1.9.6.45
iTunes Serial Number 00E4B48009EE7290
Current user is not an administrator.
The current local date and time is 2013-03-16 15:19:06.
iTunes is not running in safe mode.
WebKit accelerated compositing is enabled.
HDCP is supported.
Core Media is supported.
Video Display Information
ATI Technologies Inc., ATI Radeon HD 3650
**** External Plug-ins Information ****
No external plug-ins installed.
iPodService 11.0.2.26 (x64) is currently running.
iTunesHelper 11.0.2.26 is currently running.
Apple Mobile Device service 3.3.0.0 is currently running.
**** Network Connectivity Tests ****
Network Adapter Information
Adapter Name:     {D055705F-87F9-478B-9FE9-C570872DF784}
Description:     Realtek PCIe GBE Family Controller
IP Address:     192.168.1.146
Subnet Mask:     255.255.255.0
Default Gateway:     192.168.1.1
DHCP Enabled:     Yes
DHCP Server:     192.168.1.1
Lease Obtained:     Sat Mar 16 14:51:34 2013
Lease Expires:     Sun Mar 17 14:51:34 2013
DNS Servers:     8.8.8.8
          8.8.4.4
          209.55.27.13
Active Connection:     LAN Connection
Connected:     Yes
Online:          Yes
Using Modem:     No
Using LAN:     Yes
Using Proxy:     No
Firewall Information
Windows Firewall is on.
iTunes is enabled in Windows Firewall.
Connection attempt to Apple web site was successful.
Connection attempt to browsing iTunes Store was successful.
Connection attempt to purchasing from iTunes Store was successful.
Connection attempt to iPhone activation server was successful.
Connection attempt to firmware update server was successful.
Connection attempt to Gracenote server was successful.
Last successful iTunes Store access was 2013-03-16 15:14:11.

Just in case, try gn_id's suggestion from the following post:
Re: iTunes 11 crashes when opening the store - no error message

Similar Messages

  • TS4124 What causes iTunes Match, on an iOS device, to lose the cloud icon next to each song?

    What causes iTunes Match, on an iOS device, to lose the cloud icon next to each song. On my iPad 2 and iPhone 4S one cloud shows up for a whole album to tap and download a whole album but the ones next to the songs are no longer there. No songs will delete from my phone once downloaded from the cloud by sliding my finger to the left over the song and tapping delete. Instead it just plays the song when I try to delete it. To delete my music from my device I have to go in to settings and delete all the music. This worked fine for the first week and then one day the cloud status next to each undownloaded song disappeared and started doing this.

    Try sync Music from iTune to your iPad again.

  • What causes the music to stop playing?

    My music stops playing music on my iphone 4. What causes this and how to solve this problem.

    Broken tracks? Or does it only play one track and then stop?
    tt2

  • What causes an interaction to stop working when you have to re-publish it?

    I have created a course using Adobe Presenter 9 and PowerPoint 2010. It has several interactions. Everything tests correctly. I then re-publish the file and open it, one of the interactions no longer works. I need know what should do to prevent this from happening.

    Hi
    Can you please explain if your remember
    1. which interaction stopped working ?
    2. what do you mean by interaction atopped working, like it is not appearing in the publish content, or not able to interact with that interaction or ...something like that
    3. What step did you tried before re-publishing?
    Kindly close the powerpoint and republish it again .
    I hope it will work.
    Also if possible , please share the content with us ([email protected])for quick fix .
    Thanks,
    Sunil
    Adobe Presenter Engg Team

  • What causes itunes to seperate my albums?

    How can I combine the CD's that itunes seperates?

    Generally all you need to do is fill in an appropriate Album Artist. For more details see my article on Grouping Tracks Into Albums, in particular the topic One album, too many covers.
    tt2

  • What causes Selector.select() to stop blocking?

    This relates to my previous post(http://forum.java.sun.com/thread.jsp?forum=4&thread=223743), but maybe if I ask a simpler question I can get an answer, so here goes...
    1) If you register a ServerSocketChannel with a Selector and OP_ACCEPT, a call to select() will block until a new connection request comes in, right?
    2) If you register a SocketChannel with a Selector and OP_READ, a call to select() will block until there is something to read, right?
    3) If you register a SocketChannel with a Selector and OP_WRITE, a call to select() will block until... until when?
    The code below will perform just as # 1 and #2 above specify, but select() on OP_WRITE happens only once then blocks on line 05 unless an OP_ACCEPT or OP_READ condition occurs, in which case everything continues. Also, when everything does continue the key that was registered OP_WRITE passes the isWritable() check on line 24 and correctly writes to the client! It seems being "writable" is not enough to stop the blocking of select().
    Any help would be appreciated.
    01            while (true)
    02            {
    03                 try
    04                  {
    05                        int numKeys = selector_.select(3000);
    06                        Set readyKeys = selector_.selectedKeys();
    07                        SelectionKey tempKey = null;
    08                        SelectableChannel tempChannel = null;
    09
    10                        for (Iterator i = readyKeys.iterator(); i.hasNext(); )
    11                        {
    12                              tempKey = (SelectionKey)i.next();
    13                              i.remove();
    14                              tempChannel = tempKey.channel();
    15
    16                              if (tempKey.isAcceptable())
    17                              {
    18                                    // Accept connections, works fine
    19                              }// end of if
    20                              else if (tempKey.isReadable())
    21                              {
    22                                    // Read stuff, works fine
    23                              }// end of if
    24                              else if (tempKey.isWritable())
    25                              {     
    26                                    fillBuffer(buffer_);//fills the buffer with something for the client
    27                                    ((SocketChannel)tempChannel).write(buffer_);
    28                                    buffer_.clear();
    29                              }// end of else if
    30                        }// end of for
    31                  }// end of while

    If you are running under Windows you might want to check out http://developer.java.sun.com/developer/bugParade/bugs/4469394.html

  • Why can't I download anything online? This includes itunes, applications from the mac app store, and flash plugins.

    Why can't I download anything online? This includes everything from itunes song files,to Apps from the apple app store, to flash plugins. I am also unable to install a game on disk. I get messages that 0 kb is available when I just got the computer a week and a half ago and only installed microsoft office and adobe photoshop. Help!

    This is a confusing complaint...and kind of disturbing. Perhaps you could answer a few questions:
    1. How much space is left on your HD? If there weren't any available space left, it would be very difficult to boot your applications.
    2. Do you back up at all? Given your situation, it might be a good time to start, given the situation. Backup drives are relatively inexpensive these days.
    If this problem persists, a visit to your local Apple Store might be a good idea - but until then, please let the community here help.

  • ITunes 10.5 will not load store.

    all connecton tests passed. no error messages. progess bar appears at about 40-45% hangs and disappears as if the page loads correctly.
    itunes enabled in windows firewall, proxy disabled in internet options, ssl 3.0 and tls 1.0 enabled. reinstalled twice with no luck.
    running on windows 7 64bit.
    anyone have any ideas?

    https://discussions.apple.com/message/16362081#16362081
    Will probably fix your store too.

  • What causes my iTunes to crash as soon as I open it

    What causes iTunes to crash as soon as it tries to open? I never had any problems in the past. It just started happening a few days ago. I tried to reload it but it still crashes. Any suggestions?

    For now and until Apple fixes the bug, the only solution I have found is to turn the proxy off in the Network settings. If you need to use a proxy server for work/school, you are best off with using Firefox. Firefox has a number of add-ons that allow you to turn the proxy on and off (for instance Switchproxy, which is very useful and allows you to turn the proxy on only selectively). (https://addons.mozilla.org/en-US/firefox/search?q=proxy&cat=all)

  • I got an error message: 'iTunes has stopped working. A problem caused the program to stop working correctly. The solution asked me to load latest version which I did many times and still not working... HELP!

    [Window Title]
    Microsoft Windows
    [Main Instruction]
    iTunes has stopped working
    [Content]
    A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available.
    [Close program]
    This is what I got... sorry, not very tech savvy to copy the error message onto here...
    Have tried uninstalled and re-installed iTune, updated the new version of 10.6... many times over still not working!!!
    I share the frustrations of many here. HELP!!!!!

    Hi there Nok Saensanoh,
    I would recommend taking a look at the troubleshooting steps found in the article below.
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/ts1717
    -Griff W.

  • Certain web pages will not load and itunes and the appstore wont load either, what could be a probable cause and solution to this problem?

    certain web pages will not load and itunes and the appstore wont load either, what could be a probable cause and solution to this problem?

    the router is a netgear wireless extreme for pc and mac

  • Problem with iTunes. I have Windows 8 on a new laptop. Installed latest version of iTunes. Can play music in My Library but when I click on Itunes Store I get the message "iTunes has stopped working. A problem caused the program to stop working correctly.

    I have a new laptop with Windows 8 as operating system. Installed latest version of iTunes ontop computer. I can play music in My Library but when I click on iTunes, I get the message " iTunes has stopped working. A problem caused the program to stop working correctly. Windows will close the program and notify if a solution is available."
    Anyone know what is the cause and if there is a resolution? Have tried to re-installing iTunes and have also tried restoring laptop to an earlier date.

    iPad not appearing in iTunes
    http://www.apple.com/support/ipad/assistant/itunes/
    iOS: Device not recognized in iTunes for Mac OS X
    http://support.apple.com/kb/TS1591
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    iTunes for Windows: Device Sync Tests
    http://support.apple.com/kb/HT4235
    IOS: Syncing with iTunes
    http://support.apple.com/kb/HT1386
    Apple - Support - iPad - Syncing
    http://www.apple.com/support/ipad/syncing/
    iTunes 10.5 and later: Troubleshooting iTunes Wi-Fi Syncing
    http://support.apple.com/kb/ts4062
    The Complete Guide to Using the iTunes Store
    http://www.ilounge.com/index.php/articles/comments/the-complete-guide-to-using-t he-itunes-store/
    iTunes Store: Associating a device or computer to your Apple ID
    http://support.apple.com/kb/ht4627
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    Best Fixes for ‘Cannot Connect to iTunes Store’ Errors
    http://ipadinsight.com/ipad-tips-tricks/best-fixes-for-cannot-connect-to-itunes- store-errors/
    Try this first - Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    This works for some users. Not sure why.
    Go to Settings>General>Date and Time> Set Automatically>Off. Set the date ahead by about a year.Then see if you can connect to the store.
     Cheers, Tom

  • "iTunes has stopped working.  A problem caused the program to stop working correctly.   Windows will close the program and notify you if a solution is available."

    Whenever I connect to the iTunes store i receive an error message "iTunes has stopped working.  A problem caused the program to stop working correctly.   Windows will close the program and notify you if a solution is available."    This causes iTunes to close.  I am using iTunes version 10.5.0.142 on a Windows Vista (64) PC.  I have reinstalled iTunes selecting the "repair" option and also uninstalled and reinstalled iTunes.  Any help will be deeply appreciated.  Thank you.  Below is the result of the diagnositc.
    Microsoft Windows 7 x64 Home Premium Edition Service Pack 1 (Build 7601)
    HP-Pavilion BN474AV-ABA HPE-150t
    iTunes 10.5.0.142
    QuickTime not available
    FairPlay 1.13.35
    Apple Application Support 2.1.5
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 4.0.0.96
    Apple Mobile Device Driver 1.57.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.3.494
    Gracenote MusicID 1.9.3.106
    Gracenote Submit 1.9.3.136
    Gracenote DSP 1.9.3.44
    iTunes Serial Number 002FAD94098CD0E0
    Current user is not an administrator.
    The current local date and time is 2011-11-13 22:08:54.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    NVIDIA, NVIDIA GeForce GT 220
    **** External Plug-ins Information ****
    No external plug-ins installed.
    Genius ID: 2cb3fff3fa771d265b0f8ffdcca13b55
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name: {F4A2029C-16AA-4BDF-8DB7-9EC2A75B5991}
    Description: Realtek PCIe GBE Family Controller
    IP Address: 192.168.1.6
    Subnet Mask: 255.255.255.0
    Default Gateway: 192.168.1.1
    DHCP Enabled: Yes
    DHCP Server: 192.168.1.1
    Lease Obtained: Sun Nov 13 21:09:29 2011
    Lease Expires: Mon Nov 14 21:09:29 2011
    DNS Servers: 192.168.1.1
    Active Connection: LAN Connection
    Connected: Yes
    Online: Yes
    Using Modem: No
    Using LAN: Yes
    Using Proxy: No
    SSL 3.0 Support: Enabled
    TLS 1.0 Support: Disabled
    Firewall Information
    Windows Firewall is on.
    iTunes is NOT enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was successful.
    Connection attempt to Gracenote server was successful.
    Last successful iTunes Store access was 2011-11-13 22:02:08.
    **** CD/DVD Drive Tests ****
    LowerFilters: PxHlpa64 (2.0.0.0),
    UpperFilters: GEARAspiWDM (2.2.0.1),
    E: hp DVD A DH16ABLH, Rev 3HD9
    Data or MP3 CD in drive.
    Found 1 songs on CD, playing time 15:40 on CDROM media.
    Track 1, start time 00:02:00
    Get drive speed succeeded.
    The drive CDR speeds are: 8 16 24 32.
    The drive CDRW speeds are: 8.
    The drive DVDR speeds are: 8.
    The drive DVDRW speeds are: 8.
    The last failed audio CD burn had error code 4251(0x0000109b). It happened on drive E: hp CDDVDW TS-H653R on CDR media at speed 24X.
    **** Device Connectivity Tests ****
    iPodService 10.5.0.142 (x64) is currently running.
    iTunesHelper 10.5.0.142 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    Intel(R) 5 Series/3400 Series Chipset Family USB Enhanced Host Controller - 3B34. Device is working properly.
    Intel(R) 5 Series/3400 Series Chipset Family USB Enhanced Host Controller - 3B3C. Device is working properly.
    FireWire (IEEE 1394) Host Controllers:
    VIA 1394 OHCI Compliant Host Controller. Device is working properly.
    Connected Device Information:
    Bruce's iTouch, iPod touch (2nd generation) running firmware version 4.2.1
    Serial Number: 1C9053CC201
    **** Device Sync Tests ****
    Sync tests completed successfully.

    Same exact thing with me.  And no help from apple.  Just dropped nearly $600 and cannot get a decent working setup.
    Apple's only suggestion was to uninstall iTunes and Quicktime, and re-install... of course (the I.T. Crowd tactic).
    The crash happens only on iTunes store access.

  • TS1424 HELLO! whenever i try to access the itunes store from the itunes on my laptop i get this message: ITUNES HAS STOPPED WORKING a problem caused the program to stop working correctly. windows will close the program and notify if a solution is availabl

    for a few weeks i have not been able to access the itunes store from the itunes on my laptop. every time i click on it it tells me it cannot access the store...not sure why. and says this: ITUNES HAS STOPPED WORKING a problem caused the program to stop working correctly. windows will close the program and notify if a solution is available.

    I had this exact same problem.  I found this fix and it worked for me. 
    Step 1:
    Browse to C:\Program Files (x86)\Common Files\Apple\Apple Application Support and copy the filen named QTMovieWin.dll. 
    Step 2:
    Browse and past that file into C:\Program Files (x86)\iTunes.
    Hope this helps you.  I wish I could remember where I saw this originally so I could thank them.
    Good Luck.
    Anthony

  • Itunes will no longer work on my Windows 8 PC. When I attempt to start the program a message says: A problem caused the program to stop working correctly.  Windows will close the program and notify you if a solution is available.

    Itunes will no longer work on my Windows 8 PC. When I attempt to start the program a message says: A problem caused the program to stop working correctly.  Windows will close the program and notify you if a solution is available.  I have tried to uninstall iTunes but the Windows uninstaller will not delete the program I get a message that says: A network error occurred while attempting to read file: C:\Windows|Installer|iTunes.msi.  How do I get iTunes to work again?

    Whentrying to uninstall iTunes (the first program that must be uninstalled per the instructions) I get a message:  A network error occurred while attempting to read file: C:\Windows|Installer|iTunes.msi. I can't even uninstall iTunes?
    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page).
    http://majorgeeks.com/download.php?det=4459
    Here's a screenshot showing the particular links on the page that you should be clicking:
    After clicking one of the circled links, you should be taken to another page, and after a few seconds you should see a download dialog appear for the msicuu2.exe file. Here's a screenshot of what it looks like for me in Firefox:
    Choose to Save the file. If the dialog box does not appear for you, click the link on the page that says "CLICK HERE IF IT DOES NOT". Here's a screenshot of the page with the relevant link circled:
    When the dialog appears, choose to save the file.
    (2) Go to the Downloads area for your Web browser. Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

Maybe you are looking for

  • The screen has suddenly dimmed, how do i get it bright again?

    the screen my iphone 3gs has suddenly gone dim, how do i get it bright again?

  • Suitcase Fusion causing FCP bug

    Just thought id post this, Since installing Suitcase Fusion when i export a qt from fcp, where the drop down box asks you what type of markers, if any, you would like to include, rather than having the choices none,chapters only etc etc i just get a

  • Port Forwarding Stops Working WRT400N

    Is anyone else having a problem with port forwarding on their WRT400N? I'm forwarding one service (https) and this stops working if it's not accessed after a 10 days or so. The only way to get it to work again is to reboot the router. I'm running the

  • How to get execution plan from plsql

    i have a nasty sql inside plsql and want to get the execution plan. what is the best way of getting it. v_sql:= 'select loop_f1.loopid          FROM rdw.WDM_Prov seg_f1,              rdw.WDM_loop_Prov_association assoc_f1,              rdw.WDM_potent

  • Receiving Email on Blackberry 8303e

    How can I resolve this issue?  I am not receiving any emails from my gmail and AOL email accounts on my Blackberry 8303e.  When I attempt go to E-mail settings, I receive this message - "There was no domain in the certificate received to verify we ar