TS1424 Trying to DL a free app & I'm getting a message saying my billing info is needed because my security code is wrong. Once I put it in,I'm still getting the same error message

Trying to DL a free app & I'm getting a message saying my billing info is needed because my security code is wrong. Once I put it in,I'm still getting the same error message

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

Similar Messages

  • HT1926 reinstalled itunes after unistalling it due to error message during update. after it was completly unistalled still has the same error message: service "apple mobile device" (apple mobile device) failed to start, verify you have sufficient priviled

    I was prompted to update itunes this evening. I did and in the process, it came up with the following error message: Service "apple mobile device" (apple mobile device) failed to start. Verify you have sufficient priviledges to start system services. I unistalled itunes completly and reinstalled but am still getting the same error message. If I click "ignore" the program will finish downloading but will not launch due to "not being installed correctly". Please help, I use this program alot with my first grade classroom and they're expecting their listening center in the morning.

    Hey I finally got an older vesion of itunes to work!!! 10.7  x64 for windows 7
    After uninstalling all apple products even  quicktime
    I had to delete everything from (program files, and program  files x64, program data,)
    And all downloads from apple, and I went in to search deleted  other stuff from apple, and itunes
    But definently not my itunes library and Playlist
    Down loaded 10.7 x64 for windows 7, but checked (do not start  when done)
    Then I emptied my recycling bin and restarted my  PC
    I ran geek tech tool box same as reg cure pro, also PC Tools  registry cleaner, and CC Cleaner
    Then I emptied my recycling bin and restarted my  PC
    And wallah... It finally works, and I Love the older version  anyways.
    Easier to download and transfer  music!!!!!

  • Still have the same error messages

    Hi Rajiv,
    Thanks a lot for your help. I tried to load the java package
    before I exported my images. The loading java worked sucessfully,
    however the same error messages came out when I exported images.
    Actually, I stored five JPEG images as ORDSYS.ORDImage in a table
    for a test. Below is my image-loading codes and the images are
    truely in the database since I proved it by running a
    check-properties script.
    -- This program will create a table called imgtable and import
    -- five .jpg files into it. Also the status of the images will
    -- be checked.
    connect imgdemo/imgdemo;
    set serveroutput on
    set echo on
    -- decomment for demo images
    drop table imgtable;
    create table imgtable (id number,
    Image ORDSYS.ORDImage);
    -- Insert a row with empty BLOB.
    insert into imgtable values(1,ORDSYS.ORDImage.init());
    -- Insert a row with empty BLOB.
    insert into imgtable values(2,ORDSYS.ORDImage.init());
    -- Insert a row with empty BLOB.
    insert into imgtable values(3,ORDSYS.ORDImage.init());
    -- Insert a row with empty BLOB.
    insert into imgtable values(4,ORDSYS.ORDImage.init());
    -- Insert a row with empty BLOB.
    insert into imgtable values(5,ORDSYS.ORDImage.init());
    --importimg.sql
    set serveroutput on
    set echo on
    -- Import the two files into the database.
    DECLARE
    obj ORDSYS.ORDIMAGE;
    ctx RAW(4000) := NULL;
    BEGIN
    -- This imports the image file img71.gif from the IMGDIR
    directory
    -- on a local file system (srcType=FILE) and sets the properties.
    select Image into obj from imgtable where id = 1 for update;
    obj.setSource('FILE','IMGDIR','1.jpg');
    obj.import(ctx);
    update imgtable set image = obj where id = 1;
    commit;
    -- This imports the image file img50.gif from the IMGDIR
    directory
    -- on a local file system (srcType=FILE) and sets the properties.
    select Image into obj from imgtable where id = 2 for update;
    obj.setSource('FILE','IMGDIR','2.jpg');
    obj.import(ctx);
    update imgtable set image = obj where id = 2;
    commit;
    select Image into obj from imgtable where id = 3 for update;
    obj.setSource('FILE','IMGDIR','3.jpg');
    obj.import(ctx);
    update imgtable set image = obj where id = 3;
    commit;
    select Image into obj from imgtable where id = 4 for update;
    obj.setSource('FILE','IMGDIR','4.jpg');
    obj.import(ctx);
    update imgtable set image = obj where id = 4;
    commit;
    select Image into obj from imgtable where id = 5 for update;
    obj.setSource('FILE','IMGDIR','5.jpg');
    obj.import(ctx);
    update imgtable set image = obj where id = 5;
    commit;
    END;
    -- chkprop.sql
    set serveroutput on;
    --connect imgdemo/imgdemo
    --Query imgtable for ORDSYS.ORDImage.
    DECLARE
    image ORDSYS.ORDImage;
    idnum integer;
    properties_match BOOLEAN;
    BEGIN
    FOR I IN 1..5 LOOP
    SELECT id into idnum from imgtable where id=I;
    dbms_output.put_line('image id: '|| idnum);
    SELECT Image into image from imgtable where id=I;
    properties_match := image.checkProperties;
    IF properties_match THEN DBMS_OUTPUT.PUT_LINE('Check Properties
    Succeeded');
    END IF;
    dbms_output.put_line('image height: '|| image.getHeight);
    dbms_output.put_line('image width: '|| image.getWidth);
    dbms_output.put_line('image MIME type: '||
    image.getMimeType);
    dbms_output.put_line('image file format: '||
    image.getFileFormat);
    dbms_output.put_line('BLOB Length: '||
    TO_CHAR(image.getContentLength));
    dbms_output.put_line('-------------------------------------------');
    END loop;
    END;
    The program that I used to export images is as follows:
    -- retrive an image in the database and display it
    connect internal;
    CALL DBMS_JAVA.GRANT_PERMISSION (
    'IMGDEMO',
    'java.io.FilePermission',
    '/home/oracle/img/test.dat',
    'write');
    CONNECT imgdemo/imgdemo;
    SET SERVEROUTPUT ON
    SET ECHO ON
    create or replace directory imgdir
    as '/home/oracle/img';
    grant read on directory imgdir to public with grant option;
    (line 1) DECLARE
    src ORDSYS.ORDImage;
    ctx RAW(4000) := NULL;     
    BEGIN
    -- Select the desired photograph from the stockphotos table.
    SELECT Image INTO src FROM imgtable WHERE id = 1;
    ORDSYS.ORDIMAGE.export(src, ctx,'FILE','IMGDIR','test.dat');
    EXCEPTION
    WHEN OTHERS THEN
    RAISE;
    -- EXCEPTION
    --WHEN ORDSYS.ORDSourceExceptions.METHOD_NOT_SUPPORTED THEN
    -- DBMS_OUTPUT.put_line('Source METHOD_NOT_SUPPORTED caught');
    --WHEN ORDSYS.ORDSourceExceptions.SOURCE_PLUGIN_EXCEPTION THEN
    -- DBMS_OUTPUT.put_line('SOURCE PLUGIN EXCEPTION caught');
    --WHEN OTHERS THEN
    -- DBMS_OUTPUT.put_line('OTHER EXCEPTION caught');
    END;
    host ls -l ~/img/test.dat;
    The error message is as follows:
    ERROR at line 1:
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "ORDSYS.ORDSOURCE", line 354
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at line 13
    I really tried everything to fix it and still doesn't work. I
    guess maybe the export method is not implemented for intermedia.
    Best regards,
    Kai

    Kai,
    You're almost there! I apologize for not providing a complete
    response previously. I thought the webiv note had sufficient
    details on java file permissions.
    For export to work, ORDSYS needs write permissions on the file
    as well.
    call DBMS_JAVA.GRANT_PERMISSION( 'ORDSYS',
                                     'java.io.FilePermission',
                                     '/home/oracle/img/test.dat',
                                     'write');The interMedia documentation doesn't correctly describe all the
    requirements for granting file write access using
    DBMS_JAVA.GRANT_PERMISSION. You must
    either grant write access to public, or to both a specific user
    and the ORDSYS user name. For example, you might grant write
    access to all files in all directories to ORDSYS and write access
    to all files in a specific directory to SCOTT.
    call DBMS_JAVA.GRANT_PERMISSION( 'ORDSYS',
                                     'java.io.FilePermission',
                                     '<<ALL FILES>>',
                                     'read,write');
    call DBMS_JAVA.GRANT_PERMISSION( 'SCOTT',
                                     'java.io.FilePermission',
                                     'D:\ordjava\test\data\*',
                                     'read,write');See the security and performance section in Oracle Java
    Developer's Guide and the java.io.FilePermission class in the
    Java API for more.
    Hope that helps,
    Rajiv

  • HT203322 Still having issues with installing Yosemite after deleting "Backups.backupdb" on the internal hard drive.  I have restarted multiple times and cannot find any other back up files, yet I still receive the same error message during installation.

    I am using a 2011 iMac on 10.6.8. I recently downloaded the Yosemite upgrade and during the installation process ran into the "this disk is used for time machine backups". I ejected the external drive I use for time machine backups and turned off time machine in the application. I then followed the instructions of the help article (OS X: Cannot install on a volume used by Time Machine for backups - Apple Support) by moving the folder "Backups.backupdb" that I was able to find on my internal hard drive to the trash. I have restarted several times after completing this process. I am still running into the same error during the installation process. I have searched the hard drive for any other backups and I cannot find any. I searched the hard drive using the command cmd-shift-g and searched for “backups.backupdb” and was unable to find any folders or files. Any other suggestions?

    I have resolved the problem - I did not actually delete the "backups.backupdb" folder, I only deleted the contents of the folder.  I must have only searched on the user account for the folder after I thought I had deleted it.  Thank you for the assistance everyone and I apologize for the inconvenience!

  • HT3275 This help article says Red "i" message: "Unable to complete backup. An error occurred while copying files to the backup volume."  Restart, then try the backup once again."  OK, I've done that a few times and still receive the same error message. No

    My Time Machine backup is repeatedly failing -- instead I receive a message saying it's unable to complete backup because an error has occured.  The only "Help" advice is to restart the computer and try to back up again, but that did not solve the problem. Help, please?

    Restart the whole network.. not just the computer.. restart in correct order with everything off.
    modem
    TC or router
    clients
    2min gap.
    If you still have trouble, give us the whole network layout.. what broadband? what modem? any other router? are you using wireless? what mode is the TC in?
    I am assuming you are using a time capsule.

  • I too cannot download latest itunes version. Am seeing all of the same error messages. MSVCR80.dll is missing from computer. For windows "Error 7 (Windows error 126) appears. Must be a defect in the lastest software update. How do you get Apple to respond

    I too cannot download latest itunes version. Apple needs to respond and fix what is certainly a software defect. Am seeing all of the same error messages including MSCVR80.dll is missing from computer. For Windows 7 a "Error 7 (Windows errror 126) appears. How do you get Apples's attention. It is impossible to link up with real support from their website?

    Remove old Apple programs, and use Explorer web-browser. (Firefox or Chrome will not do)

  • After installing the last version of iTunes, it failed to lunch and gave me 2 Error messages with Error 7 title , rebeat installation several times with the same Error message, what shall I do?

    Once I finish upgrading iTunes on my Windows PC, I had an Error as t shown on the image below which doesn't allow the iTunes App to lunch.
    Please advise what shall I do ?

    Uninstall your existing copy of iTunes. Delete any copies of the iTunesSetup.exe (or iTunes64Setup.exe) installer files from your downloads areas for your web browsers and download a fresh copy of the iTunes installer from the Apple website:
    http://www.apple.com/itunes/download/
    (The current build of the 11.1.4.62 installer was changed a few days ago, which fixed the bulk of the reports of MSVCR80.dll/R6034/APSDaemon.exe/Error-7/AMDS-could-not-start trouble ... but the build number on the installer was not changed. So we're trying to make sure you do the reinstall using a "new good" 11.1.4.62 installer instead of an "old bad".)
    Does the install with the new copy of the installer go through properly? If so, does that clear up the error message?
    If you still have the same error messages cropping up, then try the procedures from the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • Safari won't open.  I get an error message saying the pp quit unexpectedly.  If I click on the 'reopen' button, I just get the same error message.

    I'm using Mavericks on an iMac.  when I try to open Safari I get the error message 'aplication quit unexpectedly'.  When I click the 'reopen' button, I just get the same error message.  Any suggestions to fix it?
    MJF

    Here is the crash report:
    Process:    
    Safari [781]
    Path:       
    /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: 
    com.apple.Safari
    Version:    
    7.0.1 (9537.73.11)
    Build Info: 
    WebBrowser-7537073011000000~21
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [188]
    Responsible:
    Safari [781]
    User ID:    
    501
    Date/Time:  
    2014-01-14 15:27:56.428 +0000
    OS Version: 
    Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  DE303636-5980-86E0-2098-CB817D8C0084
    Crashed Thread:  15
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: EXC_I386_GPFLT
    External Modification Warnings:
    Thread creation by external task.
    Application Specific Information:
    Process Model:
    Multiple Web Processes
    Enabled Extensions:
    com.app34068-DU386F5V4G (176 - 1.176) GoPhoto.it
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib   
    0x00007fff881cea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff881cdd18 mach_msg + 64
    2   com.apple.CoreGraphics   
    0x00007fff91e23994 _CGSGetDisplaySystemState + 102
    3   com.apple.CoreGraphics   
    0x00007fff91e2389a CGSGetDisplaySystemState + 84
    4   com.apple.CoreGraphics   
    0x00007fff91e237e9 get_current_display_system_state + 76
    5   com.apple.CoreGraphics   
    0x00007fff91e28a93 get_display_logging + 62
    6   com.apple.CoreGraphics   
    0x00007fff91e28ad4 updateAllDisplayInfoAsNeeded + 15
    7   com.apple.CoreGraphics   
    0x00007fff91ee797a CGSCopyDisplayUUID + 63
    8   com.apple.AppKit         
    0x00007fff8d2151ef -[NSScreen _copyDisplayUUID] + 33
    9   com.apple.AppKit         
    0x00007fff8cbfa019 +[NSScreen _screenForUUID:] + 183
    10  com.apple.AppKit         
    0x00007fff8cbf9eab _NXScreenForRectOnSpace + 86
    11  com.apple.AppKit         
    0x00007fff8cbf9ad1 +[NSScreen mainScreen] + 182
    12  com.apple.AppKit         
    0x00007fff8cbfc602 -[NSWindow _initContent:styleMask:backing:defer:contentView:] + 350
    13  com.apple.AppKit         
    0x00007fff8ce85460 -[NSPanel _initContent:styleMask:backing:defer:contentView:] + 51
    14  com.apple.AppKit         
    0x00007fff8cbfc498 -[NSWindow initWithContentRect:styleMask:backing:defer:] + 45
    15  com.apple.AppKit         
    0x00007fff8ce85413 -[NSPanel initWithContentRect:styleMask:backing:defer:] + 78
    16  com.apple.AppKit         
    0x00007fff8cbf8405 -[NSWindowTemplate nibInstantiate] + 561
    17  com.apple.AppKit         
    0x00007fff8cbce550 -[NSIBObjectData instantiateObject:] + 309
    18  com.apple.AppKit         
    0x00007fff8cbcd845 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 413
    19  com.apple.AppKit         
    0x00007fff8cbc25fe loadNib + 327
    20  com.apple.AppKit         
    0x00007fff8cbc1b9c +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 288
    21  com.apple.AppKit         
    0x00007fff8ce565b2 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 140
    22  com.apple.AppKit         
    0x00007fff8cf2dc8c _NXLoadNib + 193
    23  com.apple.AppKit         
    0x00007fff8cf2d69f -[NSAlert init] + 95
    24  com.apple.AppKit         
    0x00007fff8cf6a658 +[NSAlert alertWithMessageText:defaultButton:alternateButton:otherButton:informativeTextW ithFormat:] + 141
    25  com.apple.AppKit         
    0x00007fff8cbe4119 __55-[NSPersistentUIRestorer promptToIgnorePersistentState]_block_invoke + 1038
    26  com.apple.AppKit         
    0x00007fff8cbe3cce -[NSApplication _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 28
    27  com.apple.AppKit         
    0x00007fff8cbe3c6f -[NSPersistentUIRestorer promptToIgnorePersistentState] + 213
    28  com.apple.AppKit         
    0x00007fff8cbe3b93 -[NSPersistentUIManager promptToIgnorePersistentState] + 28
    29  com.apple.AppKit         
    0x00007fff8cbe39b4 -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 252
    30  com.apple.AppKit         
    0x00007fff8cbe3789 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 557
    31  com.apple.AppKit         
    0x00007fff8cbe31eb -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 242
    32  com.apple.Foundation     
    0x00007fff8fabaeaa -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 294
    33  com.apple.Foundation     
    0x00007fff8fabad1d _NSAppleEventManagerGenericHandler + 106
    34  com.apple.AE             
    0x00007fff86b64e1f aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 381
    35  com.apple.AE             
    0x00007fff86b64c32 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31
    36  com.apple.AE             
    0x00007fff86b64b36 aeProcessAppleEvent + 315
    37  com.apple.HIToolbox      
    0x00007fff8a6935f1 AEProcessAppleEvent + 56
    38  com.apple.AppKit         
    0x00007fff8cbdf0f6 _DPSNextEvent + 1026
    39  com.apple.AppKit         
    0x00007fff8cbde8db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    40  com.apple.Safari.framework
    0x00007fff8ff97ec0 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 161
    41  com.apple.AppKit         
    0x00007fff8cbd29cc -[NSApplication run] + 553
    42  com.apple.AppKit         
    0x00007fff8cbbd803 NSApplicationMain + 940
    43  com.apple.Safari.framework
    0x00007fff90169f3d SafariMain + 267
    44  libdyld.dylib            
    0x00007fff92c445fd start + 1
    Thread 1:
    0   libsystem_kernel.dylib   
    0x00007fff881d2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8cbb8fb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff881d3662 kevent64 + 10
    1   libdispatch.dylib        
    0x00007fff9151e43d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib        
    0x00007fff9151e152 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff881d2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8cbb8fb9 start_wqthread + 13
    Thread 4:: WebCore: IconDatabase
    0   libsystem_kernel.dylib   
    0x00007fff881d2716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb6c3b _pthread_cond_wait + 727
    2   com.apple.WebCore        
    0x00007fff8e048c0b WebCore::IconDatabase::syncThreadMainLoop() + 507
    3   com.apple.WebCore        
    0x00007fff8e04579f WebCore::IconDatabase::iconDatabaseSyncThread() + 303
    4   com.apple.JavaScriptCore 
    0x00007fff8850c0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib  
    0x00007fff8cbb4899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8cbb472a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8cbb8fc9 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib   
    0x00007fff881d2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8cbb8fb9 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib   
    0x00007fff881d2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8cbb8fb9 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib   
    0x00007fff881d2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8cbb8fb9 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib   
    0x00007fff881d2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8cbb8fb9 start_wqthread + 13
    Thread 9:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib   
    0x00007fff881cea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff881cdd18 mach_msg + 64
    2   com.apple.QuartzCore     
    0x00007fff892fe3b7 CA::Render::Server::server_thread(void*) + 195
    3   com.apple.QuartzCore     
    0x00007fff892fe2ed thread_fun + 25
    4   libsystem_pthread.dylib  
    0x00007fff8cbb4899 _pthread_body + 138
    5   libsystem_pthread.dylib  
    0x00007fff8cbb472a _pthread_start + 137
    6   libsystem_pthread.dylib  
    0x00007fff8cbb8fc9 thread_start + 13
    Thread 10:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib   
    0x00007fff881cea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff881cdd18 mach_msg + 64
    2   com.apple.CoreFoundation 
    0x00007fff89162315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation 
    0x00007fff89161939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation 
    0x00007fff89161275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation     
    0x00007fff8fb00907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation     
    0x00007fff8fb0070b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib  
    0x00007fff8cbb4899 _pthread_body + 138
    8   libsystem_pthread.dylib  
    0x00007fff8cbb472a _pthread_start + 137
    9   libsystem_pthread.dylib  
    0x00007fff8cbb8fc9 thread_start + 13
    Thread 11:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib   
    0x00007fff881d2716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb6c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore 
    0x00007fff88517266 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore 
    0x00007fff88516d85 JSC::BlockAllocator::blockFreeingThreadMain() + 117
    4   com.apple.JavaScriptCore 
    0x00007fff8850c0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib  
    0x00007fff8cbb4899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8cbb472a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8cbb8fc9 thread_start + 13
    Thread 12:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib   
    0x00007fff881d2716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb6c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore 
    0x00007fff88517887 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore 
    0x00007fff88517718 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore 
    0x00007fff8850c0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib  
    0x00007fff8cbb4899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8cbb472a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8cbb8fc9 thread_start + 13
    Thread 13:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib   
    0x00007fff881d2716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb6c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore 
    0x00007fff88517887 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore 
    0x00007fff88517718 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore 
    0x00007fff8850c0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib  
    0x00007fff8cbb4899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8cbb472a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8cbb8fc9 thread_start + 13
    Thread 14:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib   
    0x00007fff881d2716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8cbb6c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore 
    0x00007fff88517887 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore 
    0x00007fff88517718 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore 
    0x00007fff8850c0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib  
    0x00007fff8cbb4899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8cbb472a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8cbb8fc9 thread_start + 13
    Thread 15 Crashed:
    0   libsystem_c.dylib        
    0x00007fff9086c541 __xvprintf + 106
    Thread 15 crashed with X86 Thread State (64-bit):
      rax: 0x0000000149170864  rbx: 0x00007fff77760002  rcx: 0x00007fff7776d920  rdx: 0x00007fff7776e480
      rdi: 0xffffffffffffffff  rsi: 0x0000000000000000  rbp: 0x0000000149170e44  rsp: 0x0000000149170844
       r8: 0x0000000149173c37   r9: 0x0000000149170f34  r10: 0x0000000000000000  r11: 0x0000000000000206
      r12: 0x000000000000000a  r13: 0x0000000000000000  r14: 0xffffffffffffffff  r15: 0x00007fff7776e480
      rip: 0x00007fff9086c541  rfl: 0x0000000000010202  cr2: 0x000000014916f050
    Logical CPU:
    0
    Error Code: 
    0x00000000
    Trap Number:
    13
    Binary Images:
    0x10496a000 -   
    0x10496affd  com.apple.Safari (7.0.1 - 9537.73.11) <26B9451D-36DC-3EC9-AF48-B32519F9BFF6> /Applications/Safari.app/Contents/MacOS/Safari
    0x7fff679d0000 -
    0x7fff67a03817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
    0x7fff85c6b000 -
    0x7fff85ca3ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff85ca4000 -
    0x7fff85cf6fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
    0x7fff85d62000 -
    0x7fff85df1fff  com.apple.Metadata (10.7.0 - 800.12.2) <A9F5D471-8732-3F95-A4A2-33864B92A181> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff85df2000 -
    0x7fff85ebdfff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff86149000 -
    0x7fff8614affb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
    0x7fff8614b000 -
    0x7fff86156ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff864b3000 -
    0x7fff866fbfff  com.apple.CoreData (107 - 481) <E5AFBA07-F73E-3B3F-9099-F51224EE8EAD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff866fc000 -
    0x7fff867e6fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
    0x7fff867e7000 -
    0x7fff86846fff  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <775F9444-8059-30A2-8058-7F7ACD68CCF1> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff86847000 -
    0x7fff86853ff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x7fff86861000 -
    0x7fff8686aff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
    0x7fff86b0d000 -
    0x7fff86b54ff7  libcups.2.dylib (372) <348EED62-6C20-35D6-8EFB-E80943965100> /usr/lib/libcups.2.dylib
    0x7fff86b57000 -
    0x7fff86bb2ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff86bb3000 -
    0x7fff86bcffff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
    0x7fff86bd0000 -
    0x7fff86c23fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x7fff86c65000 -
    0x7fff86c68fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff86c6b000 -
    0x7fff86d59fff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff86df6000 -
    0x7fff86df8fff  com.apple.OAuth (25 - 25) <22D42C60-CA67-31D7-A4A4-AFD8F35408D7> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
    0x7fff86e03000 -
    0x7fff86e28ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x7fff86edd000 -
    0x7fff86eebfff  com.apple.opengl (9.0.83 - 9.0.83) <AF467644-7B1D-327A-AC47-CECFCAF61990> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff86f2f000 -
    0x7fff86f39ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x7fff8719c000 -
    0x7fff871b3fff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <3FB4D5FE-860B-3BDE-BAE2-3531D919EF10> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff871b4000 -
    0x7fff87277ff7  com.apple.backup.framework (1.5.1 - 1.5.1) <FC4E949B-B41A-3F21-8AF8-AEDB13146FEA> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff872d5000 -
    0x7fff875bffff  com.apple.CoreServices.CarbonCore (1077.14 - 1077.14) <B00BEB34-A9F5-381F-99FD-11E405768A9A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff87685000 -
    0x7fff8768afff  com.apple.DiskArbitration (2.6 - 2.6) <F8A47F61-83D1-3F92-B7A8-A169E0D187C0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff8768b000 -
    0x7fff8768cfff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
    0x7fff87690000 -
    0x7fff87694fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
    0x7fff87695000 -
    0x7fff8769efff  com.apple.CommonAuth (4.0 - 2.0) <1D263127-5F27-3128-996D-7397660D0C6E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff8779d000 -
    0x7fff8779dfff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff8779e000 -
    0x7fff877a5fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff877ad000 -
    0x7fff877e7ff3  com.apple.bom (12.0 - 192) <989690DB-B9CC-3DB5-89AE-B5D33EDC474E> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff877e8000 -
    0x7fff8780cff7  libJPEG.dylib (1038) <86F349A8-882D-3326-A0B0-63257F68B1A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff8780d000 -
    0x7fff8780dffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff8780e000 -
    0x7fff87853ff6  com.apple.HIServices (1.22 - 466) <21807AF8-3BC7-32BB-AB96-7C35CB59D7F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff87854000 -
    0x7fff878e0ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff878e4000 -
    0x7fff87931ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff87a13000 -
    0x7fff87a17ff7  libGIF.dylib (1038) <C29B4323-1B9E-36B9-96C2-7CEDBAA124F0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff87aa6000 -
    0x7fff87d7afc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff87d7b000 -
    0x7fff87db9ff7  libGLImage.dylib (9.0.83) <C08048A7-03CC-3E40-BCDC-7791D87AC8E4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff87dba000 -
    0x7fff87dbdfff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff87f5d000 -
    0x7fff8804cfff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff881bb000 -
    0x7fff881bcfff  libquit.dylib (161) <12162287-B8C8-36D0-B000-ADC28731FC66> /usr/lib/libquit.dylib
    0x7fff881bd000 -
    0x7fff881d9ff7  libsystem_kernel.dylib (2422.1.72) <D14913DB-47F1-3591-8DAF-D4B4EF5F8818> /usr/lib/system/libsystem_kernel.dylib
    0x7fff881da000 -
    0x7fff881e2ffc  libGFXShared.dylib (9.0.83) <11A621C3-37A0-39CE-A69B-8739021BD79D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff884bc000 -
    0x7fff884d4ff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x7fff88503000 -
    0x7fff88879ffa  com.apple.JavaScriptCore (9537 - 9537.73.10) <4A4AE781-6F76-3412-B0E5-67E0BAEE22A2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff88e60000 -
    0x7fff88ecdfff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff88ee7000 -
    0x7fff88ef6ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff88ef7000 -
    0x7fff890afff3  libicucore.A.dylib (511.27) <003B6C21-CBD1-3486-9A1D-030ADF5FA061> /usr/lib/libicucore.A.dylib
    0x7fff890b0000 -
    0x7fff890b7ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
    0x7fff890f1000 -
    0x7fff892d6ff7  com.apple.CoreFoundation (6.9 - 855.11) <E22C6A1F-8996-349C-905E-96C3BBE07C2F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff892d7000 -
    0x7fff89473ff7  com.apple.QuartzCore (1.8 - 332.0) <994D1E0A-64B6-398C-B9A2-C362F02DE943> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff89474000 -
    0x7fff89485ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
    0x7fff8951d000 -
    0x7fff8951dfff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff895c2000 -
    0x7fff895e9ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
    0x7fff895ea000 -
    0x7fff895f6ff7  com.apple.OpenDirectory (10.9 - 173.1.1) <6B78BD7B-5622-38E6-8FC6-86A117E3ACCA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff895f7000 -
    0x7fff895fcff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
    0x7fff89ec1000 -
    0x7fff89ec5ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
    0x7fff89ed3000 -
    0x7fff89eddfff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
    0x7fff89ede000 -
    0x7fff89f07ff7  libc++abi.dylib (48) <8C16158F-CBF8-3BD7-BEF4-022704B2A326> /usr/lib/libc++abi.dylib
    0x7fff8a658000 -
    0x7fff8a902ffd  com.apple.HIToolbox (2.1 - 696) <1CFFF37B-C392-3088-B0A4-C08C55B2AF8F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff8ac39000 -
    0x7fff8ac51ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff8ac52000 -
    0x7fff8ac54fff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x7fff8ac67000 -
    0x7fff8ac95ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff8acd2000 -
    0x7fff8acd9ff7  liblaunch.dylib (842.1.4) <FCBF0A02-0B06-3F97-9248-5062A9DEB32C> /usr/lib/system/liblaunch.dylib
    0x7fff8acf9000 -
    0x7fff8acfcfff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff8acfd000 -
    0x7fff8af8bfff  com.apple.RawCamera.bundle (5.02 - 725) <4DE37ECB-24CD-38B1-B5AF-1EE911E19B80> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff8afbe000 -
    0x7fff8afcbfff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff8b00d000 -
    0x7fff8b070ff7  com.apple.SystemConfiguration (1.13 - 1.13) <F05F4149-981B-380B-8F50-51CE804BBB89> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff8b15e000 -
    0x7fff8b34eff5  com.apple.WebKit2 (9537 - 9537.73.11) <FE8D26BB-F8B7-37D6-94A0-D82161541F30> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
    0x7fff8b352000 -
    0x7fff8b391fff  libGLU.dylib (9.0.83) <8B457205-513B-3477-AE9C-3AD979D5FE11> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff8b44b000 -
    0x7fff8b44bfff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff8b44c000 -
    0x7fff8b454fff  libsystem_dnssd.dylib (522.1.11) <270DCF6C-502D-389A-AA9F-DE4624A36FF7> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff8b455000 -
    0x7fff8b723ff4  com.apple.CoreImage (9.0.54) <74BB8685-69A9-3A45-8DED-EA26BD39D710> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x7fff8b774000 -
    0x7fff8b7a3fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x7fff8b894000 -
    0x7fff8b91dfff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff8b91e000 -
    0x7fff8b920ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
    0x7fff8b921000 -
    0x7fff8bd02ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff8bdc7000 -
    0x7fff8bdccfff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
    0x7fff8bdcd000 -
    0x7fff8c025ff1  com.apple.security (7.0 - 55471) <233831C5-C457-3AD5-AFE7-E3E2DE6929C9> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff8c02b000 -
    0x7fff8c04ffff  libxpc.dylib (300.1.17) <4554927A-9467-365C-91F1-5A116989DD7F> /usr/lib/system/libxpc.dylib
    0x7fff8c0ae000 -
    0x7fff8c0ccff7  com.apple.Accounts (113 - 113) <FEB37642-C973-3CD2-B279-142492266A16> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff8c0e7000 -
    0x7fff8c113fff  com.apple.CoreServicesInternal (184.8 - 184.8) <707E05AE-DDA8-36FD-B0FF-7F15A061B46A> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x7fff8c1a7000 -
    0x7fff8c21efff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff8c21f000 -
    0x7fff8c34fff7  com.apple.desktopservices (1.8 - 1.8) <09DC9BB8-432F-3C7A-BB08-956A2DDFC2DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff8c353000 -
    0x7fff8c415ff1  com.apple.CoreText (352.0 - 367.15) <E5C70FC8-C861-39B8-A491-595E5B55CFC8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff8c416000 -
    0x7fff8c489ffb  com.apple.securityfoundation (6.0 - 55122) <119D1C53-B292-3378-AEE1-A3B1FB02F43F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff8c48a000 -
    0x7fff8c48cff3  libsystem_configuration.dylib (596.12) <C4F633D9-94C8-35D9-BB2D-84C5122533C7> /usr/lib/system/libsystem_configuration.dylib
    0x7fff8c48d000 -
    0x7fff8c4b4ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
    0x7fff8c4b5000 -
    0x7fff8c4bbff7  libsystem_platform.dylib (24.1.4) <331BA4A5-55CE-3B95-99EB-44E0C89D7FB8> /usr/lib/system/libsystem_platform.dylib
    0x7fff8c4bc000 -
    0x7fff8c4d7ff7  libPng.dylib (1038) <EF781AF8-C2E6-3179-B8A1-A584783070F1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff8c6b4000 -
    0x7fff8c6c6ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff8c6c7000 -
    0x7fff8c71fff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff8c720000 -
    0x7fff8c77eff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff8c9af000 -
    0x7fff8c9fdfff  com.apple.opencl (2.3.57 - 2.3.57) <FC03A80D-543A-3448-83FF-D399C3A240D9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff8cb3a000 -
    0x7fff8cb93fff  libTIFF.dylib (1038) <5CBFE0C2-9DD8-340B-BA63-A94CE2E476F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff8cbb3000 -
    0x7fff8cbbaff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
    0x7fff8cbbb000 -
    0x7fff8d72fff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff8d787000 -
    0x7fff8d7b8ff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
    0x7fff8d7bc000 -
    0x7fff8d7d7ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
    0x7fff8d7d8000 -
    0x7fff8d7e0ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff8d7e1000 -
    0x7fff8d7e2ff7  libsystem_sandbox.dylib (278.10) <A47E7E11-3C76-318E-B67D-98972B86F094> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff8d856000 -
    0x7fff8d8bcfff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff8d99f000 -
    0x7fff8daa4fff  com.apple.ImageIO.framework (3.3.0 - 1038) <2C058216-C6D8-3380-A7EA-92A3F04520C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff8db31000 -
    0x7fff8db4aff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff8db5e000 -
    0x7fff8db88ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
    0x7fff8dbe3000 -
    0x7fff8dbe5ff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff8dbe6000 -
    0x7fff8dbf7ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
    0x7fff8dbfe000 -
    0x7fff8dc09fff  libkxld.dylib (2422.1.72) <C88EF3E6-B31F-3E12-BE9B-562D912BA733> /usr/lib/system/libkxld.dylib
    0x7fff8dc0a000 -
    0x7fff8dc0bff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff8dc0c000 -
    0x7fff8e03fffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff8e040000 -
    0x7fff8ee8dffb  com.apple.WebCore (9537 - 9537.73.13) <A468175D-078A-3377-A883-0BC5C8A4339F> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x7fff8f29d000 -
    0x7fff8f458ff6  com.apple.GeoServices (1.0 - 702.14.9) <A3A4D6AC-72B2-39F3-AAE0-9AF3B88C5C8E> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff8f459000 -
    0x7fff8f466ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
    0x7fff8f48e000 -
    0x7fff8f5feff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42CFC3DB-35C8-3652-AF37-4BCC73D8BDEF> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff8f6a5000 -
    0x7fff8f6beff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x7fff8f776000 -
    0x7fff8f7a5ff5  com.apple.GSS (4.0 - 2.0) <ED98D992-CC14-39F3-9ABC-8D7F986487CC> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff8f7a6000 -
    0x7fff8f88afff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff8f91f000 -
    0x7fff8f928fff  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <0AAE45F0-FC6E-36B6-A6A7-73E6950A74AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff8f938000 -
    0x7fff8f939fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
    0x7fff8f941000 -
    0x7fff8fa77ffa  com.apple.WebKit (9537 - 9537.73.11) <5F583526-8D71-30AD-B97C-56EC51E94E85> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff8fa99000 -
    0x7fff8fd98fff  com.apple.Foundation (6.9 - 1056) <D608EDFD-9634-3573-9B7E-081C7D085F7A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff8ff3b000 -
    0x7fff90441ff3  com.apple.Safari.framework (9537 - 9537.73.11) <D3F772B3-4AD9-32F1-A0CB-CF307FF1B283> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
    0x7fff907ee000 -
    0x7fff907fefff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
    0x7fff907ff000 -
    0x7fff90888ff7  libsystem_c.dylib (997.1.1) <61833FAA-7281-3FF9-937F-686B6F20427C> /usr/lib/system/libsystem_c.dylib
    0x7fff90894000 -
    0x7fff9097bff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
    0x7fff9097c000 -
    0x7fff909acfff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x7fff909ad000 -
    0x7fff909dcfd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
    0x7fff909ea000 -
    0x7fff90a59ff1  com.apple.ApplicationServices.ATS (360 - 363.1) <88976B22-A9B8-3E7B-9AE6-0B8E09A968FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff90a5a000 -
    0x7fff90bc8ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff90bd5000 -
    0x7fff90c1cfff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff90c1d000 -
    0x7fff90c20ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff90c21000 -
    0x7fff90c2cfff  libGL.dylib (9.0.83) <984A960A-C159-3AE5-8B40-E2B451F6C712> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff90c6e000 -
    0x7fff90d37fff  com.apple.LaunchServices (572.23 - 572.23) <8D955BDE-2C4C-3DD4-B4D7-2D916174FE1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff90d38000 -
    0x7fff90d3ffff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
    0x7fff90d40000 -
    0x7fff90d65ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff90d66000 -
    0x7fff90dcaff9  com.apple.Heimdal (4.0 - 2.0) <E7D20A4D-4674-37E1-A949-635FFF7C439A> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff90dcb000 -
    0x7fff90e04ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff9137c000 -
    0x7fff91397ff7  libsystem_malloc.dylib (23.1.10) <FFE5C472-B23A-318A-85BF-77CDE61900D1> /usr/lib/system/libsystem_malloc.dylib
    0x7fff913d7000 -
    0x7fff91400fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff91436000 -
    0x7fff91477fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x7fff9151b000 -
    0x7fff91535fff  libdispatch.dylib (339.1.9) <46878A5B-4248-3057-962C-6D4A235EEF31> /usr/lib/system/libdispatch.dylib
    0x7fff91536000 -
    0x7fff91536fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff91537000 -
    0x7fff91544ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
    0x7fff91545000 -
    0x7fff9154dff3  libCGCMS.A.dylib (599.7) <92AA4E85-7633-36E2-BAD0-7B1A2E48E75C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
    0x7fff9154e000 -
    0x7fff9163fff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
    0x7fff9164d000 -
    0x7fff916cdfff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff916d7000 -
    0x7fff916d7ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
    0x7fff91792000 -
    0x7fff917afff7  com.apple.framework.Apple80211 (9.0 - 900.47) <C897AFE6-DD73-387D-816A-67252A564207> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff917fa000 -
    0x7fff91822ffb  libRIP.A.dylib (599.7) <6F528EE3-99F8-3871-BD60-1306495C27D5> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
    0x7fff91d94000 -
    0x7fff91da6fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff91da7000 -
    0x7fff91daaffa  libCGXType.A.dylib (599.7) <2FC9C2BC-B5C5-3C27-93F9-51C6C4512E9D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
    0x7fff91dab000 -
    0x7fff91db5ff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x7fff91db6000 -
    0x7fff91e20ff7  com.apple.framework.IOKit (2.0.1 - 907.1.13) <C1E95F5C-B79B-31BE-9F2A-1B25163C1F16> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff91e21000 -
    0x7fff9273d05f  com.apple.CoreGraphics (1.600.0 - 599.7) <7D0FD5A7-A061-39BA-8E00-723825D2C4DD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff9273e000 -
    0x7fff927a2ff3  com.apple.datadetectorscore (5.0 - 354.0) <9ACF24B8-3268-3134-A5BC-D72C9371A195> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff927a3000 -
    0x7fff927a4ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
    0x7fff92933000 -
    0x7fff92935fff  libCVMSPluginSupport.dylib (9.0.83) <E2AED858-6EEB-36C6-8C06-C3CF649A3CD5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x7fff92936000 -
    0x7fff9293afff  libsystem_stats.dylib (93.1.26) <B9E26A9E-FBBC-3938-B8B7-6CF7CA8C99AD> /usr/lib/syste

  • TS1717 I can't open Itunes, I have an error that says says MSVCR80.dll is not found. I have tried twice to uninstall and reinstall but keep getting the same error message. Can anyone help?

    I can't open ITunes, I have an error message that says MSVCR80.dll is not found. Is anyone able to help solve this issue for me. I have tried to unistall and reinstall ITunes twice but continue to get the same error message.

    A msi file is short for microsoft installer.  It normally is for installation, removal, and maintenance for a program. So iTunes.msi would be used for the updating of the program.  For some reason it isnt finding this so we can't update, install, or remove it.
    From what I have seen windows installer cleanup utility solved related problems before. 
    I found this forum about removing and installing a new iTunes.  It was about someone who was trying to isntall iTunes, and was looking for msi file and asked for help.   Using this should allow you to be able to install iTunes.  It won't give you the msi file but will allow you to isntall iTunes over again.
    This was what was said.
    Another option in case you can't get an msi. (Or even if you can ... the msi's mentioned in the messages may be damaged rather than missing.)
    Unfortunately, this sort of trouble has gotten more complicated to deal with ever since Microsoft pulled the Windows Installer CleanUp utility from their Download Center on June 25. First we have to find a copy of the utility.
    Let's try Googling. (Best not to use Bing, I think.) Look for a working download site for at least version 3.0 of the Windows Installer CleanUp utility. (The results from mydigitallife and Major Geeks are worth checking.)
    After downloading the utility installer file (msicuu2.exe), scan the file for malware, just in case. (I use the free version of Malwarebytes AntiMalware to do single-file scans for that.)
    If the file is clean, to install the utility, doubleclick the msicuu2.exe file you've downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove".
    Restart the PC, and try another iTunes install. Does it go through properly this time?

  • HT201328 after unlocking from ATT and resetting iphone 3gs I keep getting the same error message "could not activate phone" neither Apple Store Tech or ATT were able to fix this . Any ideas?? TKS Sandro

    after unlocking over the phone from ATT and resetting iphone 3gs I keep getting the same error message "could not activate phone" neither Apple Store Tech or ATT were able to fix this .
    Itunes displays a message saying "there is no SIM installed in the phone you're trying to activate" even if there is the same SIM that was working minutes before.
    The SIM works on a different phone I tested it.
    Any ideas?? TKS Sandro

    “Could Not Activate EDGE” error message Update ...
    Well it’s going on day 6 and still sporadic to no EDGE on my iPhone. At one time, it was thought to be a defective iPhone – since my partner’s iPhone works just fine.
    After over three hours on the land line with AT&T and Apple, I was sent to the local Apple store for a replacement. Of course, as soon as I walked into the Apple store my iPhone worked just fine. ;-( The local store replaced my iPhone and suggested I go home and activate the phone as a NEW iPhone, that way if there was a bug in my data it would not carry over to the new phone. Did that and well… still sporadic to no EDGE. By the way, I have the Big White “E” to the right of the 5 bars and AT&T .
    AT&T said last week they has “Software” issues in my area, but the CSR I talked to did not know what the issues were or if they were the cause of my problems. He did say they would call me back today to see how my iPhone was doing, but alas, no call back.
    When I’m next to my partner, trying to access the same feature, his iPhone is just so fast. Mine hangs up, draws out and finally I get the error message, “Could Not Activate EDGE”. I am updated to version “1.1.4(4A102)”. New (refurbished) iPhone direct from Apple.
    I remember reading a while back about some problems others had when they upgraded to from 1.1.3 to 1.1.4. I never had those problems, but it sure looks like they may have started. Does anyone remember what the problems with 1.1.4 were, what was done if anything to correct them, and best of all any suggestions?
    By the way, this is Seattle, not some small – out of the way place where connection and signal strength is expected to be second rate. Also, I had full function of my iPhone from the day I bought it in June 2007, all the way up to Thursday March 20, at 2120.
    Thanks
    Joe

  • I am trying to order a book, I keep getting the same error message," A network error occurred while processing your order, please check your network connection and try again"

    I am trying to order a book with iphoto, I keep getting the same error message.
    " A network error occurred while processing your order, please check your network connection and try again"
    I get the billing part up, it has even uploaded my jpegs but at the final process, I get the same message.
    I have ordered two books a few months ago without any problems.
    Now I keep getting the same message either half way into
    the order or at the final hurdle after the images have been uploaded.
    Any ideas?
    My shared Network has been fine and that does'nt seem an issue.
    Help.

    Try again in a couple of hours - sometimes it is a temp condition
    LN

  • Ever since updating to new OS, my iphone won't sync to itunes. When I plug in the phone to the PC, it says I need to update itunes to 10.6.3 or later. I did, but still get the same error message.

    Ever since updating to new OS, my iphone won't sync to itunes. When I plug in the phone to the PC, dialog box says I need to update itunes to 10.6.3 or later. I did that update, but still get the same error message.
    Can anyone offer suggestions?
    Thanks!

    Since it told me to update, I updated to 10.7.
    Then when I plugged in the phone again, it gave the same message that I need to update itunes.

  • I keep getting an error message when I try to sync my new iPhone5s to iTunes. It says my computer is not authorised. When I authorise it and try and sync again, the same error message appears. help?

    I keep getting an error message when I try to sync my new iPhone 5s to iTuines.
    It says my computer is not authorised.
    When I authorise it successfully, and try and sync again, the same error message appears.
    Help?

    Hello Chad176
    If you are constantly Authorizing your Apple ID, the article below will assist with getting that resolved for you.
    iTunes repeatedly prompts to authorize computer to play iTunes Store purchases
    http://support.apple.com/kb/TS1389
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • I can't Start, Uninstall or Install new iTunes. I'm getting the same error message: Window Installer Service could not be accessed.  No other programs have similar problem. Any suggestion what can be done?

    I can't Start, Uninstall of Install new iTunes. I'm getting the same error message: "Window Installer Service could not be accessed". No other programs having similar problem. Any suggestions how to fix it?

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) (not for XP) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

  • HT203176 i have a slow macbook, i ran live disk utilities and said I need to repair disk from a cd. did that, I got volume repaired from the external disk. when I reboot from hdd, then run disk utility, I get the same error message i did b4 repair

    i have a slow macbook, i ran live disk utilities (from hard drive), turned out I needed to repair disk from a installation disk. Did that, I got the volume (Hard drive) repaired from the installation disk disk. To this point, great!
    When I reboot from hdd, then run disk utility, I get the same error message i did b4 repair. I went thru two rounds of this.....
    Can anyone help? thanks

    Sorry guys, I don't see how to reply to you so I use reply to "me" basically.
    So the error I get is "volume header needs minor repair" and then you need to perform repair from the installation disk message.
    I did repair not verify from the disk twice. Every time ending in the "the volume had ha been successfully repaired". Then I reboot from the internal disk. Run disk utilities from it, do verify and get the same error message I got before repair. I hope this can shed some light fr you guys. Sorry I didn't include details in the original
    MEssage.

Maybe you are looking for

  • IOS 5 notifications

    I am not receiving email notifications on iphone 4s . I get text and phone notificayions OK. The email notifications are set up the same but I get no notification on the screen, I hear the incoming mail the same a sbefore but nothing appears on the s

  • Invoking webservice through bpel process

    Hi, I created a webservice for a java code. I created a simple bpel process to invoke the webservice. Its throwing below error when running the bpel process. I tested the webservice alone. it works fine. Any help is highly apreciated. Thanks, Ram....

  • Transaction KSB1(cost line items)  - Tables or FM's to get data?

    Hi, For a current report, I need to obtain the data stored in transaction KSB1 - Actual Cost Line items for cost centers. What tables contain this data? Are there any standard function modules available to obtain the data? Please help. Thanks, John

  • IDVD 6 and "menu duration" error

    I have created an iMovie and then an iDVD project. When I attempt to burn an .img file I got an error: "Total menu duration exceeds 15 minutes" The Loop Duration goes to 12:14 minutes. How do I correct this? I'm really getting frustrated on this. Pet

  • WLC 2100 Series Rack Mount Option

    I am having a tough time finding the rackmount kit for the 2100 series Wireless Lan Controllers. Will the ASA5505-RACK-MNT= work?