Image upload in mysql Databse is working fine of IE bt not in Firefox?

i hav developed an application of image upload in mysql database,it is working good in Internet Explorer but showing exception of " java.io.FileNotFoundException: (The system cannot find the file specified)" in Mozilla Firefox.
i'm sending my java servlet code here ,please help me out.
* uploadData.java
* Created on July 17, 2008, 12:11 PM
import java.io.*;
import java.sql.*;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.PreparedStatement;
import javax.servlet.*;
import javax.servlet.http.*;
import javax.sql.rowset.serial.SerialBlob;
public class uploadData extends HttpServlet {
String mysql_driver = null;
String mysql_url=null;
String mysql_pwd=null;
ServletConfig servletConfig;
Connection con=null;
ResultSet rs=null;
PreparedStatement pstmt=null;
FileInputStream fis=null;
String currentYear;
String nextYear;
String letterNo;
String currentAmount;
String actualExpenditure;
String fp;
public void init(ServletConfig config) throws ServletException {
servletConfig = config;
protected void processRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html;charset=UTF-8");
PrintWriter out = response.getWriter();
ServletContext context= servletConfig.getServletContext();
fp=request.getParameter("uploadfile");
currentYear=request.getParameter("currentYear");
nextYear=request.getParameter("nextYear");
letterNo=request.getParameter("letterNo");
currentAmount=request.getParameter("currentAmount");
actualExpenditure=request.getParameter("actualExpenditure");
HttpSession session=request.getSession();
String userName = (String) session.getAttribute("User");
String institute = (String) session.getAttribute("inst");
mysql_driver =context.getInitParameter("jdbcdriver");
mysql_url=context.getInitParameter("jdbcurl");
mysql_pwd=context.getInitParameter("password");
mysql_url=mysql_url + "&" + mysql_pwd;
try {
fis=new FileInputStream(fp);
byte b[]=new byte[fis.available()];
fis.read(b);
fis.close();
Blob blob=new SerialBlob(b);
Class.forName(mysql_driver).newInstance();
con=DriverManager.getConnection(mysql_url);
String query="insert into uploads (FILENAME,BINARYFILE,user_id,nameOrganization,currentYear,nextYear,letterNo,currentAmount,actualExpenditure) values (?,?,?,?,?,?,?,?,?)";
pstmt=con.prepareStatement(query);
pstmt.setString(1,fp);
pstmt.setBlob(2,blob);
pstmt.setString(3,userName);
pstmt.setString(4,institute);
pstmt.setString(5,currentYear);
pstmt.setString(6,nextYear);
pstmt.setString(7,letterNo);
pstmt.setString(8,currentAmount);
pstmt.setString(9,actualExpenditure);
out.print("-----------"+query);
//pstmt.executeUpdate();
int i=pstmt.executeUpdate();
if(i>0)
out.println("Image Stored in the Database");
else
out.println("Failed");
} catch (Exception ex) {
out.print("*******************"+ex);
ex.printStackTrace();
out.close();
// <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
/** Handles the HTTP <code>GET</code> method.
* @param request servlet request
* @param response servlet response
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
processRequest(request, response);
/** Handles the HTTP <code>POST</code> method.
* @param request servlet request
* @param response servlet response
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
processRequest(request, response);
/** Returns a short description of the servlet.
public String getServletInfo() {
return "Short description";
// </editor-fold>
in variable " fp " in IE it is showing complete path of image but in firefox only name of image.
please help me.......
Thanks in Advance.

thanks for your help,
i had also tried this application by taking help from javazoom.upload, using multipart request,
but that is was working fine,but the problem with that was i not only hav to upload a file in the same page i also have to save other textbox value (parameters).
i have used 2-3 solutions to upload but the main prblm coming in my way is to save other information apart from uploaded file.
with that MultipartRequest i'm unable to save all those information  to mysql database.
thats why i used this way.
Note give me hint so that solution can work on both Explorer.
one more thing please tell me ,will this work on remote server ,as our site is hosted from other place ,we do't hav permission to access (in case of absolute path).
please help me out............where i'm going wrong.
thankx

Similar Messages

  • FP works fine in IE but not in Firefox any more.

    It Used to work in Firefox. I think I tried updating the version I was using. (I can't remember anymore - it's been over a week I've been messing with this trying to get it to run.)
    Have tried  the uninstaller, checked & the files are gone. Reran the installers (including some for past versions)
    Nada
    Tried uninstalling & reinstalling Firefox, then Flash.
    Nada
    This site Used to work fine:
    http://dictionary.reference.com/fun/crossword/index.html
    Now nothing.
    Running Firefox 3.5.2 under Win2000
    Help! please.
    xr

    Problem solved. What happened is that my image was not big enough to be seen in a small window so it appears as if the image was not loaded at all.

  • Chat works fine in IE but not in Firefox - shows "loading" but never does

    Facebook Chat always shows "loading" but never does - I've tried most of the suggested solutions but have yet to find one that works with Firefox - it still works fine in IE..

    Now sorted but I don't know what I did! :)

  • My email program smartzone has suddenly started working on smartzone lite instead of the regular one even though I have it set to work on the regular one. It works fine on IE but not on Firefox

    My email program, smartzone has started coming on as Smartzone Lite even though I have it set to work on the regular Smartzone. It works fine on IE. This problem makes my email list come up with HUGE print and it is very awkward to use. I want the Smartzone regular back. Please tell me what to do.

    Hopefully this support article is what you need:
    http://support.mozilla.com/en-US/kb/Websites+look+wrong

  • Upload files from my app works fine in JDev but NOT on app server???

    i guys,
    I'm using jdeve 10.1.2. and adf bc's. So here's my problem:
    In my application i need to allow for the upload of files from user's computers. This works perfectly fine from jdeveloper but when i deploy my application on the application server i get the following error:
    JBO-26041: Failed to post data to database during "Insert": SQL Statement "D:\TrademarkTestData\TrademarkunitTestData.xls (The system cannot find the path specified)".
    D:\TrademarkTestData\TrademarkunitTestData.xls (The system cannot find the path specified)
    For some reason the system cannot find the path. This is most frustrating as it works perfectly fine when run from jdeveloper.
    Any ideas would be most welcome.
    Thanks in advance,
    Newbe

    Hi Frank,
    Thanks for the response. I've consulted with our server guy and he says that there are no read/write privileges. Jdev is not on the server.
    I'm really stumped by this so if you have any ideas, I'd really appreciate it.
    Happr New Year to you,
    Newbe.

  • Mail will not display images with .jpeg extension. .jpg works fine. (displays in place when opening the email. What plug-in would correct this?

    Mail will not display images with .jpeg extension. .jpg works fine. (displays in place when opening the email. What plug-in would correct this?

    If you think you're insane now, try maintaining those pop up menus.
    As far as I know, these menus have not been updated since FW 8, so 
    they are at least two versions old.
    Save yourself a lot of grief by avoiding those menus. There are many 
    other products on the market which do a much better job of creating 
    and maintaining this type of navigation structure.
    Read this link before you climb any higher on this slippery slope:
    http://apptools.com/rants/jsmenu.php
    There was another blog post by the fellow who originally wrote the pop 
    up menu feature, but I can't seem to locate it. Even he says stay away 
    from them.
    Not the answer you probably want, but I hope it helps, nonetheless.
    Jim Babbage

  • Quit when I open Aperture!!!! Updated with the new version downloaded from Appstore. The previous version worked fine. I have not time to open the library - the program closes. For 1-2 seconds I see the old look of your library.

    To my non-arrival notification oo update.
    Updated with the new version downloaded from Appstore.
    The previous version worked fine.
    I have not time to open the library - the program closes. For 1-2 seconds I see the old look of your library.
    Process:         Aperture [831] 
    Path:            /Applications/Aperture.app/Contents/MacOS/Aperture
    Identifier:      com.apple.Aperture
    Version:         3.4.4 (3.4.4)
    Build Info:      Aperture-320085000000000~4
    App Item ID:     408981426
    App External ID: 14995585
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [134]
    User ID:         501
    Date/Time:       2013-05-13 08:39:42.877 +0400
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          25451 sec
    Crashes Since Last Report:           15
    Per-App Interval Since Last Report:  275 sec
    Per-App Crashes Since Last Report:   15
    Anonymous UUID:                      0480FD60-05CB-BDA2-9EC7-9186A9908C06
    Crashed Thread:  12
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSCFString substringToIndex:]: Range or index out of bounds'
    terminate called throwing an exception
    abort() called
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff9566cb06 __exceptionPreprocess + 198
    1   libobjc.A.dylib                     0x00007fff8b2b93f0 objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff9566c8dc +[NSException raise:format:] + 204
    3   Foundation                          0x00007fff935b8ee9 -[NSString substringToIndex:] + 97
    4   RedRock                             0x000000010b7aa994 +[RKFileNamingPolicy fileSafeName:] + 221
    5   RedRock                             0x000000010b955958 -[RKVersion(Imaging) proxyWritePath:] + 141
    6   RedRock                             0x000000010b955edf -[RKVersion(Imaging) absoluteProxyWritePath:] + 28
    7   RedRock                             0x000000010b949b97 -[JPEGFileCacheStore filePathForVersion:key:withWrite:] + 51
    8   RedRock                             0x000000010ba1dd64 -[IPMiniJPEGFileCacheStore newCachePageLookupForRequest:] + 428
    9   ProXTCore                           0x000000010cf9114e -[XTCachePersistentPolicy newCachePageOnLookupForRequest:] + 136
    10  ProXTCore                           0x000000010cf884e1 -[XTCacheEvictionPolicy newCachePageLookupForRequest:] + 23
    11  ProXTCore                           0x000000010cf8e32a -[XTCacheStore newObjectLookupInEvictionPolicyForRequest:] + 44
    12  ProXTCore                           0x000000010cf8e524 -[XTCacheStore newObjectLookupRequest:rootStore:] + 39
    13  ProXTCore                           0x000000010cf8f28e -[XTCacheStore newObjectForRequest:] + 65
    14  Geode                               0x000000010cd2cfc0 -[DGTier2Factory readRequest:intoPageRef:] + 482
    15  Geode                               0x000000010cd2d604 -[DGTier2Factory cache:cacheStore:onFulfillRequest:intoPageRef:] + 589
    16  ProXTCore                           0x000000010cf88f47 -[XTCacheFactory backgroundFulfillment:] + 532
    17  ProXTCore                           0x000000010cf69736 -[XTDistributor distributeMessage:] + 444
    18  ProXTCore                           0x000000010cf690fa -[XTThread handleMessage:] + 342
    19  ProXTCore                           0x000000010cf67eb3 -[XTThread run:] + 345
    20  Foundation                          0x00007fff935eecd2 __NSThread__main__ + 1345
    21  libsystem_c.dylib                   0x00007fff8c7a97a2 _pthread_start + 327
    22  libsystem_c.dylib                   0x00007fff8c7961e1 thread_start + 13
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libFontParser.dylib                     0x00007fff8f00ff4e TTrueTypeFontHandler::TGlyphHeaderData::GetHead() const + 26
    1   libFontParser.dylib                     0x00007fff8f011aa3 TTrueTypeFontHandler::GetBounds(unsigned short, double&, double&, double&, double&, bool) const + 107
    2   libFontParser.dylib                     0x00007fff8f012408 FPFontGetGlyphIdealBounds + 203
    3   libCGXType.A.dylib                      0x00007fff91f2b4ed xt_font_get_glyph_bboxes + 448
    4   libCGXType.A.dylib                      0x00007fff91f2b32b get_glyph_bboxes + 9
    5   com.apple.CoreGraphics                  0x00007fff90cf40d5 CGFontGetGlyphBBoxes + 140
    6   com.apple.CoreGraphics                  0x00007fff90cf8364 get_char_top + 45
    7   com.apple.CoreGraphics                  0x00007fff90cf7fe0 CGFontAutohintTransformCreate + 380
    8   com.apple.CoreGraphics                  0x00007fff90d2f6a7 CGFontCreateGlyphBitmap32 + 339
    9   com.apple.CoreGraphics                  0x00007fff90cf76f3 CGGlyphLockLockGlyphBitmaps + 1172
    10  libRIP.A.dylib                          0x00007fff90589173 ripc_DrawGlyphs + 1865
    11  com.apple.CoreGraphics                  0x00007fff90cb6e48 draw_glyphs + 699
    12  com.apple.CoreGraphics                  0x00007fff90cf5a63 CGContextShowGlyphsWithAdvances + 489
    13  com.apple.CoreText                      0x00007fff91e6f3ab CTFontDrawGlyphsWithAdvances + 105
    14  com.apple.AppKit                        0x00007fff8fa1cbc4 -[NSLineFragmentRenderingContext drawAtPoint:inContext:] + 6402
    15  com.apple.AppKit                        0x00007fff8fa0d1eb _NSStringDrawingCore + 3052
    16  com.apple.AppKit                        0x00007fff8fa000e7 _NSDrawTextCell + 6244
    17  com.apple.AppKit                        0x00007fff8fc60075 _NXDrawTextCell + 56
    18  com.apple.prokit                        0x000000010c2d45ea -[NSProTextFieldCell drawInteriorWithFrame:inView:] + 1092
    19  com.apple.prokit                        0x000000010c2d4e5b -[NSProTextFieldCell drawWithFrame:inView:] + 371
    20  com.apple.prokit                        0x000000010c2cc264 -[NSProPopUpButtonCell drawTitleWithFrame:inView:] + 708
    21  com.apple.AppKit                        0x00007fff8fac6216 -[NSMenuItemCell drawInteriorWithFrame:inView:] + 510
    22  com.apple.AppKit                        0x00007fff8fa01806 -[NSControl drawRect:] + 400
    23  com.apple.AppKit                        0x00007fff8f9f5094 -[NSView _drawRect:clip:] + 4217
    24  com.apple.AppKit                        0x00007fff8f9f36f1 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1656
    25  com.apple.AppKit                        0x00007fff8f9f3b09 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    26  com.apple.AppKit                        0x00007fff8f9f3b09 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    27  com.apple.AppKit                        0x00007fff8f9f3b09 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    28  com.apple.AppKit                        0x00007fff8f9f3b09 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    29  com.apple.AppKit                        0x00007fff8f9f3b09 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    30  com.apple.AppKit                        0x00007fff8f9f1722 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 817
    31  com.apple.AppKit                        0x00007fff8fb40fdb -[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 286
    32  com.apple.AppKit                        0x00007fff8f9ecd9d -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4675
    33  com.apple.AppKit                        0x00007fff8f9b6cc3 -[NSView displayIfNeeded] + 1830
    34  com.apple.AppKit                        0x00007fff8fb40e94 -[NSNextStepFrame displayIfNeeded] + 84
    35  com.apple.AppKit                        0x00007fff8f9b61fc _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 738
    36  com.apple.AppKit                        0x00007fff8ff818f1 __83-[NSWindow _postWindowNeedsDisplayOrLayoutOrUpdateConstraintsUnlessPostingDisabled]_block_ invoke_01208 + 46
    37  com.apple.CoreFoundation                0x00007fff95633417 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
    38  com.apple.CoreFoundation                0x00007fff95633381 __CFRunLoopDoObservers + 369
    39  com.apple.CoreFoundation                0x00007fff9560e7b8 __CFRunLoopRun + 728
    40  com.apple.CoreFoundation                0x00007fff9560e0e2 CFRunLoopRunSpecific + 290
    41  com.apple.HIToolbox                     0x00007fff91795eb4 RunCurrentEventLoopInMode + 209
    42  com.apple.HIToolbox                     0x00007fff91795b94 ReceiveNextEventCommon + 166
    43  com.apple.HIToolbox                     0x00007fff91795ae3 BlockUntilNextEventMatchingListInMode + 62
    44  com.apple.AppKit                        0x00007fff8f9b3563 _DPSNextEvent + 685
    45  com.apple.AppKit                        0x00007fff8f9b2e22 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    46  com.apple.Aperture                      0x000000010b1572f9 0x10acdf000 + 4686585
    47  com.apple.AppKit                        0x00007fff8f9aa1d3 -[NSApplication run] + 517
    48  com.apple.prokit                        0x000000010c27f6c5 NSProApplicationMain + 378
    49  com.apple.Aperture                      0x000000010acef52e 0x10acdf000 + 66862
    50  com.apple.Aperture                      0x000000010aceee54 0x10acdf000 + 65108
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff98026d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff923e9dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff923e99ee _dispatch_mgr_thread + 54
    Thread 2:: Dispatch queue: RKPublishedServiceManager AlbumDelete
    0   libsystem_kernel.dylib                  0x00007fff980246c2 semaphore_wait_trap + 10
    1   libdispatch.dylib                       0x00007fff923ebc32 _dispatch_thread_semaphore_wait + 16
    2   libdispatch.dylib                       0x00007fff923eba92 _dispatch_barrier_sync_f_slow + 188
    3   com.apple.iLifeSQLAccess                0x000000010d0bb325 -[HgEntity _dispatch_sync_if_needed_suspend:withBlock:] + 255
    4   com.apple.iLifeSQLAccess                0x000000010d0c3b45 -[HgEntity insertIntoRidList:idsForColumn:fromQuery:] + 431
    5   com.apple.iLifeSQLAccess                0x000000010d0bfda5 -[HgEntity selectDistinctList:fromQuery:] + 242
    6   com.apple.iLifeSQLAccess                0x000000010d0bfee9 -[HgEntity selectDistinctList:where:] + 195
    7   com.apple.RedRock                       0x000000010ba636db +[RKVersionGroup groupsContainingVersion:] + 37
    8   com.apple.RedRock                       0x000000010ba6390c +[RKVersionGroup removeVersionFromAllGroups:] + 74
    9   com.apple.RedRock                       0x000000010b846631 -[RKVersion willBeDeleted] + 35
    10  com.apple.iLifeSQLAccess                0x000000010d0cffc0 -[HgModel deleteModel] + 49
    11  com.apple.RedRock                       0x000000010b846373 +[RKVersion deleteVersions:deleteMode:] + 1743
    12  com.apple.RedRock                       0x000000010b831e2f +[RKMaster deleteMasters:deleteReferencedFiles:deleteImmediately:skip:progressBlock:] + 1882
    13  com.apple.RedRock                       0x000000010b832227 +[RKMaster deleteMasters:deleteReferencedFiles:progressBlock:] + 268
    14  com.apple.RedRock                       0x000000010b83233b +[RKMaster async_deleteMasters:deleteReferencedFiles:] + 192
    15  com.apple.Aperture                      0x000000010afa6523 0x10acdf000 + 2913571
    16  libdispatch.dylib                       0x00007fff923eaf01 _dispatch_call_block_and_release + 15
    17  libdispatch.dylib                       0x00007fff923e70b6 _dispatch_client_callout + 8
    18  libdispatch.dylib                       0x00007fff923e847f _dispatch_queue_drain + 235
    19  libdispatch.dylib                       0x00007fff923e82f1 _dispatch_queue_invoke + 52
    20  libdispatch.dylib                       0x00007fff923e81c3 _dispatch_worker_thread2 + 249
    21  libsystem_c.dylib                       0x00007fff8c7abd0b _pthread_wqthread + 404
    22  libsystem_c.dylib                       0x00007fff8c7961d1 start_wqthread + 13
    Thread 3:: Dispatch queue: com.apple.Mercury.KDatabaseMgr
    0   libsystem_kernel.dylib                  0x00007fff98026faa pread + 10
    1   com.apple.iLifeSQLAccess                0x000000010d052ced seekAndRead + 86
    2   com.apple.iLifeSQLAccess                0x000000010d052c59 unixRead + 31
    3   com.apple.iLifeSQLAccess                0x000000010d06d46b readDbPage + 447
    4   com.apple.iLifeSQLAccess                0x000000010d06cb6f sqlite3PagerAcquire + 342
    5   com.apple.iLifeSQLAccess                0x000000010d06c9db btreeGetPage + 30
    6   com.apple.iLifeSQLAccess                0x000000010d07a3c1 getAndInitPage + 66
    7   com.apple.iLifeSQLAccess                0x000000010d07a7d3 moveToChild + 68
    8   com.apple.iLifeSQLAccess                0x000000010d0895ea sqlite3BtreeMovetoUnpacked + 698
    9   com.apple.iLifeSQLAccess                0x000000010d06758a sqlite3VdbeExec + 26166
    10  com.apple.iLifeSQLAccess                0x000000010d060c5a sqlite3_step + 2420
    11  com.apple.iLifeSQLAccess                0x000000010d080df9 -[HgKPreparedSql updateWithArgs:] + 230
    12  com.apple.iLifeSQLAccess                0x000000010d0b9dc0 __35-[HgEntity executeUpdate:withArgs:]_block_invoke_0 + 36
    13  libdispatch.dylib                       0x00007fff923eaf01 _dispatch_call_block_and_release + 15
    14  libdispatch.dylib                       0x00007fff923e70b6 _dispatch_client_callout + 8
    15  libdispatch.dylib                       0x00007fff923e847f _dispatch_queue_drain + 235
    16  libdispatch.dylib                       0x00007fff923e82f1 _dispatch_queue_invoke + 52
    17  libdispatch.dylib                       0x00007fff923e8448 _dispatch_queue_drain + 180
    18  libdispatch.dylib                       0x00007fff923e82f1 _dispatch_queue_invoke + 52
    19  libdispatch.dylib                       0x00007fff923e81c3 _dispatch_worker_thread2 + 249
    20  libsystem_c.dylib                       0x00007fff8c7abd0b _pthread_wqthread + 404
    21  libsystem_c.dylib                       0x00007fff8c7961d1 start_wqthread + 13
    Thread 4:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff98026faa pread + 10
    1   com.apple.proxtcore                     0x000000010cfae368 -[XTSegmentFile readData:forIndexEntry:] + 453
    2   com.apple.proxtcore                     0x000000010cfaf135 -[XTSegmentFile loadData:length:forIdentifier:] + 136
    3   com.apple.RedRock                       0x000000010b9015bd __block_global_0 + 306
    4   libdispatch.dylib                       0x00007fff923eaf01 _dispatch_call_block_and_release + 15
    5   libdispatch.dylib                       0x00007fff923e70b6 _dispatch_client_callout + 8
    6   libdispatch.dylib                       0x00007fff923e81fa _dispatch_worker_thread2 + 304
    7   libsystem_c.dylib                       0x00007fff8c7abd0b _pthread_wqthread + 404
    8   libsystem_c.dylib                       0x00007fff8c7961d1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff980266d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8c7abf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8c7abd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8c7961d1 start_wqthread + 13
    Thread 6:: Dispatch queue: com.apple.Mercury.KDatabaseMgr
    0   libsystem_kernel.dylib                  0x00007fff98026faa pread + 10
    1   com.apple.iLifeSQLAccess                0x000000010d052ced seekAndRead + 86
    2   com.apple.iLifeSQLAccess                0x000000010d052c59 unixRead + 31
    3   com.apple.iLifeSQLAccess                0x000000010d06d46b readDbPage + 447
    4   com.apple.iLifeSQLAccess                0x000000010d06cb6f sqlite3PagerAcquire + 342
    5   com.apple.iLifeSQLAccess                0x000000010d06c9db btreeGetPage + 30
    6   com.apple.iLifeSQLAccess                0x000000010d07a3c1 getAndInitPage + 66
    7   com.apple.iLifeSQLAccess                0x000000010d07a7d3 moveToChild + 68
    8   com.apple.iLifeSQLAccess                0x000000010d0895ea sqlite3BtreeMovetoUnpacked + 698
    9   com.apple.iLifeSQLAccess                0x000000010d061621 sqlite3VdbeExec + 1741
    10  com.apple.iLifeSQLAccess                0x000000010d060c5a sqlite3_step + 2420
    11  com.apple.iLifeSQLAccess                0x000000010d080df9 -[HgKPreparedSql updateWithArgs:] + 230
    12  com.apple.iLifeSQLAccess                0x000000010d0b9dc0 __35-[HgEntity executeUpdate:withArgs:]_block_invoke_0 + 36
    13  libdispatch.dylib                       0x00007fff923eaf01 _dispatch_call_block_and_release + 15
    14  libdispatch.dylib                       0x00007fff923e70b6 _dispatch_client_callout + 8
    15  libdispatch.dylib                       0x00007fff923e847f _dispatch_queue_drain + 235
    16  libdispatch.dylib                       0x00007fff923e82f1 _dispatch_queue_invoke + 52
    17  libdispatch.dylib                       0x00007fff923e8448 _dispatch_queue_drain + 180
    18  libdispatch.dylib                       0x00007fff923e82f1 _dispatch_queue_invoke + 52
    19  libdispatch.dylib                       0x00007fff923e81c3 _dispatch_worker_thread2 + 249
    20  libsystem_c.dylib                       0x00007fff8c7abd0b _pthread_wqthread + 404
    21  libsystem_c.dylib                       0x00007fff8c7961d1 start_wqthread + 13
    Thread 7:: Dispatch queue: com.apple.Mercury.KDatabaseMgr
    0   libsystem_kernel.dylib                  0x00007fff98026faa pread + 10
    1   com.apple.iLifeSQLAccess                0x000000010d052ced seekAndRead + 86
    2   com.apple.iLifeSQLAccess                0x000000010d052c59 unixRead + 31
    3   com.apple.iLifeSQLAccess                0x000000010d06d46b readDbPage + 447
    4   com.apple.iLifeSQLAccess                0x000000010d06cb6f sqlite3PagerAcquire + 342
    5   com.apple.iLifeSQLAccess                0x000000010d06c9db btreeGetPage + 30
    6   com.apple.iLifeSQLAccess                0x000000010d07a3c1 getAndInitPage + 66
    7   com.apple.iLifeSQLAccess                0x000000010d07a7d3 moveToChild + 68
    8   com.apple.iLifeSQLAccess                0x000000010d0895ea sqlite3BtreeMovetoUnpacked + 698
    9   com.apple.iLifeSQLAccess                0x000000010d06758a sqlite3VdbeExec + 26166
    10  com.apple.iLifeSQLAccess                0x000000010d060c5a sqlite3_step + 2420
    11  com.apple.iLifeSQLAccess                0x000000010d080df9 -[HgKPreparedSql updateWithArgs:] + 230
    12  com.apple.iLifeSQLAccess                0x000000010d0b9dc0 __35-[HgEntity executeUpdate:withArgs:]_block_invoke_0 + 36
    13  libdispatch.dylib                       0x00007fff923eaf01 _dispatch_call_block_and_release + 15
    14  libdispatch.dylib                       0x00007fff923e70b6 _dispatch_client_callout + 8
    15  libdispatch.dylib                       0x00007fff923e847f _dispatch_queue_drain + 235
    16  libdispatch.dylib                       0x00007fff923e82f1 _dispatch_queue_invoke + 52
    17  libdispatch.dylib                       0x00007fff923e8448 _dispatch_queue_drain + 180
    18  libdispatch.dylib                       0x00007fff923e82f1 _dispatch_queue_invoke + 52
    19  libdispatch.dylib                       0x00007fff923e81c3 _dispatch_worker_thread2 + 249
    20  libsystem_c.dylib                       0x00007fff8c7abd0b _pthread_wqthread + 404
    21  libsystem_c.dylib                       0x00007fff8c7961d1 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff980260fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8c7ae023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff93619fe3 -[NSCondition waitUntilDate:] + 357
    3   com.apple.Foundation                    0x00007fff93619e39 -[NSConditionLock lockWhenCondition:beforeDate:] + 235
    4   com.apple.proxtcore                     0x000000010cf68c5a -[XTMsgQueue waitForMessage] + 47
    5   com.apple.proxtcore                     0x000000010cf67ea3 -[XTThread run:] + 329
    6   com.apple.Foundation                    0x00007fff935eecd2 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff8c7a97a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8c7961e1 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff980260fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8c7ae023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff93619fe3 -[NSCondition waitUntilDate:] + 357
    3   com.apple.Foundation                    0x00007fff93619e39 -[NSConditionLock lockWhenCondition:beforeDate:] + 235
    4   com.apple.proxtcore                     0x000000010cf68c5a -[XTMsgQueue waitForMessage] + 47
    5   com.apple.proxtcore                     0x000000010cf67ea3 -[XTThread run:] + 329
    6   com.apple.Foundation                    0x00007fff935eecd2 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff8c7a97a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8c7961e1 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff980260fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8c7ae023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff93619fe3 -[NSCondition waitUntilDate:] + 357
    3   com.apple.Foundation                    0x00007fff93619e39 -[NSConditionLock lockWhenCondition:beforeDate:] + 235
    4   com.apple.proxtcore                     0x000000010cf68c5a -[XTMsgQueue waitForMessage] + 47
    5   com.apple.proxtcore                     0x000000010cf67ea3 -[XTThread run:] + 329
    6   com.apple.Foundation                    0x00007fff935eecd2 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff8c7a97a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8c7961e1 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff980260fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8c7ae023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff93619fe3 -[NSCondition waitUntilDate:] + 357
    3   com.apple.Foundation                    0x00007fff93619e39 -[NSConditionLock lockWhenCondition:beforeDate:] + 235
    4   com.apple.proxtcore                     0x000000010cf68c5a -[XTMsgQueue waitForMessage] + 47
    5   com.apple.proxtcore                     0x000000010cf67ea3 -[XTThread run:] + 329
    6   com.apple.Foundation                    0x00007fff935eecd2 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff8c7a97a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8c7961e1 thread_start + 13
    Thread 12 Crashed:
    0   libsystem_kernel.dylib                  0x00007fff98026212 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff8c7aab54 pthread_kill + 90
    2   libsystem_c.dylib                       0x00007fff8c7eedce abort + 143
    3   libc++abi.dylib                         0x00007fff907849eb abort_message + 257
    4   libc++abi.dylib                         0x00007fff9078239a default_terminate() + 28
    5   libobjc.A.dylib                         0x00007fff8b2b9873 _objc_terminate() + 91
    6   libc++abi.dylib                         0x00007fff907823c9 safe_handler_caller(void (*)()) + 8
    7   libc++abi.dylib                         0x00007fff90782424 std::terminate() + 16
    8   libc++abi.dylib                         0x00007fff9078358b __cxa_throw + 111
    9   libobjc.A.dylib                         0x00007fff8b2b950c objc_exception_throw + 327
    10  com.apple.CoreFoundation                0x00007fff95700f49 -[NSException raise] + 9
    11  com.apple.proxtcore                     0x000000010cf693b3 -[XTThread handleMessage:] + 1039
    12  com.apple.proxtcore                     0x000000010cf67eb3 -[XTThread run:] + 345
    13  com.apple.Foundation                    0x00007fff935eecd2 __NSThread__main__ + 1345
    14  libsystem_c.dylib                       0x00007fff8c7a97a2 _pthread_start + 327
    15  libsystem_c.dylib                       0x00007fff8c7961e1 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff980260fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8c7ae023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff93619fe3 -[NSCondition waitUntilDate:] + 357
    3   com.apple.Foundation                    0x00007fff93619e39 -[NSConditionLock lockWhenCondition:beforeDate:] + 235
    4   com.apple.proxtcore                     0x000000010cf68c5a -[XTMsgQueue waitForMessage] + 47
    5   com.apple.proxtcore                     0x000000010cf67ea3 -[XTThread run:] + 329
    6   com.apple.Foundation                    0x00007fff935eecd2 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff8c7a97a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8c7961e1 thread_start + 13
    Thread 14:: Dispatch queue: com.apple.Mercury.KDatabaseMgr
    0   com.apple.iLifeSQLAccess                0x000000010d06cf90 pcache1Fetch + 22
    1   com.apple.iLifeSQLAccess                0x000000010d06cc7d sqlite3PcacheFetch + 193
    2   com.apple.iLifeSQLAccess                0x000000010d06ca88 sqlite3PagerAcquire + 111
    3   com.apple.iLifeSQLAccess                0x000000010d06c9db btreeGetPage + 30
    4   com.apple.iLifeSQLAccess                0x000000010d07a3c1 getAndInitPage + 66
    5   com.apple.iLifeSQLAccess                0x000000010d07a7d3 moveToChild + 68
    6   com.apple.iLifeSQLAccess                0x000000010d0895ea sqlite3BtreeMovetoUnpacked + 698
    7   com.apple.iLifeSQLAccess                0x000000010d07a875 sqlite3VdbeCursorMoveto + 43
    8   com.apple.iLifeSQLAccess                0x000000010d0694b5 sqlite3VdbeExec + 34145
    9   com.apple.iLifeSQLAccess                0x000000010d060c5a sqlite3_step + 2420
    10  com.apple.iLifeSQLAccess                0x000000010d088edb -[HgKResultSet next] + 262
    11  com.apple.iLifeSQLAccess                0x000000010d0be43c __36-[HgEntity countOfModelsWhere:args:]_block_invoke_0 + 62
    12  libdispatch.dylib                       0x00007fff923e70b6 _dispatch_client_callout + 8
    13  libdispatch.dylib                       0x00007fff923ed4e3 _dispatch_function_recurse_invoke + 40
    14  libdispatch.dylib                       0x00007fff923e70b6 _dispatch_client_callout + 8
    15  libdispatch.dylib                       0x00007fff923e8723 _dispatch_barrier_sync_f_invoke + 39
    16  libdispatch.dylib                       0x00007fff923ebad2 _dispatch_barrier_sync_f_slow + 252
    17  com.apple.iLifeSQLAccess                0x000000010d0bb325 -[HgEntity _dispatch_sync_if_needed_suspend:withBlock:] + 255
    18  com.apple.iLifeSQLAccess                0x000000010d0b1246 -[HgEntity countOfModelsWhere:args:] + 416
    19  com.apple.iLifeSQLAccess                0x000000010d0b0ff6 +[HgModel countOfModelsFromDatabase:where:] + 195
    20  com.apple.RedRock                       0x000000010b76d1b9 -[RKFolder updateVersionCount] + 256
    21  com.apple.RedRock                       0x000000010b846543 +[RKVersion deleteVersions:deleteMode:] + 2207
    22  com.apple.RedRock                       0x000000010b831e2f +[RKMaster deleteMasters:deleteReferencedFiles:deleteImmediately:skip:progressBlock:] + 1882
    23  com.apple.RedRock                       0x000000010b832227 +[RKMaster deleteMasters:deleteReferencedFiles:progressBlock:] + 268
    24  com.apple.iLifeSQLAccess                0x000000010d115d46 __28-[HgDispatchQueue addBlock:]_block_invoke_0 + 19
    25  libdispatch.dylib                       0x00007fff923eaf01 _dispatch_call_block_and_release + 15
    26  libdispatch.dylib                       0x00007fff923e70b6 _dispatch_client_callout + 8
    27  libdispatch.dylib                       0x00007fff923e847f _dispatch_queue_drain + 235
    28  libdispatch.dylib                       0x00007fff923e82f1 _dispatch_queue_invoke + 52
    29  libdispatch.dylib                       0x00007fff923e81c3 _dispatch_worker_thread2 + 249
    30  libsystem_c.dylib                       0x00007fff8c7abd0b _pthread_wqthread + 404
    31  libsystem_c.dylib                       0x00007fff8c7961d1 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff980260fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8c7ae023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff93619fe3 -[NSCondition waitUntilDate:] + 357
    3   com.apple.Foundation                    0x00007fff93619e39 -[NSConditionLock lockWhenCondition:beforeDate:] + 235
    4   com.apple.proxtcore                     0x000000010cf68c5a -[XTMsgQueue waitForMessage] + 47
    5   com.apple.proxtcore                     0x000000010cf67ea3 -[XTThread run:] + 329
    6   com.apple.Foundation                    0x00007fff935eecd2 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff8c7a97a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8c7961e1 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff980266d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8c7abf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8c7abd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8c7961d1 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff980266d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8c7abf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8c7abd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8c7961d1 start_wqthread + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff980266d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8c7abf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8c7abd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8c7961d1 start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff980266d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8c7abf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8c7abd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8c7961d1 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff980266d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8c7abf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8c7abd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8c7961d1 start_wqthread + 13
    Thread 12 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x0000000118f12a68  rdx: 0x0000000000000000
      rdi: 0x0000000000009903  rsi: 0x0000000000000006  rbp: 0x0000000118f12a90  rsp: 0x0000000118f12a68
       r8: 0x00007fff7b40f278   r9: 0x000000000000000a  r10: 0x0000000020000000  r11: 0x0000000000000206
      r12: 0x0000000118f12bf0  r13: 0x000000010d000610  r14: 0x0000000118f14000  r15: 0x0000000118f12ad0
      rip: 0x00007fff98026212  rfl: 0x0000000000000206  cr2: 0x00007fff7b408ff0
    Logical CPU: 0
    Binary Images:
           0x10acdf000 -        0x10b43cff7  com.apple.Aperture (3.4.4 - 3.4.4) <7C43FF75-DA6F-3613-AF60-ACAFBB73D673> /Applications/Aperture.app/Contents/MacOS/Aperture
           0x10b661000 -        0x10b661fff  libgenkit.dylib (1) <4D2704B4-9F86-2EBA-D1A7-3A990FEF9854> /usr/lib/libgenkit.dylib
           0x10b668000 -        0x10b671ff7  com.apple.PhotoFoundation (1.0 - 20.12) <9E3EA726-0AE7-3A40-AF03-EA7BDF21C099> /Applications/Aperture.app/Contents/Frameworks/PhotoFoundation.framework/Versio ns/A/PhotoFoundation
           0x10b6e7000 -        0x10b6e8ff7  libCyrillicConverter.dylib (61) <D06971D7-9F16-3FE6-81E8-33E0FE4D6586> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x10b6ed000 -        0x10bc4bfff  com.apple.RedRock (1.9.4 - 321.1) <EAD3BDC5-3A3E-3246-B69F-DB2E39695403> /Applications/Aperture.app/Contents/Frameworks/RedRock.framework/Versions/A/Red Rock
           0x10bf82000 -        0x10c005ff7  com.apple.iLifePageLayoutCore (1.0 - 210.38) <BC05B804-298B-38CD-9647-1CDAD4F714E8> /Applications/Aperture.app/Contents/Frameworks/iLifePageLayoutCore.framework/Ve rsions/A/iLifePageLayoutCore
           0x10c067000 -        0x10c06cff7  com.apple.iLifePhotoStreamConfiguration (3.4 - 2.5) <9D62897F-2817-3C68-8EDF-A52539B11EE7> /Applications/Aperture.app/Contents/Frameworks/iLifePhotoStreamConfiguration.fr amework/Versions/A/iLifePhotoStreamConfiguration
           0x10c075000 -        0x10c0a6fff  com.apple.iLifeAssetManagement (2.7 - 45.19) <EBF43BAB-B1EF-3A26-8C17-F5A8AD4F1923> /Applications/Aperture.app/Contents/Frameworks/iLifeAssetManagement.framework/V ersions/A/iLifeAssetManagement
           0x10c0d7000 -        0x10c0e4fff  com.apple.iphoto.AccountConfigurationPlugin (1.2 - 1.2) <EA624F78-C441-3514-9A77-362F96B84A94> /Applications/Aperture.app/Contents/Frameworks/AccountConfigurationPlugin.frame work/Versions/A/AccountConfigurationPlugin
           0x10c0f6000 -        0x10c199ff7  com.apple.MobileMe (13 - 1.0.4) <78787555-A65F-3F23-8473-E9CEBCD14BF3> /Applications/Aperture.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mo bileMe
           0x10c215000 -        0x10c222ff7  com.apple.PluginManager (1.7.6 - 55) <9C4EFFC0-1CDC-360B-9294-57E710B2912A> /Library/Frameworks/PluginManager.framework/Versions/B/PluginManager
           0x10c236000 -        0x10c247fff  com.apple.AERegistration (1.2 - 401) <17EFD8F0-87B5-3189-9FDA-4510279D5B35> /Applications/Aperture.app/Contents/Frameworks/AERegistration.framework/Version s/A/AERegistration
           0x10c261000 -        0x10c4d7ff7  com.apple.prokit (7.3.2 - 1944.10) <41FA1781-64AA-37C2-8CBF-9D72CFD705C0> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
           0x10c673000 -        0x10ca17fff  com.apple.iLifeSlideshow (3.1 - 1151.4) <6AE8C8C0-9B04-3AA6-9600-F536F8104B64> /Applications/Aperture.app/Contents/Frameworks/iLifeSlideshow.framework/Version s/A/iLifeSlideshow
           0x10cb9e000 -        0x10cbb5ff7  com.apple.iLifeFaceRecognition (1.0 - 30.11) <097EDA03-9287-358F-9962-B8009A676610> /Applications/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/V ersions/A/iLifeFaceRecognition
           0x10cbc8000 -        0x10cc01fff  com.apple.fayray.PrintServices (920121212 - 11.7) <DC591C90-2028-3CC9-8B99-0E631160D751> /Applications/Aperture.app/Contents/Frameworks/PrintServices.framework/Versions /A/PrintServices
           0x10cc3c000 -        0x10cc70ff7  com.apple.ProUtils (1.1 - 220.17) <8768EBB7-58BE-3F75-914E-DA488BEAA828> /Applications/Aperture.app/Contents/Frameworks/ProUtils.framework/Versions/A/Pr oUtils
           0x10cc95000 -        0x10ce8eff7  com.apple.geode (1.5.3 - 280.22) <6C000034-D863-3022-A36D-3754EDE789F5> /Applications/Aperture.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
           0x10cf64000 -        0x10cfdffff  com.apple.proxtcore (1.4.1 - 270.13) <A2D53FDF-C510-3A57-9C21-20AE9B631AFD> /Applications/Aperture.app/Contents/Frameworks/ProXTCore.framework/Versions/A/P roXTCore
           0x10d04b000 -        0x10d166fff  com.apple.iLifeSQLAccess (1.7.1 - 70.30) <7D154ED6-7BD3-345C-9BC1-614017DAB6C6> /Applications/Aperture.app/Contents/Frameworks/iLifeSQLAccess.framework/Version s/A/iLifeSQLAccess
           0x10d1d4000 -        0x10d1d6fff  com.apple.ExceptionHandling (1.5 - 10) <47FF83ED-0C07-308C-A375-2A2189DB1056> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
           0x10d1df000 -        0x10d207fff  com.apple.iPhoto.Tellus (1.3 - 90.10) <E124C420-0AE4-36BB-98E0-A38D2B280F11> /Applications/Aperture.app/Contents/Frameworks/Tellus.framework/Versions/A/Tell us
           0x10d22f000 -        0x10d258fff  com.apple.iPhoto.Tessera (1.1 - 90.10) <6252DE02-ED5D-364B-8DAD-E67917478A86> /Applications/Aperture.app/Contents/Frameworks/Tessera.framework/Versions/A/Tes sera
           0x10d276000 -        0x10d27eff7  com.apple.AEProfiling (1.2 - 23) <AF1D815F-B5F7-316B-91C1-9C4FCAF13BBF> /Applications/Aperture.app/Contents/Frameworks/AEProfiling.framework/Versions/A /AEProfiling
           0x10d28f000 -        0x10d292fff  com.apple.LibraryRepair (1.0 - 1) <14701E47-E2B2-309F-A04E-96D260E83B54> /System/Library/PrivateFrameworks/LibraryRepair.framework/Versions/A/LibraryRep air
           0x10d298000 -        0x10d29afff +eOkaoCom.dylib (1) <393F340C-3AD1-C89B-6C37-9D8ABF4BFFD9> /Applications/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/V ersions/A/Resources/eOkaoCom.dylib
           0x10d2a5000 -        0x10d2ccff2 +eOkaoPt.dylib (1) <E6500FB8-157F-57B5-FE25-2A3A1CB3574C> /Applications/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/V ersions/A/Resources/eOkaoPt.dylib
           0x10d2d3000 -        0x10d308fe7 +eOkaoDt.dylib (1) <7A74253D-8930-6FF1-B513-0929C4E111A2> /Applications/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/V ersions/A/Resources/eOkaoDt.dylib
           0x10d310000 -        0x10d478fef +eOkaoFr.dylib (1) <510E837E-135A-92C8-9AC0-465691EA43D2> /Applications/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/V ersions/A/Resources/eOkaoFr.dylib
           0x10d47c000 -        0x10d4d7fff  com.apple.NyxAudioAnalysis (12.4 - 12.4) <7E92057A-2C05-31D1-A7AC-8323606AF300> /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis
           0x114be6000 -        0x114c0fff7  com.apple.prokit.LionPanels (7.3.2 - 1944.10) <0203CE91-E926-32CC-80A3-94D8C1C558A1> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/LionPan els.bundle/Contents/MacOS/LionPanels
           0x114c61000 -        0x114e1ffff  GLEngine (8.7.25) <8398B57C-EE2D-3006-940C-CECE8E719D3B> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x114e56000 -        0x114fc6fff  libGLProgrammability.dylib (8.7.25) <EE2DD8AF-C6C3-303D-976E-87B4AABF8371> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x114ffe000 -        0x1152b6fff  com.apple.ATIRadeonX2000GLDriver (8.10.44 - 8.1.0) <7D70DE9A-6C60-36EE-BDB1-712331A1756C> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
           0x115313000 -        0x115320fff  libGPUSupport.dylib (8.7.25) <F884DCD6-8234-3D23-BEC6-4EC4CE5101EF> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
           0x115327000 -        0x115352fff  GLRendererFloat (8.7.25) <BB54593F-07F0-392A-8993-CA844F4A20E8> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x11535b000 -        0x115364fe7  libcldcpuengine.dylib (2.2.16) <DB9678F6-7D50-384A-A961-6109B61D1607> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
           0x11571e000 -        0x115726fff  com.apple.Aperture.TaskView (1.1 - 1.0) <86BD1732-359D-3A6F-B3A6-D3049B8F5DBD> /Applications/Aperture.app/Contents/PlugIns/TaskView.bundle/Contents/MacOS/Task View
           0x118fe2000 -        0x11909bff7  ColorSyncDeprecated.dylib (400) <7CE58F6E-D2C8-39FB-8EE0-28CC6EC6D04F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
           0x1190ff000 -        0x119107fff  com.apple.proapps.mrcheckpro (1.4 - 397) <DEB9E6D4-E4A9-3F32-8477-C9AD48C37A69> /Applications/Aperture.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/ MRCheckPro
           0x119ca7000 -        0x119cacff7  libFontRegistryUI.dylib (100) <9F172961-DB6F-3A82-9F90-28F9A233F755> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
           0x119d1e000 -        0x119d46fff  com.apple.iPhoto.FacebookPublisher (1.2 - 1.2) <91BFD72D-C43A-38F3-8038-7D845A679E79> /Applications/Aperture.app/Contents/PlugIns/FacebookPublisher.publisher/Content s/MacOS/FacebookPublisher
           0x119d66000 -        0x119d86ff7  com.apple.iPhoto.FlickrPublisher (1.2 - 1.2) <7B77737F-75F5-371C-AA23-B855A4D0935E> /Applications/Aperture.app/Contents/PlugIns/FlickrPublisher.publisher/Contents/ MacOS/FlickrPublisher
           0x119da0000 -        0x119dd5ff7  com.apple.iPhoto.MobileMePublisher (1.2 - 1.2) <E74B9FD4-6162-352D-9010-0C4E5575AC37> /Applications/Aperture.app/Contents/PlugIns/MobileMePublisher.publisher/Content s/MacOS/MobileMePublisher
           0x119dfb000 -        0x119e11fff  com.apple.iPhoto.SharedPhotoStreamPublisher (1.0 - 1.0) <5AECD4B4-26E6-3C43-A17A-913A5D2C7A8C> /Applications/Aperture.app/Contents/PlugIns/SharedPhotoStreamPublisher.publishe r/Contents/MacOS/SharedPhotoStreamPublisher
           0x119e2a000 -        0x119e2fff7  com.apple.iphoto.accountconfig.Facebook (1.2 - 1.2) <051DB4A3-7D17-3289-9328-77D5B5512EC2> /Applications/Aperture.app/Contents/PlugIns/Facebook.accountconfigplugin/Conten ts/MacOS/Facebook
           0x119e37000 -        0x119e3bfff  com.apple.iphoto.accountconfig.Flickr (1.1 - 1) <556E3A54-B1CA-3CD0-A439-AB46B45A4BE0> /Applications/Aperture.app/Contents/PlugIns/Flickr.accountconfigplugin/Contents /MacOS/Flickr
           0x119e42000 -        0x119e48ff7  com.apple.iphoto.accountconfig.MobileMe (1.1 - 1) <FDCA4A8F-C649-365F-8FE5-22418FB03EE2> /Applications/Aperture.app/Contents/PlugIns/MobileMe.accountconfigplugin/Conten ts/MacOS/MobileMe
           0x11a889000 -        0x11a88affb +cl_kernels (???) <FFCFA284-2B52-4BFD-A0D2-314D2875021C> cl_kernels
           0x11a897000 -        0x11a897ff9 +cl_kernels (???) <C0631488-C5E3-4CBC-A723-E27C3B71BDB3> cl_kernels
           0x11a899000 -        0x11a933ff7  unorm8_bgra.dylib (2.2.16) <5D62BED8-DF5D-3C51-94B4-57368FF10DDB> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
        0x7fff6a8df000 -     0x7fff6a91393f  dyld (210.2.3) <A40597AA-5529-3337-8C09-D8A014EB1578> /usr/lib/dyld
        0x7fff8b0f9000 -     0x7fff8b0fbff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8b0fc000 -     0x7fff8b158ff7  com.apple.Symbolication (1.3 - 93) <F2C7E0B6-B241-3020-B30A-0636D0FA3378> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8b159000 -     0x7fff8b1a4fff  com.apple.CoreMedia (1.0 - 926.87) <F51205F8-A102-359C-A9A3-22A48524C081> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8b1a5000 -     0x7fff8b2a7fff  libcrypto.0.9.8.dylib (47) <74F165AD-4572-3B26-B0E2-A97477FE59D0> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8b2a8000 -     0x7fff8b3c092f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff8b490000 -     0x7fff8b49eff7  libkxld.dylib (2050.22.13) <4AAF0573-8632-3D06-BE32-C5675F77638D> /usr/lib/system/libkxld.dylib
        0x7fff8b49f000 -     0x7fff8b4c1ff7  libxpc.dylib (140.42) <BBE558BD-5E55-35E4-89ED-1AA6B056D05A> /usr/lib/system/libxpc.dylib
        0x7fff8b562000 -     0x7fff8b5cfff7  com.apple.datadetectorscore (4.1 - 269.2) <4FD4A7CE-BB00-3AAB-B7AA-AE395D5400EC> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8b95c000 -     0x7fff8b992fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff8b993000 -     0x7fff8b996fff  libutil.dylib (30) <EF3340B2-9A53-3D5E-B9B4-BDB5EEECC178> /usr/lib/libutil.dylib
        0x7fff8b997000 -     0x7fff8b9adfff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8b9ae000 -     0x7fff8b9dcff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff8b9dd000 -     0x7fff8bb36ff7  com.apple.syncservices (7.1 - 713.1) <1B20AF09-C1E5-3B70-A57F-177A4D92E403> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
        0x7fff8bb39000 -     0x7fff8bc0cff7  com.apple.DiscRecording (7.0 - 7000.2.4) <49FD2D2F-4F2C-39B6-877B-6E3172577D18> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8bc0d000 -     0x7fff8bc0dfff  com.apple.AOSMigrate (1.0 - 1) <585B1483-490E-32DD-97DC-B9279E9D3490> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff8bc0e000 -     0x7fff8bc30fff  com.apple.AOSAccounts (1.1.2 - 1.1.95) <9A1A8780-1F48-3CCA-96EB-D3137F93B676> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
        0x7fff8bc31000 -     0x7fff8bc46fff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8bc52000 -     0x7fff8bc69fff  com.apple.CFOpenDirectory (10.8 - 151.10) <FFBBA538-00B5-334E-BA5B-C8AD6CDCDA14> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8bc92000 -     0x7fff8bcecff7  com.apple.opencl (2.2.18 - 2.2.18) <4A78E53C-17B0-3B2D-A9EA-EF8720FE4134> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8bcf7000 -     0x7fff8bd31fff  com.apple.framework.internetaccounts (2.1 - 210) <546769AA-C561-3C17-8E8E-4E65A700E2F1> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff8bd32000 -     0x7fff8bd32fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff8bd33000 -     0x7fff8bd90fff  com.apple.ExchangeWebServices (3.0 - 157) <58BFD72E-27F3-3F22-A421-B883FACA0E19> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
        0x7fff8bd91000 -     0x7fff8bdaeff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8bdaf000 -     0x7fff8bdb7ff7  libsystem_dnssd.dylib (379.37) <616FC901-151E-38BF-B2C4-24A351C5FAAD> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8bdb8000 -     0x7fff8bdb8fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8bdb9000 -     0x7fff8be5fff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8be60000 -     0x7fff8be6dfff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8be71000 -     0x7fff8bf02fff  com.apple.CorePDF (2.0 - 2) <EB5660B1-0D79-34F3-B242-B559AE0A5B4A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8bf03000 -     0x7fff8bf35fff  com.apple.framework.Admin (12.0 - 12.0) <21E02DE3-B255-3A55-8F55-7FC9EE864C06> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
        0x7fff8bf36000 -     0x7fff8bfd1fff  com.apple.CoreSymbolication (3.0 - 117) <C304FDB8-2FF7-34BC-858A-2B96C2B039D5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8bfe1000 -     0x7fff8c06eff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8c06f000 -     0x7fff8c07cff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8c07d000 -     0x7fff8c07dfff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8c07e000 -     0x7fff8c180fff  libJP2.dylib (849) <4EEA33EB-AF9F-365D-A572-F7D11AD1C76F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8c181000 -     0x7fff8c1acfff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff8c1ad000 -     0x7fff8c1c7fff  com.apple.CoreMediaAuthoring (2.1 - 914) <CFA664F9-D5A7-3281-A12F-3ED8A98FD8C1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8c1c8000 -     0x7fff8c1d3fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff8c1d4000 -     0x7fff8c1d6fff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
        0x7fff8c1d7000 -     0x7fff8c1d9ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff8c21d000 -     0x7fff8c4c1ff7  com.apple.CoreImage (8.2.4 - 1.0.1) <4A6B017F-B9F7-36DA-943D-A95611F147EA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8c51d000 -     0x7fff8c560ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8c561000 -     0x7fff8c56cff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8c56d000 -     0x7fff8c570fff  libRadiance.dylib (849) <F7D9A0FD-1195-34CB-BFE5-79DAF3F40AC3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8c571000 -     0x7fff8c585fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8c586000 -     0x7fff8c6fbfff  com.apple.CFNetwork (596.3.3 - 596.3.3) <3739DC8D-8610-3740-80EC-43E130779CB8> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8c714000 -     0x7fff8c794ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8c795000 -     0x7fff8c861ff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
        0x7fff8c862000 -     0x7fff8c862fff  com.apple.Carbon (154 - 155) <372716D2-6FA1-3611-8501-3DD1D4A6E8C8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8c863000 -     0x7fff8cae3ff7  com.apple.AOSKit (1.05 - 152.2) <43361229-45F3-3946-A11A-CC0FF2129F06> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff8cae4000 -     0x7fff8cba1ff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8cba2000 -     0x7fff8cbacfff  libcsfde.dylib (296.16) <DE03E28D-7979-3C31-9F46-2A7337CE0DBA> /usr/lib/libcsfde.dylib
        0x7fff8cbad000 -     0x7fff8cbfeff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8cc07000 -     0x7fff8cc96fff  libCoreStorage.dylib (296.16) <E5BF76A1-2B3E-3FD8-ABF4-F8D18829BF0A> /usr/lib/libCoreStorage.dylib
        0x7fff8ccc1000 -     0x7fff8d0defff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff8d0df000 -     0x7fff8d0e0ff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff8d0e1000 -     0x7fff8d26cff7  com.apple.WebKit (8536 - 8536.28.10) <792FA1F3-68F2-36F8-A070-898B3682F5DE> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8d288000 -     0x7fff8d2a9ff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff8d32d000 -     0x7fff8d35bfff  com.apple.CoreServicesInternal (154.2 - 154.2) <3E6196E6-F3B4-316F-9E1F-13B6B9694C7E> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8d544000 -     0x7fff8d544fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8d571000 -     0x7fff8d5b5fff  libcups.2.dylib (327.3) <71E771A1-0489-3417-8A4A-56A2C930F80C> /usr/lib

    Try this: http://support.apple.com/kb/TS4412

  • I have an old iPhone 3Gs with software version 4.3.5,  I am trying to use it again, and it works fine, but I have not been able to update the software.  Every time I try, I get the following message: "there was a problem downloading the software for the i

    I have an old iPhone 3Gs with software version 4.3.5,  I am trying to use it again, and it works fine, but I have not been able to update the software.  Every time I try, I get the following message:
    "there was a problem downloading the software for the iPhone, the network connection could not be established".  This happens even though I have a working internet connection.
    Besides that, all the other functions work properly, even synchronize apps and library.
    Will I be able to update the software?

    look around the forum tons of people repport that they can't update
    makes you suspect that apples update servers can't meet the depand of too many users
    trying to update at once

  • My daughters ipod 4th gen will no longer charge past 20% and will not connect to a pc in order to back everything up. the cable is working fine, otherwise it would not even charge to the 20%. i have tried the reset to not lose any data and no luck. help!

    my daughters ipod 4th gen will no longer charge past 20% and will not connect to a pc in order to back everything up. the cable is working fine, otherwise it would not even charge to the 20%. i have tried the reset to not lose any data and no luck, home+power for 10-15 seconds. I really would like to not lose everything she has, again, because I can't back it up this time. I have tried charging via a wall outlet and PC and both charge fine, just only to 20%. I am using the cable that came with it so no aftermarket issues there. Please help so I don't have to reset everything again.

    Because once it has charged enough to be powered on as soon as you turn it on it says battery is at 20% and will not charge anymore after that, it just runs for about 5-10 minutes before the battery dies again. The battery cycles discharge/recharge daily and its not on the charger at full charge for more than a couple hours and is never totally dead for more than a couple of hours.

  • Synchronization from SLD to LMDB is working fine, but data is not written to Software == Product Instance

    Dear Gurus,
    Synchronization from SLD to LMDB is working fine, but data is not written to Software ==> Product Instance section tab. What could be the problem ? Normally it should gather automatically, but pushed me to select manually lots of component ???
    Here is collecting is working fine !!!

    Hello Kemal,
    You have to ensure that your Technical System info is properly filled automatically.
    In LMDB you first create its Product System on LMDB Start Screen ProductSystem tab, after that please assign its respective Technical System. You probably need to run the Verification Check in order to confirm that your Product System has all Product Instances according on Technical System's Software Component Versions.
    Regards.
    Luis Roel

  • Why does iTunes keep giving me bogus error messages.  "Your internet connection is not working, check your connection and try again."  My internet is working fine.  iTunes is not working and will not allow me to download tunes.

    why does iTunes keep giving me bogus error messages.  "Your internet connection is not working, check your connection and try again."  My internet is working fine.  iTunes is not working and will not allow me to download tunes.

    This my sound too simple, but I just kept clikning on the arrow next to the selected music and it finally "Kicked" in.
    I live in Europe ,So Be persistent and don't give up !  Aug. 2013

  • Fixed headers while scrolling works fine in bids but not when deployed to reportserver

    Hi, I am using SQL Server 2008 R2 & deploying a report to reportserver with fixed headers while scrolling, this works fine in bids but not when deployed to reportserver. We are IE 9.
    Thanks in advance...............
    Ione

    Hi ione721,
    Since you have identified the 2 xml files are identical, according to my knowledge, there maybe a compatibility issue with IE 9 and SSRS 2008 R2, so I suggest that you could run the report in compatibility mode. Please make sure you have turned on Compatibility
    View in Internet Explorer 9 by following steps:
    When Internet Explorer recognizes that a webpage is not compatible, you will see the Compatibility View button on the Address bar. Try clicking it.
    When Compatibility View is turned on, the button changes from an outline to a solid color when you view the page.
    The following screenshots are for your reference:
    If you have any questions, please feel free to let me know.
    Best Regards,
    Wendy Fu

  • I have iPhone4. It has been working fine. I have not rebooted my phone lately, so I just deleted a few apps and thought I would do a soft reboot. I held down sleep button and home button. It shut down and apple logo came up but phone will not come back.

    I have iPhone4. It has been working fine. I have not rebooted my phone lately, so I just deleted a few apps and thought I would do a soft reboot. I held down sleep button and home button. It shut down and apple logo came up as it has before, but it has been about 25 minutes and phone has not come back up. What's going on? Help!

    Connect to iTunes on the computer you usually Sync with and “ Restore “...
    http://support.apple.com/kb/HT1414
    If necessary Place the Device into Recovery mode...
    http://support.apple.com/kb/HT1808

  • HT1454 I have a speaker with I phone 30 pin dock, it use to work fine but i am not getting error saying accessory not supported,how i can determine what could be the problem

    I have a speaker with I phone 30 pin dock, it use to work fine but i am not getting error saying accessory not supported,how i can determine what could be the problem
    i am getting the same error with my rf transmitter that i use in my car

    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Did this start happening after an iOS update? Sometimes an iOS update will break compatibility.
    Sometimes this works:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up                             
    - Restore to factory settings/new iOS device.

  • I installed the LR CC, signed in and out, restarted computer, UN-installed CC and installed again, signed in and out several more times. Nothing!!! I have Lr5 and it works fine, Lr6/CC will not open. I'm lost!!  It is currently uninstalled.

    I installed the LR CC, signed in and out, restarted computer, UN-installed CC and installed again, signed in and out several more times. Nothing!!! I have Lr5 and it works fine, Lr6/CC will not open. I'm lost!!

    CC applications close immediately after launch
    if that fails to help, contact adobe support by clicking here and, when available, click 'still need help', https://helpx.adobe.com/contact.html

Maybe you are looking for

  • Please help me figure out this symbol on my 8520 homescreen

    Hey everyone, I have a blackberry curve 8520 from Iwireless. I recently went to Wisconsin from Iowa and when I got back on my homescreen at the top left is a 3 next to a circle that has a white arrow in it pointing southwest and on the northeast side

  • Consuming Web service in Visual Composer

    Hi All, I  have impoerted a z bapi in caf service .I create a web service out of this and try to consume this in Visual Composer .When i do Test data service by right clicking onthe web service and try to execute the web service i get an error saying

  • Can't edit volume in timeline but can in Viewer?

    Turned off waveform display, but can't edit volume in the timeline. The tracks are not locked. I have to select a sound clip and edit volume in the Viewer. I have not had this problem in the past?? Rich

  • AD Resource forest access with user from different forest

    I am trying to access a AD resource forest using a user from a different forest. The "different forest" is the main forest used to contain all user accounts etc. This domain is trusted by the resource forest (which contains things like outlook distri

  • How to read the source table using a dblink in oracle

    Hi, I want to read data from a source table which I can access using dblink in the datawarehouse. I tried different things in DI and I don't know how to do that? Can any one help me on this? Thanks, Gowri