Concurrent modification exception. What is causing this?

Here is my the pasrt of code causing the exception I have put a line comment ti indicate the line where it occurs. In addition I would like to know the cause of this eception as its a first for me.
Here is the full exception ....
Exception in thread "AWT-EventQueue-0" java.util.ConcurrentModificationException
        at java.util.AbstractList$Itr.checkForComodification(AbstractList.java:3
72)
        at java.util.AbstractList$Itr.next(AbstractList.java:343)
        at Contact.modifyExisting(Contact.java:432)
        at Phonebook1.actionPerformed(Phonebook1.java:236)
        at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:19
95)
        at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.jav
a:2318)
        at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel
.java:387)
        at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242
        at javax.swing.AbstractButton.doClick(AbstractButton.java:357)
        at javax.swing.plaf.basic.BasicRootPaneUI$Actions.actionPerformed(BasicR
ootPaneUI.java:191)
        at javax.swing.SwingUtilities.notifyAction(SwingUtilities.java:1636)
        at javax.swing.JComponent.processKeyBinding(JComponent.java:2849)
        at javax.swing.KeyboardManager.fireBinding(KeyboardManager.java:267)
        at javax.swing.KeyboardManager.fireKeyboardAction(KeyboardManager.java:2
16)
        at javax.swing.JComponent.processKeyBindingsForAllComponents(JComponent.
java:2926)
        at javax.swing.JComponent.processKeyBindings(JComponent.java:2918)
        at javax.swing.JComponent.processKeyEvent(JComponent.java:2812)
        at java.awt.Component.processEvent(Component.java:5815)
        at java.awt.Container.processEvent(Container.java:2058)
        at java.awt.Component.dispatchEventImpl(Component.java:4410)
        at java.awt.Container.dispatchEventImpl(Container.java:2116)
        at java.awt.Component.dispatchEvent(Component.java:4240)
        at java.awt.KeyboardFocusManager.redispatchEvent(KeyboardFocusManager.ja
va:1848)
        at java.awt.DefaultKeyboardFocusManager.dispatchKeyEvent(DefaultKeyboard
FocusManager.java:697)
        at java.awt.DefaultKeyboardFocusManager.preDispatchKeyEvent(DefaultKeybo
ardFocusManager.java:962)
        at java.awt.DefaultKeyboardFocusManager.typeAheadAssertions(DefaultKeybo
ardFocusManager.java:834)
        at java.awt.DefaultKeyboardFocusManager.dispatchEvent(DefaultKeyboardFoc
usManager.java:661)
        at java.awt.Component.dispatchEventImpl(Component.java:4282)
        at java.awt.Container.dispatchEventImpl(Container.java:2116)
        at java.awt.Window.dispatchEventImpl(Window.java:2429)
        at java.awt.Component.dispatchEvent(Component.java:4240)
        at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
        at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThre
ad.java:273)
        at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.
java:183)
        at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
ad.java:173)
        at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
        at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
        at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)and the code.......
if(modifiedWork.length()>0)
                         try
                              modifiedWorkNum = Integer.parseInt(modifiedWork);
                         } //////// THIS IS LINE 372
                         catch(Exception e)
                              JOptionPane.showMessageDialog(null,"You may only enter numbers for a valid phone number to try again press the modify nutton again.","Error",JOptionPane.ERROR_MESSAGE);
                              validModify = false;
                              return;
                    }Thanks in advance...

Would you mind looking at my modifyExisting method I apologise as it is long. I have icluded a line comment on line 432.
public void modifyExisting()
     {// Start of modifyExisting()
          int count = 0;
          int count1 = 0;
          int count2 = 0;
          int modifiedCellNum, modifiedWorkNum, modifiedHomeNum = 0;
          boolean validModify = true;
          boolean found = false;
          String currentHome = "";
          String currentWork = "";
          String currentCell = "";
          if(phoneList.size() > 0)
               String nameOfContactToEdit = JOptionPane.showInputDialog(null,"Please enter the name of the contact you wish to edit details for or press cancel to exit");
               if(nameOfContactToEdit == null)
                    finish();
               if(nameOfContactToEdit.trim().length()<= 0)
                    JOptionPane.showMessageDialog(null,"You have entered an invalid name. Please try again.","Error",JOptionPane.ERROR_MESSAGE);
                    modifyExisting();
                    validModify = false;
                    return;
               String surnameOfContactToEdit = JOptionPane.showInputDialog(null,"Please enter the the surname for "+nameOfContactToEdit+" if one exists or press cancel to exit.");
               if(surnameOfContactToEdit == null)
                    finish();
               for(Person m: phoneList)
                    m = phoneList.get(count);
                    if((m.name).equals(nameOfContactToEdit.trim().toUpperCase())&&(m.surname).equals(surnameOfContactToEdit.trim().toUpperCase()))
                         currentHome = m.home;
                         currentWork = m.work;
                         currentCell = m.cell;
                         found = true;
                    count ++;
               if(found == true)
                    String modifiedName = JOptionPane.showInputDialog("Please enter the new name for contact or press cancel to keep it as "+nameOfContactToEdit+".");
                    if(modifiedName == null)
                         modifiedName = nameOfContactToEdit;
                    if(modifiedName.trim().length()<= 0)
                         JOptionPane.showMessageDialog(null,"You have entered an invalid name. Please press the modify button to try again.","Error",JOptionPane.ERROR_MESSAGE);
                         return;
                    if(modifiedName.trim().length()>10)
                         JOptionPane.showMessageDialog(null,"You may not enter a new name longer than 10 characters long. Please try again.","Error",JOptionPane.ERROR_MESSAGE);
                         validModify = false;
                         modifyExisting();
                         return;
                    String modifiedSurname = JOptionPane.showInputDialog("Please enter the new surname for contact or press cancel to keep it as "+surnameOfContactToEdit+".");
                    if(modifiedSurname == null)
                         modifiedSurname = surnameOfContactToEdit;
                    if(modifiedSurname.trim().length()>10)
                         JOptionPane.showMessageDialog(null,"You may not enter a surname longer than 10 characters long. Please try again.","Error",JOptionPane.ERROR_MESSAGE);
                         validModify = false;
                         modifyExisting();
                         return;
                    String modifiedHome = JOptionPane.showInputDialog("Please enter a new home number for "+modifiedName+" or press cancel to keep it as is.");
                    if(modifiedHome == null)
                         modifiedHome = currentHome;
                    if(modifiedHome.length()>0)
                         try
                              modifiedHomeNum = Integer.parseInt(modifiedHome);
                         catch(Exception e)
                              JOptionPane.showMessageDialog(null,"You may only enter numbers for a valid phone number to try again press the modify nutton again.","Error",JOptionPane.ERROR_MESSAGE);
                              validModify = false;
                              return;
                    if(modifiedHome.length() > 10)
                         JOptionPane.showMessageDialog(null,"You may not enter a number longer than 10 characters long. Please press the modify button to try again.","Error",JOptionPane.ERROR_MESSAGE);
                         validModify = false;
                         return;
                    String modifiedWork = JOptionPane.showInputDialog("Please enter a new home number for "+modifiedName+" or press cancel to keep it as is.");
                    if(modifiedHome == null)
                         modifiedWork = currentWork;
                    if(modifiedWork.length()>0)
                         try
                              modifiedWorkNum = Integer.parseInt(modifiedWork);
                         catch(Exception e)
                              JOptionPane.showMessageDialog(null,"You may only enter numbers for a valid phone number to try again press the modify nutton again.","Error",JOptionPane.ERROR_MESSAGE);
                              validModify = false;
                              return;
                    if(modifiedWork.length() > 10)
                         JOptionPane.showMessageDialog(null,"You may not enter a number longer than 10 characters long. Please press the modify button to try again.","Error",JOptionPane.ERROR_MESSAGE);
                         validModify = false;
                         return;
                    String modifiedCell = JOptionPane.showInputDialog("Please enter a new home number for "+modifiedName+" or press cancel to keep it as is.");
                    if(modifiedCell == null)
                         modifiedCell = currentCell;
                    if(modifiedCell.length()>0)
                         try
                              modifiedCellNum = Integer.parseInt(modifiedCell);
                         catch(Exception e)
                              JOptionPane.showMessageDialog(null,"You may only enter numbers for a valid phone number to try again press the modify nutton again.","Error",JOptionPane.ERROR_MESSAGE);
                              validModify = false;
                              return;
                    if(modifiedCell.length() > 10)
                         JOptionPane.showMessageDialog(null,"You may not enter a number longer than 10 characters long. Please press the modify button to try again.","Error",JOptionPane.ERROR_MESSAGE);
                         validModify = false;
                         return;
                    if((modifiedHome.length() <= 0) && (modifiedWork.length() <= 0) && (modifiedCell.length() <= 0))
                         JOptionPane.showMessageDialog(null,"The contact must have at least one number to be included in the phonebook. Please press modify button to try again.","Error",JOptionPane.ERROR_MESSAGE);
                         validModify = false;
                         return;
                    for(Person z: phoneList)
                         z = phoneList.get(count1);
                         if((z.name).equals(modifiedName.trim().toUpperCase()) && (z.surname).equals(modifiedSurname.trim().toUpperCase()))
                              JOptionPane.showMessageDialog(null,"You may not enter duplicate contacts. Please try again.","Error",JOptionPane.ERROR_MESSAGE);
                              validModify = false;
                              modifyExisting();
                              return;
                         count1 ++;
                    if(validModify == true)
                         for(Person contactToMod: phoneList)/////////////////////////////////////////////////////// line 432
                              contactToMod = phoneList.get(count2);
                              if((contactToMod.name.equals(nameOfContactToEdit.trim().toUpperCase())) && (contactToMod.surname.equals(surnameOfContactToEdit.trim().toUpperCase())))
                                   try
                                        contactToMod.setName(modifiedName.trim().toUpperCase());
                                        contactToMod.setSurname(modifiedSurname.trim().toUpperCase());
                                        contactToMod.setHome(modifiedHome);
                                        contactToMod.setWork(modifiedWork);
                                        contactToMod.setCell(modifiedCell);
                                        phoneList.add(contactToMod);
                                        JOptionPane.showMessageDialog(null,"Updated contact succesfully.","Information",JOptionPane.INFORMATION_MESSAGE);
                                   catch(Exception e)
                                        JOptionPane.showMessageDialog(null,"The contact was not updated. If probelm persists please contact system administrator.","Error",JOptionPane.ERROR_MESSAGE);
                              count2 ++;
               else
                    JOptionPane.showMessageDialog(null,"No contact with that name and surname exists. Please press the modify button to try again.","Error",JOptionPane.ERROR_MESSAGE);
          else
               JOptionPane.showMessageDialog(null,"The phone list is empty and there are no contacts to modify.","Information Message",JOptionPane.INFORMATION_MESSAGE);
     }// End of modifyExisting()Edited by: Yucca on May 6, 2008 8:12 PM

Similar Messages

  • My Computer freezes and the screen turns white. What would cause this?

    My mac miniComputer freezes and the screen turns white. What would cause this?

    Here is what was in the utilities for my console.
    10/22/13 9:41:59.000 AM kernel[0]: CoreStorage: fsck_cs has finished for group "3FD474FF-B711-4557-9B01-67EB19C49BDA" with status 0x00
    10/22/13 9:41:59.000 AM kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/APPLE HDD HTS541010A9E662 Media/IOGUIDPartitionScheme/Macintosh HD@2/CoreStoragePhysical/CoreStorageGroup/Macintosh HD
    10/22/13 9:41:59.000 AM kernel[0]: BSD root: disk1, major 1, minor 4
    10/22/13 9:41:59.000 AM kernel[0]: jnl: unknown-dev: replay_journal: from: 65415680 to: 68414464 (joffset 0x13218000)
    10/22/13 9:41:59.000 AM kernel[0]: IOThunderboltSwitch<0xffffff80159d4a00>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    10/22/13 9:41:59.000 AM kernel[0]: IOThunderboltSwitch<0xffffff80159d4a00>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    10/22/13 9:41:59.000 AM kernel[0]: USBMSC Identifier (non-unique): 10000E000C7F9033 0x59f 0x621 0x0, 2
    10/22/13 9:41:59.000 AM kernel[0]: jnl: unknown-dev: journal replay done.
    10/22/13 9:41:59.000 AM kernel[0]: Kernel is LP64
    10/22/13 9:41:59.000 AM kernel[0]: hfs: Removed 6 orphaned / unlinked files and 475 directories
    10/22/13 9:41:59.000 AM kernel[0]: BCM5701Enet: Ethernet address a8:20:66:0d:fc:25
    10/22/13 9:41:59.000 AM kernel[0]: AirPort_Brcm4331: Ethernet address 20:c9:d0:97:55:7f
    10/22/13 9:41:59.000 AM kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    10/22/13 9:41:59.000 AM kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    10/22/13 9:42:06.456 AM com.apple.kextd[12]: not watching F3408C38-5457-3475-AD1D-D360F815C3AD -> no volume lock to grant
    10/22/13 9:42:06.547 AM fseventsd[59]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (86493 21 86554)
    10/22/13 9:42:06.584 AM hidd[58]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    10/22/13 9:42:06.586 AM hidd[58]: void __IOHIDLoadBundles(): Loaded 0 HID plugins
    10/22/13 9:42:06.590 AM kdc[56]: label: default
    10/22/13 9:42:06.590 AM kdc[56]:     dbname: od:/Local/Default
    10/22/13 9:42:06.590 AM kdc[56]:     mkey_file: /var/db/krb5kdc/m-key
    10/22/13 9:42:06.590 AM kdc[56]:     acl_file: /var/db/krb5kdc/kadmind.acl
    10/22/13 9:42:06.598 AM airportd[74]: _processDLILEvent: en1 attached (down)
    10/22/13 9:42:06.640 AM coreservicesd[76]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    10/22/13 9:42:06.682 AM mDNSResponder[50]: mDNSResponder mDNSResponder-379.38.1 (Apr 25 2013 19:19:56) starting OSXVers 12
    10/22/13 9:42:06.000 AM kernel[0]: Previous Shutdown Cause: 3
    10/22/13 9:42:06.000 AM kernel[0]: [IOBluetoothHCIController][start] -- completed
    10/22/13 9:42:06.000 AM kernel[0]: IOBluetoothUSBDFU::probe
    10/22/13 9:42:06.000 AM kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x828A FirmwareVersion - 0x0066
    10/22/13 9:42:06.000 AM kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- this = 0xffffff80168d6c00 ****
    10/22/13 9:42:06.000 AM kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- controller = 0xffffff80168d6c00
    10/22/13 9:42:06.000 AM kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    10/22/13 9:42:06.000 AM kernel[0]: DSMOS has arrived
    10/22/13 9:42:06.000 AM kernel[0]: IOPPF: AppleIntelCPUPowerManagement mode
    10/22/13 9:42:06.000 AM kernel[0]: createVirtIf(): ifRole = 1
    10/22/13 9:42:06.000 AM kernel[0]: in func createVirtualInterface ifRole = 1
    10/22/13 9:42:06.000 AM kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1 this 0xffffff801682f000
    10/22/13 9:42:06.000 AM kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    10/22/13 9:42:06.000 AM kernel[0]: Created virtif 0xffffff801682f000 p2p0
    10/22/13 9:42:06.000 AM kernel[0]: m_tail has not been written to hardware: m_tail = 0x00000000, hardare tail register = 0x00001d08
    10/22/13 9:42:07.714 AM configd[18]: setting hostname to "kathy-winters-mac-mini-3.local"
    10/22/13 9:42:07.000 AM kernel[0]: AirPort: Link Down on en1. Reason 1 (Unspecified).
    10/22/13 9:42:07.000 AM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    10/22/13 9:42:07.717 AM configd[18]: network changed.
    10/22/13 9:42:08.210 AM fseventsd[59]: log dir: /.fseventsd getting new uuid: 5C426A11-1379-4AD6-AFD9-DF4963B9C3CB
    10/22/13 9:42:08.000 AM kernel[0]: macx_swapon SUCCESS
    10/22/13 9:42:09.264 AM mds[49]: (Normal) FMW: FMW 0 0
    10/22/13 9:42:09.446 AM com.apple.SecurityServer[15]: Session 100000 created
    10/22/13 9:42:10.000 AM kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 10-Megabit, Half-duplex, No flow-control, Debug [796d,0101,0de1,0300,0021,0000]
    10/22/13 9:42:14.849 AM appleeventsd[64]: main: Starting up
    10/22/13 9:42:16.255 AM com.apple.usbmuxd[39]: usbmuxd-323 on Jul 29 2013 at 23:21:29, running 64 bit
    10/22/13 9:42:19.119 AM com.apple.SecurityServer[15]: Entering service
    10/22/13 9:42:19.177 AM systemkeychain[79]: done file: /var/run/systemkeychaincheck.done
    10/22/13 9:42:19.185 AM configd[18]: network changed: DNS*
    10/22/13 9:42:19.187 AM mDNSResponder[50]: D2D_IPC: Loaded
    10/22/13 9:42:19.187 AM mDNSResponder[50]: D2DInitialize succeeded
    10/22/13 9:42:19.223 AM FDERecoveryAgent[82]: Waiting for CoreStorage encryption be activated, will try again in 5 seconds
    10/22/13 9:42:19.621 AM netbiosd[83]: Unable to start NetBIOS name service:
    10/22/13 9:42:20.363 AM kdc[56]: WARNING Found KDC certificate (O=System Identity,CN=com.apple.kerberos.kdc)is missing the PK-INIT KDC EKU, this is bad for interoperability.
    10/22/13 9:42:20.629 AM apsd[70]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    10/22/13 9:42:20.629 AM apsd[70]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    10/22/13 9:42:20.993 AM UserEventAgent[11]: Captive: [HandleNetworkInformationChanged:2435] nwi_state_copy returned NULL
    10/22/13 9:42:21.081 AM digest-service[105]: label: default
    10/22/13 9:42:21.081 AM digest-service[105]:     dbname: od:/Local/Default
    10/22/13 9:42:21.081 AM digest-service[105]:     mkey_file: /var/db/krb5kdc/m-key
    10/22/13 9:42:21.081 AM digest-service[105]:     acl_file: /var/db/krb5kdc/kadmind.acl
    10/22/13 9:42:21.083 AM digest-service[105]: digest-request: uid=0
    10/22/13 9:42:21.104 AM corestoraged[99]: 0x7fff720a4180 unlockLVF: LVF=E089D621-8D4E-44B9-82E5-DBFC72F26660, "AES-XTS", status = "Unlocked"
    10/22/13 9:42:21.106 AM rpcsvchost[109]: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    10/22/13 9:42:21.109 AM digest-service[105]: digest-request: init request
    10/22/13 9:42:21.113 AM digest-service[105]: digest-request: init return domain: BUILTIN server: KATHY-WINTERS-MAC-MINI-3
    10/22/13 9:42:21.301 AM coreservicesd[76]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    10/22/13 9:42:21.305 AM com.apple.kextcache[113]: /: helper partitions appear up to date.
    10/22/13 9:42:21.801 AM awacsd[68]: Starting awacsd connectivity-78.3 (Apr 25 2013 19:22:44)
    10/22/13 9:42:21.804 AM awacsd[68]: InnerStore CopyAllZones: no info in Dynamic Store
    10/22/13 9:42:22.008 AM locationd[54]: NOTICE,Location icon should now be in state 0
    10/22/13 9:42:22.000 AM kernel[0]: en1: 802.11d country code set to 'US'.
    10/22/13 9:42:22.000 AM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    10/22/13 9:42:22.000 AM kernel[0]: MacAuthEvent en1   Auth result for: d8:c7:c8:5b:d5:d0  MAC AUTH succeeded
    10/22/13 9:42:22.000 AM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    10/22/13 9:42:22.000 AM kernel[0]: AirPort: Link Up on en1
    10/22/13 9:42:22.000 AM kernel[0]: en1: BSSID changed to d8:c7:c8:5b:d5:d0
    10/22/13 9:42:22.000 AM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    10/22/13 9:42:22.195 AM loginwindow[53]: Login Window Application Started
    10/22/13 9:42:22.244 AM WindowServer[114]: Server is starting up
    10/22/13 9:42:22.247 AM WindowServer[114]: Session 256 retained (2 references)
    10/22/13 9:42:22.247 AM WindowServer[114]: Session 256 released (1 references)
    10/22/13 9:42:22.254 AM WindowServer[114]: Session 256 retained (2 references)
    10/22/13 9:42:22.705 AM WindowServer[114]: init_page_flip: page flip mode is on
    10/22/13 9:42:23.271 AM kdc[56]: KDC started
    10/22/13 9:42:23.578 AM configd[18]: network changed: v4(en1+:173.250.178.195) DNS+ Proxy+ SMB
    10/22/13 9:42:23.581 AM WindowServer[114]: mux_initialize: Couldn't find any matches
    10/22/13 9:42:23.586 AM configd[18]: setting hostname to "d-173-250-178-195.dhcp4.washington.edu"
    10/22/13 9:42:23.589 AM UserEventAgent[11]: CFPreferences: user home directory for user mobile at  is unavailable. User domains will be volatile.
    10/22/13 9:42:23.590 AM UserEventAgent[11]: Captive: en1: Probing 'University of Washington'
    10/22/13 9:42:23.599 AM WindowServer[114]: GLCompositor enabled for tile size [256 x 256]
    10/22/13 9:42:23.599 AM WindowServer[114]: CGXGLInitMipMap: mip map mode is on
    10/22/13 9:42:23.607 AM UserEventAgent[11]: Captive: Online (not captive)
    10/22/13 9:42:23.609 AM configd[18]: network changed: v4(en1!:173.250.178.195) DNS Proxy SMB
    10/22/13 9:42:23.632 AM WindowServer[114]: WSMachineUsesNewStyleMirroring: true
    10/22/13 9:42:23.632 AM WindowServer[114]: MPServiceForDisplayDevice: Invalid device alias (0)
    10/22/13 9:42:23.632 AM WindowServer[114]: Display 0x1c80d8d2: GL mask 0x4; bounds (0, 0)[1920 x 1080], 17 modes available
    Main, Active, on-line, enabled, boot, Vendor 472, Model 235, S/N 23505592, Unit 2, Rotation 0
    UUID 0x00000472000002352350559200000000
    10/22/13 9:42:23.633 AM WindowServer[114]: Display 0x003f003c: GL mask 0x1; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 0, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003c
    10/22/13 9:42:23.633 AM WindowServer[114]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    10/22/13 9:42:23.637 AM WindowServer[114]: Created shield window 0x5 for display 0x1c80d8d2
    10/22/13 9:42:23.637 AM WindowServer[114]: Created shield window 0x6 for display 0x003f003c
    10/22/13 9:42:23.637 AM WindowServer[114]: Created shield window 0x7 for display 0x003f003d
    10/22/13 9:42:23.638 AM WindowServer[114]: Display 0x1c80d8d2: GL mask 0x4; bounds (0, 0)[1920 x 1080], 17 modes available
    Main, Active, on-line, enabled, boot, Vendor 472, Model 235, S/N 23505592, Unit 2, Rotation 0
    UUID 0x00000472000002352350559200000000
    10/22/13 9:42:23.638 AM WindowServer[114]: Display 0x003f003c: GL mask 0x1; bounds (2944, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 0, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003c
    10/22/13 9:42:23.638 AM WindowServer[114]: Display 0x003f003d: GL mask 0x2; bounds (2945, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    10/22/13 9:42:23.638 AM WindowServer[114]: CGXPerformInitialDisplayConfiguration
    10/22/13 9:42:23.639 AM WindowServer[114]:   Display 0x1c80d8d2: MappedDisplay Unit 2; Vendor 0x472 Model 0x235 S/N 592467346 Dimensions 20.51 x 11.54; online enabled, Bounds (0,0)[1920 x 1080], Rotation 0, Resolution 1
    10/22/13 9:42:23.639 AM WindowServer[114]:   Display 0x003f003c: MappedDisplay Unit 0; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2944,0)[1 x 1], Rotation 0, Resolution 1
    10/22/13 9:42:23.639 AM WindowServer[114]:   Display 0x003f003d: MappedDisplay Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2945,0)[1 x 1], Rotation 0, Resolution 1
    10/22/13 9:42:24.078 AM ntpd[100]: proto: precision = 1.000 usec
    10/22/13 9:42:24.338 AM WindowServer[114]: GLCompositor: GL renderer id 0x01024400, GL mask 0x00000007, accelerator 0x00004193, unit 0, caps QEX|QGL|MIPMAP, vram 1156 MB
    10/22/13 9:42:24.338 AM WindowServer[114]: GLCompositor: GL renderer id 0x01024400, GL mask 0x00000007, texture units 8, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    10/22/13 9:42:24.342 AM loginwindow[53]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    10/22/13 9:42:24.628 AM FDERecoveryAgent[82]: Waiting for CoreStorage encryption be activated, will try again in 10 seconds
    10/22/13 9:42:24.873 AM airportd[74]: _doAutoJoin: Already associated to “University of Washington”. Bailing on auto-join.
    10/22/13 9:42:24.882 AM airportd[74]: _doAutoJoin: Already associated to “University of Washington”. Bailing on auto-join.
    10/22/13 9:42:25.125 AM com.apple.launchd[1]: (com.apple.xprotectupdater[36]) Exited with code: 252
    10/22/13 9:42:25.410 AM WindowServer[114]: Created shield window 0x8 for display 0x1c80d8d2
    10/22/13 9:42:25.410 AM WindowServer[114]: Display 0x1c80d8d2: MappedDisplay Unit 2; ColorProfile { 2, "Acer G245HQL"}; TransferFormula (1.000000, 1.000000, 1.000000)
    10/22/13 9:42:25.427 AM launchctl[126]: com.apple.findmymacmessenger: Already loaded
    10/22/13 9:42:25.441 AM com.apple.SecurityServer[15]: Session 100004 created
    10/22/13 9:42:25.472 AM airportd[74]: _doAutoJoin: Already associated to “University of Washington”. Bailing on auto-join.
    10/22/13 9:42:25.542 AM configd[18]: network changed: v4(en0+:128.95.5.135, en1) DNS! Proxy! SMB
    10/22/13 9:42:25.548 AM configd[18]: setting hostname to "d-128-95-5-135.dhcp4.washington.edu"
    10/22/13 9:42:25.567 AM locationd[134]: NOTICE,Location icon should now be in state 0
    10/22/13 9:42:25.573 AM UserEventAgent[127]: cannot find useragent 1102
    10/22/13 9:42:25.600 AM loginwindow[53]: Login Window Started Security Agent
    10/22/13 9:42:25.667 AM SecurityAgent[136]: This is the first run
    10/22/13 9:42:25.667 AM SecurityAgent[136]: MacBuddy was run = 0
    10/22/13 9:42:25.676 AM WindowServer[114]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x1c80d8d2 device: 0x103f34110  isBackBuffered: 1 numComp: 3 numDisp: 3
    10/22/13 9:42:25.869 AM SecurityAgent[136]: User info context values set for kathywinter
    10/22/13 9:42:25.990 AM WindowServer[114]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    10/22/13 9:42:26.013 AM WindowServer[114]: Display 0x1c80d8d2: MappedDisplay Unit 2; ColorProfile { 2, "Acer G245HQL"}; TransferFormula (1.000000, 1.000000, 1.000000)
    10/22/13 9:42:26.026 AM WindowServer[114]: Display 0x1c80d8d2: MappedDisplay Unit 2; ColorProfile { 2, "Acer G245HQL"}; TransferFormula (1.000000, 1.000000, 1.000000)
    10/22/13 9:42:26.295 AM loginwindow[53]: Login Window - Returned from Security Agent
    10/22/13 9:42:26.298 AM loginwindow[53]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort, err: 1102
    10/22/13 9:42:26.308 AM loginwindow[53]: USER_PROCESS: 53 console
    10/22/13 9:42:26.321 AM airportd[74]: _doAutoJoin: Already associated to “University of Washington”. Bailing on auto-join.
    10/22/13 9:42:26.755 AM com.apple.launchd.peruser.501[148]: (com.apple.gamed) Ignored this key: UserName
    10/22/13 9:42:26.755 AM com.apple.launchd.peruser.501[148]: (com.apple.gamed) Ignored this key: GroupName
    10/22/13 9:42:26.756 AM com.apple.launchd.peruser.501[148]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    10/22/13 9:42:26.760 AM loginwindow[53]: Connection with distnoted server was invalidated
    10/22/13 9:42:26.765 AM distnoted[154]: # distnote server agent  absolute time: 42.067362814   civil time: Tue Oct 22 09:42:26 2013   pid: 154 uid: 501  root: no
    10/22/13 9:42:27.409 AM UserEventAgent[153]: cannot find fw daemon port 1102
    10/22/13 9:42:27.844 AM com.apple.SecurityServer[15]: Session 100005 created
    10/22/13 9:42:28.028 AM WindowServer[114]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    10/22/13 9:42:28.048 AM WindowServer[114]: Display 0x1c80d8d2: MappedDisplay Unit 2; ColorProfile { 2, "Acer G245HQL"}; TransferFormula (1.000000, 1.000000, 1.000000)
    10/22/13 9:42:28.168 AM mds[49]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    10/22/13 9:42:28.169 AM mds[49]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    10/22/13 9:42:31.327 AM timezoned[183]: bootstrap_look_up failed (44e)
    10/22/13 9:42:31.336 AM timezoned[183]: bootstrap_look_up failed (44e)
    10/22/13 9:42:34.612 AM mds[49]: Unable to talk to lsboxd
    10/22/13 9:42:34.674 AM FDERecoveryAgent[82]: Waiting for CoreStorage encryption be activated, will try again in 20 seconds
    10/22/13 9:42:34.768 AM com.apple.time[153]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    10/22/13 9:42:37.163 AM awacsd[68]: Exiting
    10/22/13 9:42:38.863 AM com.apple.launchd.peruser.501[148]: (com.apple.AddressBook.abd) Throttling respawn: Will start in 9 seconds
    10/22/13 9:42:42.685 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.685 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.714 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.714 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.733 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.733 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.752 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.752 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.771 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.771 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.789 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.789 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.808 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.808 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.827 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.827 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.845 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.845 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.864 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.864 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:43.000 AM kernel[0]: Sophos Anti-Virus on-access kext activated
    10/22/13 9:42:46.750 AM com.apple.launchd[1]: (com.apple.coreservices.appleid.authentication[131]) Exit timeout elapsed (20 seconds). Killing
    10/22/13 9:42:49.603 AM SystemUIServer[175]: CGSCopyWindowShape: pid (175) passed NULL window
    10/22/13 9:42:49.603 AM SystemUIServer[175]: could not update menu bar region, 1000
    10/22/13 9:42:49.603 AM SystemUIServer[175]: CGSSetWindowTransformAtPlacement: Singular matrix [0.000 0.000 0.000 0.000]
    10/22/13 9:42:49.817 AM coreaudiod[197]: Enabled automatic stack shots because audio IO is inactive
    10/22/13 9:42:53.000 AM kernel[0]: jnl: disk2s6: flushing fs disk buffer returned 0x5
    10/22/13 9:42:54.715 AM FDERecoveryAgent[82]: Waiting for CoreStorage encryption be activated, will try again in 40 seconds

  • I have an Apple MacBook Pro and when surfing the web my computer will slow to a crawl and I will have a multi-colored spinning wheel visible until my latest request is handled.  What is causing this and is there a way to prevent this from occuring

    I have a MacBook Pro.  When surfing the web it will eventually slow to a crawl.  When this occurs, there will be a small multi-colored wheel spinning until my latest command is handled.  What is causing this and is there a way that I can modify or prevent this from happening?  Is there a setting that will prevent this?

    When you next have the problem, note the exact time: hour, minute, second.
    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Scroll back in the log to the time you noted above. Select any messages timestamped from then until the end of the episode, or until they start to repeat. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Trash will not delete from trash folder! What can cause this effect?

    Trash will not delete from trash folder! What can cause this effect?

    u can actually force it to delete, oviously i assume you dont have the application or data etc open neware else?
    try restarting your computer, go into finder close all your open applications etc, servers, **** even clear your data in your web browser, do a disk utility check and verify your drives and repair em if nessicary.
    as chamar suggested look at http://www.thexlab.com/faqs/trash.html
    i had the same problem before but with a good 5-10 minutes of googling i was able to solve it..
    best of luck

  • I can't click on the icons at the top of a site. What's causing this?

    I have firefox and it's having a strange problem today. When I'm on facebook, I can't click on the icons at the top. I can't click the message, friend request, notifications, home, profile icons and can't click the one that allows you to sign out. So i can't even sign out. What I mean by can't click is when I put the cursor over those icons, it doesn't change into the finger. When I left click it anyway, nothing happens. This doesn't happen in internet explorer, but I want to keep using firefox. What's causing this? I also noticed that this doesn't just happen on facebook. I've uninstalled and reinstalled firefox. I restarted the PC. It didn't help.

    The Yahoo! Toolbar extension has been reported to cause this issue.
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • I have two graphics workers on osx 8.  They are both complaining that their files are changing label colors on it own.  Any idea what could cause this?

    I have two graphics workers on osx 8.  They are both complaining that their files are changing label colors on it own.  Any idea what could cause this?

    and there were and have been problems with any two nvidia cards which was the main part of my question.
    To provie details try pasting all but serial number from system profile. Sorry but Mac Pro tells me nothing, not model, year, or what graphic card it came with or updated with.

  • For some reason the Apple ID window in iTunes  and App Store now seems to have a character number constraint. As a result I am unable to enter the final few characters of my Apple ID which I have had for many years. Does anyone know what has caused this?

    For some reason the Apple ID window in iTunes and App Store now seems to suddenly have a character number constraint which prevents me using my 29 character Apple ID. As a result I am unable to enter the final few characters of my Apple ID which I have had for many years. Does anyone know what has caused this?

    You need to ask Apple for assistance with getting back into your old ID. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to resolve this issue through the Account Security team, fill out and submit this form.
    (118441)

  • I have a Macbook Pro purchased brand new. I take high quality pictures for customers, these display perfect on my laptop but appear CORRUPT on a USB stick. What is causing this? I can't seem to fix this issue. PLEASE HELP!!

    I have a Macbook Pro purchased brand new. I take high quality pictures for customers, these display perfect on my laptop but appear CORRUPT on a USB stick. What is causing this? I can't seem to fix this issue. PLEASE HELP!!
    I really need this issue resolved it is driving me insane!!! How can the images appear perfectly fine on my laptop then when transferring over to a USB stick they just  corrupt!?

    Check out this site:
    http://osxdaily.com/2012/04/22/format-drive-mac-pc-compatible/
    That will show you how to format a USB stick for use on both PC and Mac.
    If the problem continues take it to an Apple store and have them check it out.
    >Also what s exFAT?<
    From:
    http://en.wikipedia.org/wiki/ExFAT
    "exFAT (Extended File Allocation Table) is a Microsoft file system optimized for flash drives.[3] It is proprietary and patented."
    That first site explains it at length.

  • What is causing this problem and what are you doing to fix it? Should I just go back to Internet Explorer?

    Every single day, Firefox crashes and sometimes in the most inopertune time. This is very frustrating as some of the times I can not go back in and correct what I was not able to do due to your site crashing. What is causing this problem and what are you doing to fix it? Should I just go back to Internet Explorer?

    First, you must use a specific [[Managing profiles|profile]] for Firefox 4.0 Beta and keep your current one for Firefox 3.6 to prevent interferences between the two versions.
    For your problem:
    # [[Troubleshooting extensions and themes]] could be a cause.
    # If not 1. and if it does not happen in [[Safe Mode]], you must disable HW acceleration in Options > Advanced > General. If it solves your issue, your graphic driver is out-of-date and must be updated. Go to your computer manufacturer support site.

  • Audition REALLY SLOW all of a sudden. What could cause this?

    Within the last week Audition has gotten slower and slower. It takes 5-10 seconds at least for playback to start. It has become unworkable. What could cause this and what settings should I change to fix it?
    Thanks for any help!

    SteveG(AudioMasters) wrote:
    Don't worry about Eric - he's already admitted that he's got a thing about building up a huge points score... although precisely where that's going to get him, I don't know. I only answer questions here now because I feel a little sorry for the poor saps who, in all innocence, try to get anything at all meaningful out of this pathetic apology for a forum. Generally, AudioMasters is a much better bet these days. Okay I'm biased about that, but after all it is the modern incarnation of the original Syntrillium forum...
    I want the largest point score EVER!
    I covet every gold star with a green check-mark!
    I want all my little red bars filled!*
    I want to keep my name on top and never let it drop!!
    I want to complete the Herculean task of climbing the virtual forum mountain to reach the peak, thus achieving the exalted title of
    COMMUNITY EXPERT!!! (cue trumpet fanfare)
    *Once those are filled, are they like health points in a video game?  Do I then get to square off with some giant, Photoshopped community expert from another forum for the right to become King of the Bad Forums?  Maybe they just invite all the red-bar-full folks to some virtual tea party so they can all chat with each other about how wonderful it is to be in the exclusive red-bar club because they spent so much time posting on these forums rather than, say, being busy acutally using the software.
    (Sometimes I forget that subtle sarcasm just doesn't translate well on the internet.)
    I still don't know the point of the points, and perhaps never will.

  • I have iTunes version 10.7.0.21 for Windows 7.  It was working fine untill recently.  Now when I play a T.V. show the audio cuts in and out, the video pauses intermittenly and also intermittenly fast forwards.  What is causing this and how do I fix it?

    I'm having problems with video play back in itunes 10.7.0.21 for windows 7.  Video was playing fine, but now I'm having audio issues.  Audio cuts in and out.  Also video pauses and fast forwards.  Does anyone know what would cause this all the suddenly?  More importantly does anyone know how to fix this?

    All sorted now. Thread can be closed!

  • App size in system information not the same as app size in finder. What's causing this or which is right?

    As you can see from the image above, finder is showing that apps are taking up nearly 30 GB, nearly 25 GB less than system information. What is causing this or which one is the actual size of the apps. It's not as if I'm runing out of space , I'm just a bit curious.

    Now Carolyn, hopefully It'll work now!

  • Headphone jack not working on new Macbook Pro what is causing this?

    My 17 inch Macbook Pro is less than two weeks old. The headphone jack does not recognize the headphones about half the time. This occurs with several pairs of headphones and yes, they are ther right size. This is really frustrating on a brand new 3500 dollar machine. What is causing this? It almost seems as if the headphones cannot make contact due to the fact that the connection is too far recessed. I don't live near an Apple store so dealing with this is going to be a P.I.T.A. Anyone have any ideas on how I might fix this issue? Thanks!

    Hi, and thanks for your reply. I didn't have a red light emitting from the jack. I had already checked in the sound preferences to make sure the settings were correct. The headphones were not being recognized. This was not working with several differing sets of headphones. I made a phone appt. with Applecare. The laptop PRAM was reset and it works. There is still a bit of a delay when I plug in the headphones before they are recognized and I do feel the port is just a bit "off" as the no headphones plug all the way in. They seem to just sit almost flush but, not quite. However, resetting it resolved the issue to a satifactory level. Applecare said the issue was that not enough power was getting to that function on my laptop. They gave me the case number and I can use it if I have any further problem when I take the laptop in with me to any Apple service center. I was quite satisfied with how this was handled by Apple and if I have anymore issues will follow up.
    I love  this laptop but, even though this is working now I do feel that port is somewhat recessed a bit much.
    I also want to add that this is my first Mac and despite having had this issue I was extremely impressed with the Applecare call that I got to help resolve this. One of the reasons I went with a Mac was the reputation for service Apple has. I was fed up with Sony to the hilt. I was glad I went with this Mac despite the headphone issue because had I still been with Sony, I'd have been give a major run around to deal with this issue. So far, Apple has tried everything possible to help me with this and assured me should I have any further issue they will immediately resolve it or give me a new machine. WAY better than dealing with Sony! I do not regret going with this MAC headphone issue or not!

  • I have recently got a new replacement iPhone 4.  since I got this I have found that my data allowance is getting used up during the night while my phone is charging on the bedside table.  How an I find out what is causing this and stop it happening

    I have recently got a new replacement iPhone 4.  Since I got this I have found that my data allowance is getting used up during the night while my phone is charging on the bedside table.  How an I find out what is causing this and stop it happening?  Some nights the usage is 150 meg!

    You can not access the backup directly.
    Did you restore your replacement from this backup?
    If so then you already have everything in the backup on your device.
    If not, you can wipe the device and restore from this backup:
    Settings > General > Reset > Erase All Content & Settings
    What is it you are worried about losing that isn't already on your current device?

  • Since installing Snow Leopard and Lion two weeks ago, my iTunes program opens seemingly at will.  It usually starts playing music, too.  What is causing this?

    Since installing Snow Leopard and then Lion on my Intel-based iMac two weeks ago, my iTunes program seems to open at will whenever the computer is on.   It often begins playing music, as well.  What is causing this and how do I make it stop?

    There are ways to minimize, mitigate, and help avoid a lot of problems.
    Bootable backups.
    Zeroing a drive twice before using, and format it with SL DVD Apple Disk Utility for sure.
    Even a clean install should import old apps without having to reauthorize.
    If you must do an upgrade, do it from the SL DVD, after repairing the drive and be sure to use the SL version of Alsoft Disk Warrior (4.2).
    Wait six months before jumping on a new OS.
    10% is still too many. Yes, it is more sensitive to RAM and hard drive errors, doesn't like some controllers; most ext hdd cases; and enough software to make for test-only status. And it only IDs some known incompatible applications, drivers, extensions, etc and does not remove even those always in best manner.
    Plus, there are problems with the new Rosetta and the cache files it now uses. So some apps and plug-ins will cause more trouble. Not all are ready. Good reason to hold off for the months it takes.
    Other devices act different as far as on/off behavior.
    (Migrating from G5s to Mac Pro can cause all kinds of problems, weird behavior, sluggish system, and why anyone that went down that road was strongly recommended to NOT use Migration Assistant for any of their applications, and to ONLY do clean/fresh installs of any apps. If you skipped that day, didn't read the Guide to M.A., or didn't want to do fresh installs then, your system could have been on borrowed time. If you did do clean install of applications, great.
    Installing SL can result in a corrupt directory - I think and it "seems" to be happening, but no real proof, just gut feeling and instinct (underlying file system problem? weak sectors that pre-existed waiting to happen?).
    Remember all the "there just aren't a lot of 64-bit drivers" for Vista and XP? it's come home to roost.
    ... my guess is not enough incense and offerings. To hop into TimeMachine and SuperDuper backup images and pull the 1TB for another day (week, month, year).

  • Myfi is running very slow, what can cause this?

    Myfi is running very slow, what can cause this?

    Either a service problem in your area or a glitch/hardware problem on the Jetpack.
    To determine service problems simply travel to a different area and rerun your speed test.  If the problem persists then its a glitch/hardware problem on the Jetpack.  If not then its a service problem in that particular area that would need to be addressed by VZW or improved with the usage of antennas/boosters.
    When performance testing be sure to use a tool that is universal to better illustrate the problem.  For example a common utility is to speed test using www.speedtest.net.  Run this test a few times to build an average and then perform the same tests in a different location or after changing something around.

Maybe you are looking for