Interective Report - Select columns takes forever - APEX32

I have an interactive report with a query joining two tables. Both tables may have sever hundreds (not many) rows.
The query runs fast on sql but when on interactive report is run based on same query, and when I click on "Select Columns" to display selected columns, it simply gives that scrolling round circle and just stays there without displaying the select columns wizard window.
Any Idea to resolve this issue?
Thanks,
R

Hi,
This might not be problem, but do you see any javascript errors from page ?
If you create report to totally new page, does it work ?
Br,Jari

Similar Messages

  • Report Does Not Follow Select Column Order

    Hi all,
    Apex 2.2 on 10gXE
    I always encounter this problem, the display column on report does not follow the select column sequence order in the "region source".
    It is very tedious clicking the up/down arrow one-by-one in the "report attributes" especially if the display columns are plenty like 40 columns.
    Is there a fix/patch or alternative tips for this bug?
    Thanks a lot,
    Edited by: 843228 on May 24, 2011 10:32 PM

    Apex 2.2 on 10gXEStart by upgrading from this old unsupported version.
    >
    I always encounter this problem, the display column on report does not follow the select column sequence order in the "region source".
    It is very tedious clicking the up/down arrow one-by-one in the "report attributes" especially if the display columns are plenty like 40 columns.
    Is there a fix/patch or alternative tips for this bug?
    >
    This is not a bug. APEX maintains the original column order of the report. This avoids problems downstream in areas like the processing of <tt>g_fnn</tt> arrays in declarative tabular forms, where the assigned arrays are column-order dependent.
    APEX 4.x fixes column ordering bugs that could lead to report corruption, and includes drag-and-drop column ordering in the new tree view in addition to the up/down arrow re-ordering.
    If you really want column order to follow that in the source query, the workaround is to create a new report using the modified query.

  • Interactive Report - Include Non-selected Column in Row Text Search

    Hi,
    We have an interactive report that contains many columns. NAME VARCHAR2(30), TYPE VARCHAR2(30) etc and DESCRIPTION VARCHAR2(4000).
    Normally the DECRIPTION column would not be shown (avalilable for dispaly via 'Select Columns' but not selected), however we need the default Row Text Search (ie direct entry into the search field instead of creating a column filter) to search the DESCRIPTION field wether it is selected for display or not.
    This will allow the user to enter a term that may be contained in the DESCRIPTION to find records without trying to display a 4000 character field in the report - which just looks horrible.
    We are using ApEx 4.1.1.
    Thanks,
    Martin Figg

    Hi Ray,
    As I expected this has got us very close. We went with the code:
    select
    facility_id,
    facility_name,
    '<span title="' || facility_desc|| '">'||substr(facility_desc,0,50)||decode(sign(length( facility_desc)-50),1,' (More...)',NULL)||'</span>' facility_desc,
    equipment_id,
    equipment_name,
    '<span title="' || equipment_desc|| '">'||substr(equipment_desc,0,50)||decode(sign(length( equipment_desc)-50),1,' (More...)',NULL)||'</span>' equipment_desc,
    from
    rf_full_item_list_vwhich works well. The only issue is that when you download to csv you get the html tags etc as well. Put I am a lot closer to a solution than we were.
    Thanks again.
    Martin

  • Selecting Multiple Sonds takes forever

    If I select multiple songs in iTunes 9, it takes forever? I turned of the Genius stuff and it still does this. Any ideas, workarounds?

    So I need to manage my music this way.
    You don't need to do it this way.
    To me, checking and unchecking items to sync to the iPod is tedious.
    Using playlists is much easier to manage what goes onto your iPod.
    Try creating playlist(s) and syncing only those playlists.
    Select the iPod in iTunes. Click the Music tab.
    Tick Sync music and Selected playlists.
    Tick the playlists you want on the iPod.
    Then just Add/Delete from those playlists and plug in the iPod.
    The only time I uncheck things is for items I never or rarely want on the iPod such as old audiobooks and Christmas music.

  • To "control/select" a group of emails and delete takes forever

    when using 'select/control' to group a number of emails for deletion it takes forever to select (7-8 seconds) and to delete takes just as much time. It makes cleaning up email data very troublesome. I have to go to my provider, Windstream, and delete email on their platform.

    What is your anti-virus software?

  • Prompt LOV takes forever to expand the Node on Webi report based on BW Universe

    Hi,
    We have a Webi report migrated from 3.1 to our 4.1 (BI 4.1 SP2 P2) test environment.
    One of the prompt "Vendor" refreshes with LOV in a node structure however when I try to expand the node it takes forever and never opens.
    This prompt is predefined at universe level.
    Strangely on 3.1 I do not see node structure.
    This is on 4.1
    Has anyone come across such scenario.
    Please suggest.
    Regards,
    Asif

    hi,
    I am also facing same problem and nw m using Administrator(userName) then there is no need to be give other rights(administrator using FullControl) as u given
    Applications->Web Intelligence->User security()->Assign security->Advanced rights->Add/remove rights->Application->Web Intelligence->Enable drill mode.
    Plz let me any other solution.
    Regards,

  • Problem with Top N Query when no rows returned (takes forever)

    I have a table with 100 Million rows and I want to get the latest N records using:
    SELECT * FROM
    (SELECT * FROM tablename WHERE columnA= 'ABC' ORDER BY TIME DESC)
    WHERE rownum <= N;
    This works fine and is very fast when there are rows with columnA= 'ABC' but when there are no rows with columnA= 'ABC' the query takes forever.
    The strange things is that the inner query returns immediately when run on it's own when no rows with columnA= 'ABC' exist e.g.
    SELECT * FROM tablename WHERE columnA= 'ABC' ORDER BY TIME DESC
    So why does it take for ever for to run:
    SELECT * FROM (no rows inner query) WHERE rownum <= N;
    I have also tried using:
    SELECT * FROM
    (SELECT columnA, rank() over(ORDER BY TIME DESC) time_rank
    FROM tablename WHERE columnA='ABC')
    WHERE time_rank <= N;
    which returns instantly when there are now rows but takes much longer than the first query when there are rows.

    I cannot see a real difference:With histogram we can see a difference on the elapse when no row returned and into explain plan.
    SQL> drop table tablename
      2  /
    Table dropped.
    Elapsed: 00:00:00.03
    SQL>
    SQL> create table tablename
      2  as
      3  select sysdate - l time
      4         , decode(trunc(dbms_random.value(1,10)),1,'ABC',2,'DEF',3,'GHI',4,'JKL','MNO') as columnA
      5    from (select level l from dual connect by level <= 1000000)
      6  /
    Table created.
    Elapsed: 00:01:19.08
    SQL>
    SQL> select columnA,count(*) from tablename group by columnA
      2  /
    COL   COUNT(*)
    ABC     110806
    DEF     111557
    GHI     111409
    JKL     111030
    MNO     555198
    Elapsed: 00:00:05.05
    SQL>
    SQL> create index i1 on tablename(time)
      2  /
    Index created.
    Elapsed: 00:00:34.08
    SQL>
    SQL> create index i2 on tablename(columna)
      2  /
    Index created.
    Elapsed: 00:00:30.08
    SQL>
    SQL> exec dbms_stats.gather_table_stats(user,'TABLENAME',cascade=>true)
    PL/SQL procedure successfully completed.
    Elapsed: 00:01:18.09
    SQL>
    SQL> set autotrace on explain
    SQL> SELECT * FROM
      2  (SELECT * FROM tablename WHERE columnA= 'ABC' ORDER BY TIME DESC)
      3  WHERE rownum <= 10
      4  /
    TIME     COL
    17/09/06 ABC
    12/09/06 ABC
    08/09/06 ABC
    07/09/06 ABC
    25/08/06 ABC
    22/08/06 ABC
    13/08/06 ABC
    08/07/06 ABC
    14/06/06 ABC
    01/05/06 ABC
    10 rows selected.
    Elapsed: 00:00:01.04
    Execution Plan
       0      SELECT STATEMENT Optimizer=CHOOSE (Cost=2364 Card=10 Bytes=120)
       1    0   COUNT (STOPKEY)
       2    1     VIEW (Cost=2364 Card=200000 Bytes=2400000)
       3    2       SORT (ORDER BY STOPKEY) (Cost=2364 Card=200000 Bytes=2400000)
       4    3         TABLE ACCESS (FULL) OF 'TABLENAME' (Cost=552 Card=200000 Bytes=2400000)
    SQL>
    SQL> SELECT * FROM
      2  (SELECT * FROM tablename WHERE columnA= 'MNO' ORDER BY TIME DESC)
      3  WHERE rownum <= 10
      4  /
    TIME     COL
    20/09/06 MNO
    19/09/06 MNO
    16/09/06 MNO
    14/09/06 MNO
    13/09/06 MNO
    10/09/06 MNO
    06/09/06 MNO
    05/09/06 MNO
    03/09/06 MNO
    02/09/06 MNO
    10 rows selected.
    Elapsed: 00:00:02.04
    Execution Plan
       0      SELECT STATEMENT Optimizer=CHOOSE (Cost=2364 Card=10 Bytes=120)
       1    0   COUNT (STOPKEY)
       2    1     VIEW (Cost=2364 Card=200000 Bytes=2400000)
       3    2       SORT (ORDER BY STOPKEY) (Cost=2364 Card=200000 Bytes=2400000)
       4    3         TABLE ACCESS (FULL) OF 'TABLENAME' (Cost=552 Card=200000 Bytes=2400000)
    SQL>
    SQL> SELECT * FROM
      2  (SELECT * FROM tablename WHERE columnA= 'PQR' ORDER BY TIME DESC)
      3  WHERE rownum <= 10
      4  /
    no rows selected
    Elapsed: 00:00:01.01
    Execution Plan
       0      SELECT STATEMENT Optimizer=CHOOSE (Cost=2364 Card=10 Bytes=120)
       1    0   COUNT (STOPKEY)
       2    1     VIEW (Cost=2364 Card=200000 Bytes=2400000)
       3    2       SORT (ORDER BY STOPKEY) (Cost=2364 Card=200000 Bytes=2400000)
       4    3         TABLE ACCESS (FULL) OF 'TABLENAME' (Cost=552 Card=200000 Bytes=2400000)
    SQL> set autot off
    SQL>
    SQL> EXECUTE DBMS_STATS.GATHER_TABLE_STATS(user,'TABLENAME',METHOD_OPT => 'FOR COLUMNS SIZE 250 columna')
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:09.08
    SQL>
    SQL> set autotrace on explain
    SQL> SELECT * FROM
      2  (SELECT * FROM tablename WHERE columnA= 'ABC' ORDER BY TIME DESC)
      3  WHERE rownum <= 10
      4  /
    TIME     COL
    17/09/06 ABC
    12/09/06 ABC
    08/09/06 ABC
    07/09/06 ABC
    25/08/06 ABC
    22/08/06 ABC
    13/08/06 ABC
    08/07/06 ABC
    14/06/06 ABC
    01/05/06 ABC
    10 rows selected.
    Elapsed: 00:00:01.03
    Execution Plan
       0      SELECT STATEMENT Optimizer=CHOOSE (Cost=1434 Card=10 Bytes=120)
       1    0   COUNT (STOPKEY)
       2    1     VIEW (Cost=1434 Card=110806 Bytes=1329672)
       3    2       SORT (ORDER BY STOPKEY) (Cost=1434 Card=110806 Bytes=1329672)
       4    3         TABLE ACCESS (FULL) OF 'TABLENAME' (Cost=552 Card=110806 Bytes=1329672)
    SQL>
    SQL> SELECT * FROM
      2  (SELECT * FROM tablename WHERE columnA= 'MNO' ORDER BY TIME DESC)
      3  WHERE rownum <= 10
      4  /
    TIME     COL
    20/09/06 MNO
    19/09/06 MNO
    16/09/06 MNO
    14/09/06 MNO
    13/09/06 MNO
    10/09/06 MNO
    06/09/06 MNO
    05/09/06 MNO
    03/09/06 MNO
    02/09/06 MNO
    10 rows selected.
    Elapsed: 00:00:02.05
    Execution Plan
       0      SELECT STATEMENT Optimizer=CHOOSE (Cost=6219 Card=10 Bytes=120)
       1    0   COUNT (STOPKEY)
       2    1     VIEW (Cost=6219 Card=555198 Bytes=6662376)
       3    2       SORT (ORDER BY STOPKEY) (Cost=6219 Card=555198 Bytes=6662376)
       4    3         TABLE ACCESS (FULL) OF 'TABLENAME' (Cost=552 Card=555198 Bytes=6662376)
    SQL>
    SQL> SELECT * FROM
      2  (SELECT * FROM tablename WHERE columnA= 'STU' ORDER BY TIME DESC)
      3  WHERE rownum <= 10
      4  /
    no rows selected
    Elapsed: 00:00:00.00
    Execution Plan
       0      SELECT STATEMENT Optimizer=CHOOSE (Cost=6 Card=1 Bytes=12)
       1    0   COUNT (STOPKEY)
       2    1     VIEW (Cost=6 Card=1 Bytes=12)
    3 2 SORT (ORDER BY STOPKEY) (Cost=6 Card=1 Bytes=12)
    4 3 TABLE ACCESS (BY INDEX ROWID) OF 'TABLENAME' (Cost=5 Card=1 Bytes=12)
    5 4 INDEX (RANGE SCAN) OF 'I2' (NON-UNIQUE) (Cost=4 Card=1)
    SQL> Nicolas.

  • Report Attribute - Column Attribute - Sort

    I have a SQL Query (PL/SQL function body returning SQL Query) report. I have the number of returned limited to 100 rows (Report Attributes - Layout and Pagination - Max Row Count). When I run this report without any column sorts (none of the Column Attribute Sort columns are checked) it runs fast. If I set either the Sort Sequence, or check any one of the Sort columns, the report takes forever to run. This with only 100 rows on the report.
    Where is the sort being performed - Is the sort being performed within Oracle (meaning, in the database) or is it being sorted in Apex or on the Client?
    Note that there is no "order by" nor "group by" contained within the SQL - just a simple 2 table join (an inner join).

    Thank You, Thank You, Thank You.
    That is indeed the point I am trying to make.
    My report is a SQL Query (PL/SQL Function body returning SQL Query) and is based on information provided in several PopUp LOVs. The more LOVs used, the more information provided to the WHERE CLAUSE, and therefore the less data returned to the screen.
    When the End User produces a small report, they are likely to want to sort it.
    But when they bring back huge amounts of data, they don't want it sorted. Especially not automatically sorted.
    In most cases, this is happening when we are joining two or three tables with say 10 million rows on each table. The join condition is good (meaning there is not a Cartesian Product) but the resultant data is 10 million rows - something you not likely want to sort. Even with a limit on the number of rows returned (Report Attributes - Layout and Pagination - Max Row Count) to something reasonable, like 500, the 10 million resultant rows are first being sorted and then the first 500 returned.
    So, yes, a "sort-enabled" report should NOT automatically sort. Which is what is happening.
    Of course, it might be a good thing to have some sort of Variable that we could set on a page to decide if we want automatic sorting. On most pages, an automatic sort is great - as the amount of data returned will always be small.
    On the pages where I have this problem, it would be great to do the automatic sort when one or more of the PopUp LOVs are populated. So, within a "After Submit" process I might want to turn automatic sorting on.
    Hey, if we are going to ask for an enhancement/change, we might as well ask for something really flexible.

  • What is wrong with Safari quits unexpectedly takes forever to load pinwheel spins and spins and spins do this for months

    What is wrong with Safari quits unexpectedly takes forever to load pinwheel spins and spins and spins going on for months

    Process:         Safari [191]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.1.7 (6534.57.2)
    Build Info:      WebBrowser-75345702~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [147]
    Date/Time:       2012-07-23 14:19:38.786 -0400
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   ???                                     000000000000000000 0 + 0
    1   ???                                     0x0000000100661f90 0 + 4301660048
    2   com.apple.WebKit2                       0x00007fff8748b488 void CoreIPC::handleMessageVariadic<Messages::WebPageProxy::DidFinishDocumentLoadFor Frame, WebKit::WebPageProxy, void (WebKit::WebPageProxy::*)(unsigned long long, CoreIPC::ArgumentDecoder*)>(CoreIPC::ArgumentDecoder*, WebKit::WebPageProxy*, void (WebKit::WebPageProxy::*)(unsigned long long, CoreIPC::ArgumentDecoder*)) + 87
    3   com.apple.WebKit2                       0x00007fff8748044c WebKit::WebProcessProxy::didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*) + 162
    4   com.apple.WebKit2                       0x00007fff87480338 CoreIPC::Connection::dispatchMessage(CoreIPC::Connection::Message<CoreIPC::Argu mentDecoder>&) + 138
    5   com.apple.WebKit2                       0x00007fff87480297 CoreIPC::Connection::dispatchMessages() + 121
    6   com.apple.WebKit2                       0x00007fff8747d5e1 RunLoop::performWork() + 135
    7   com.apple.WebKit2                       0x00007fff8747d52f RunLoop::performWork(void*) + 83
    8   com.apple.CoreFoundation                0x00007fff88a763d1 __CFRunLoopDoSources0 + 1361
    9   com.apple.CoreFoundation                0x00007fff88a745c9 __CFRunLoopRun + 873
    10  com.apple.CoreFoundation                0x00007fff88a73d8f CFRunLoopRunSpecific + 575
    11  com.apple.HIToolbox                     0x00007fff885f57ee RunCurrentEventLoopInMode + 333
    12  com.apple.HIToolbox                     0x00007fff885f5551 ReceiveNextEventCommon + 148
    13  com.apple.HIToolbox                     0x00007fff885f54ac BlockUntilNextEventMatchingListInMode + 59
    14  com.apple.AppKit                        0x00007fff87b48eb2 _DPSNextEvent + 708
    15  com.apple.AppKit                        0x00007fff87b48801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    16  com.apple.Safari.framework              0x00007fff814ee3a8 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 177
    17  com.apple.AppKit                        0x00007fff87d83dc3 -[NSApplication _realDoModalLoop:peek:] + 442
    18  com.apple.AppKit                        0x00007fff87d81951 -[NSApplication runModalForWindow:] + 129
    19  com.apple.AppKit                        0x00007fff87d7ee07 -[NSAlert runModal] + 96
    20  com.apple.Safari.framework              0x00007fff814a88d3 -[AppController(FileInternal) _confirmStealthMode] + 287
    21  com.apple.Safari.framework              0x00007fff814a8e65 -[AppController(FileInternal) _togglePrivateBrowsingSuppressingConfirmation:] + 144
    22  com.apple.AppKit                        0x00007fff87c9deda -[NSApplication sendAction:to:from:] + 95
    23  com.apple.Safari.framework              0x00007fff814ee410 -[BrowserApplication sendAction:to:from:] + 82
    24  com.apple.AppKit                        0x00007fff87cc246a -[NSMenuItem _corePerformAction] + 365
    25  com.apple.AppKit                        0x00007fff87cc21d4 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 121
    26  com.apple.AppKit                        0x00007fff87f47cf4 -[NSMenu _internalPerformActionForItemAtIndex:] + 35
    27  com.apple.AppKit                        0x00007fff87df99e9 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 136
    28  com.apple.AppKit                        0x00007fff87ca499c NSSLMMenuEventHandler + 321
    29  com.apple.HIToolbox                     0x00007fff885ce7f7 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1002
    30  com.apple.HIToolbox                     0x00007fff885cdd46 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 395
    31  com.apple.HIToolbox                     0x00007fff885eba81 SendEventToEventTarget + 45
    32  com.apple.HIToolbox                     0x00007fff8861ac35 SendHICommandEvent(unsigned int, HICommand const*, unsigned int, unsigned int, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 387
    33  com.apple.HIToolbox                     0x00007fff88647a0a SendMenuCommandWithContextAndModifiers + 56
    34  com.apple.HIToolbox                     0x00007fff886479c2 SendMenuItemSelectedEvent + 101
    35  com.apple.HIToolbox                     0x00007fff886478d2 FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 150
    36  com.apple.HIToolbox                     0x00007fff88628c27 MenuSelectCore(MenuData*, Point, double, unsigned int, OpaqueMenuRef**, unsigned short*) + 467
    37  com.apple.HIToolbox                     0x00007fff8862837c _HandleMenuSelection2 + 453
    38  com.apple.AppKit                        0x00007fff87b75851 _NSHandleCarbonMenuEvent + 236
    39  com.apple.AppKit                        0x00007fff87b49362 _DPSNextEvent + 1908
    40  com.apple.AppKit                        0x00007fff87b48801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    41  com.apple.Safari.framework              0x00007fff814ee3a8 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 177
    42  com.apple.AppKit                        0x00007fff87b0e68f -[NSApplication run] + 395
    43  com.apple.AppKit                        0x00007fff87b073b0 NSApplicationMain + 364
    44  com.apple.Safari.framework              0x00007fff816abba0 SafariMain + 200
    45  com.apple.Safari                        0x0000000100000f1c 0x100000000 + 3868
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff83b02c0a kevent + 10
    1   libSystem.B.dylib                       0x00007fff83b04add _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff83b047b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff83b042de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff83b03c08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff83b03aa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                       0x00007fff83b03a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff83b03e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff83b03aa5 start_wqthread + 13
    Thread 3:  WebCore: IconDatabase
    0   libSystem.B.dylib                       0x00007fff83b24a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff83b28881 _pthread_cond_wait + 1286
    2   com.apple.WebCore                       0x00007fff88e8fca9 WebCore::IconDatabase::syncThreadMainLoop() + 265
    3   com.apple.WebCore                       0x00007fff88e8d0a8 WebCore::IconDatabase::iconDatabaseSyncThread() + 296
    4   libSystem.B.dylib                       0x00007fff83b22fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff83b22e89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                       0x00007fff83ae9d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff83aea3ed mach_msg + 59
    2   com.apple.QuartzCore                    0x00007fff8711e396 CA::Render::Server::server_thread(void*) + 177
    3   com.apple.QuartzCore                    0x00007fff8711e2d6 thread_fun + 34
    4   libSystem.B.dylib                       0x00007fff83b22fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff83b22e89 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib                       0x00007fff83ae9d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff83aea3ed mach_msg + 59
    2   libSystem.B.dylib                       0x00007fff83b66a17 mach_msg_server + 468
    3   RapportDaishi.dylib                     0x00000001127cb7b0 mig_rpc_server::server_working_thread(void*) + 58
    4   libSystem.B.dylib                       0x00007fff83b22fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff83b22e89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                       0x00007fff83b2d932 select$DARWIN_EXTSN + 10
    1   RapportUtil1.dylib                      0x0000000114287368 resolver_heartbeat + 230
    2   RapportUtil1.dylib                      0x0000000114266a82 bp_heartbeat_thread + 209
    3   libSystem.B.dylib                       0x00007fff83b22fd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff83b22e89 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib                       0x00007fff83b24a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff83b248f9 nanosleep + 148
    2   libSystem.B.dylib                       0x00007fff83b24863 usleep + 57
    3   RapportDaishi.dylib                     0x00000001127b770f active_monitor_finish_thread(void*) + 61
    4   libSystem.B.dylib                       0x00007fff83b22fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff83b22e89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                       0x00007fff83ae9d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff83aea3ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff88a74902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff88a73d8f CFRunLoopRunSpecific + 575
    4   com.apple.Foundation                    0x00007fff85cce14f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5   com.apple.Foundation                    0x00007fff85c4f114 __NSThread__main__ + 1429
    6   libSystem.B.dylib                       0x00007fff83b22fd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff83b22e89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                       0x00007fff83b24a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff83b248f9 nanosleep + 148
    2   libSystem.B.dylib                       0x00007fff83b24863 usleep + 57
    3   RapportDaishi.dylib                     0x00000001127bb923 web_page_monitor::async_finish_document_load() + 37
    4   RapportUtil1.dylib                      0x00000001142bfca1 osx_async_tasks_scheduler::execute_task(tasks_scheduler::task*) + 67
    5   RapportUtil1.dylib                      0x000000011429b3a9 async_tasks_scheduler::work() + 437
    6   RapportUtil1.dylib                      0x00000001142bfd34 async_task_thread_wrapper(void*) + 10
    7   libSystem.B.dylib                       0x00007fff83b22fd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff83b22e89 thread_start + 13
    Thread 10:  Safari: SpinningProgressIndicator
    0   libSystem.B.dylib                       0x00007fff83ae9d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff83aea3ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff88a74902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff88a73d8f CFRunLoopRunSpecific + 575
    4   com.apple.Foundation                    0x00007fff85c89b74 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
    5   com.apple.Foundation                    0x00007fff85c89a53 -[NSRunLoop(NSRunLoop) run] + 77
    6   com.apple.Safari.framework              0x00007fff816e4a21 -[Heartbeat _startHeartbeatRunLoop] + 244
    7   com.apple.Foundation                    0x00007fff85c4f114 __NSThread__main__ + 1429
    8   libSystem.B.dylib                       0x00007fff83b22fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff83b22e89 thread_start + 13
    Thread 11:  Safari: SafeBrowsingManager
    0   libSystem.B.dylib                       0x00007fff83ae9d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff83aea3ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff88a74902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff88a73d8f CFRunLoopRunSpecific + 575
    4   com.apple.Safari.framework              0x00007fff8166407d Safari::MessageRunLoop::threadBody() + 107
    5   com.apple.Safari.framework              0x00007fff816640b7 Safari::MessageRunLoop::threadCallback(void*) + 9
    6   libSystem.B.dylib                       0x00007fff83b22fd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff83b22e89 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib                       0x00007fff83b03a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff83b03e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff83b03aa5 start_wqthread + 13
    Thread 13:
    0   libSystem.B.dylib                       0x00007fff83b03a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff83b03e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff83b03aa5 start_wqthread + 13
    Thread 14:
    0   libSystem.B.dylib                       0x00007fff83b24a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff83b248f9 nanosleep + 148
    2   libSystem.B.dylib                       0x00007fff83b24863 usleep + 57
    3   com.apple.AppKit                        0x00007fff87c943a1 -[NSUIHeartBeat _heartBeatThread:] + 1540
    4   com.apple.Foundation                    0x00007fff85c4f114 __NSThread__main__ + 1429
    5   libSystem.B.dylib                       0x00007fff83b22fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff83b22e89 thread_start + 13
    Thread 15:
    0   libSystem.B.dylib                       0x00007fff83b03a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff83b03e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff83b03aa5 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00000001001d2980  rbx: 0x0000000100657650  rcx: 0x0000000100498c00  rdx: 0x0000000000000000
      rdi: 0x000000010049e000  rsi: 0x00000001004f8d20  rbp: 0x00007fff5fbfd350  rsp: 0x00007fff5fbfd318
       r8: 0x00000001127eda48   r9: 0x00000000ffd8bc56  r10: 0x00000000742ddc96  r11: 0x0000000000000003
      r12: 0x0000000100498c00  r13: 0x0000000000000000  r14: 0x00000001004f8d20  r15: 0x000000010049e000
      rip: 0x0000000000000000  rfl: 0x0000000000010202  cr2: 0x0000000000000000
    Binary Images:
           0x100000000 -        0x100000fff  com.apple.Safari 5.1.7 (6534.57.2) <2208AB17-7F39-5DC1-AE9F-7946DEE3CA0B> /Applications/Safari.app/Contents/MacOS/Safari
           0x100783000 -        0x1007b8fe7 +librooksbas.dylib ??? (???) <EEF7BAA0-C433-17AF-E049-C7B2C22BF139> /Library/Rapport/bin/librooksbas.dylib
           0x102761000 -        0x102782fff +librooksmce.dylib ??? (???) <AFB00909-A5BE-9547-98A8-B85E32F942BF> /Library/Rapport/bin/librooksmce.dylib
           0x1127b3000 -        0x1127e6fff +RapportDaishi.dylib ??? (???) <3569E41D-25A7-FF22-084E-4A4D5D16E8FA> /Library/Rapport/bin/RapportDaishi.dylib
           0x114252000 -        0x11444cfff +RapportUtil1.dylib ??? (???) <3A5C82E9-2D75-04E0-6A6D-E2946F42EA17> /Library/Rapport/bin/RapportUtil1.dylib
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <B536F2F1-9DF1-3B6C-1C2C-9075EA219A06> /usr/lib/dyld
        0x7fff80003000 -     0x7fff800bcfff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff800bd000 -     0x7fff800e5fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff80126000 -     0x7fff80156fef  com.apple.shortcut 1.1 (1.1) <A99C9D8E-290B-B1E4-FEA5-CC5F2FB9C18D> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff80157000 -     0x7fff8015efff  com.apple.OpenDirectory 10.6 (10.6) <4200CFB0-DBA1-62B8-7C7C-91446D89551F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8015f000 -     0x7fff80162ff7  libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff80163000 -     0x7fff801fdfff  com.apple.ApplicationServices.ATS 275.19 (???) <2DE8987F-4563-4D8E-45C3-2F6F786E120D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff802b6000 -     0x7fff80393fff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff803cf000 -     0x7fff80402ff7  libTrueTypeScaler.dylib ??? (???) <B7BA8104-FA18-39A2-56E1-922EE7A660AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff80416000 -     0x7fff8041aff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff806cb000 -     0x7fff806dafef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8073c000 -     0x7fff80a5ffe7  com.apple.JavaScriptCore 6534.57 (6534.57.3) <99973578-D474-3664-1388-61CB47E9D6E9> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff80ad2000 -     0x7fff80b1bff7  com.apple.securityinterface 4.0.1 (40418.0.1) <9AF33A9F-2D8C-2AE6-868C-EA836C861031> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff80b1c000 -     0x7fff81326fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff81327000 -     0x7fff81441fff  libGLProgrammability.dylib ??? (???) <D1650AED-02EF-EFB3-100E-064C7F018745> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff81454000 -     0x7fff81485fff  libGLImage.dylib ??? (???) <562565E1-AA65-FE96-13FF-437410C886D0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff81486000 -     0x7fff8148cfff  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <D2F8C7E3-CBA1-2E66-1376-04AA839DABBB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff8148d000 -     0x7fff81cbffe7  com.apple.Safari.framework 6534 (6534.57.2) <596F6CCF-D815-1727-8E58-8B8EE0E44753> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff81d1b000 -     0x7fff8204ffef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff82050000 -     0x7fff8205bfff  com.apple.CrashReporterSupport 10.6.7 (258) <A2CBB18C-BD1C-8650-9091-7687E780E689> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8217e000 -     0x7fff8231ffe7  com.apple.WebKit 6534.57 (6534.57.2) <B99EF91E-676F-79A0-FADC-A72C1E14536E> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff82320000 -     0x7fff825a9ff7  com.apple.security 6.1.2 (55002) <0D80504C-9A6D-C865-AF37-7C231ACF97CB> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff825aa000 -     0x7fff825aaff7  com.apple.vecLib 3.6 (vecLib 3.6) <08D3D45D-908B-B86A-00BA-0F978D2702A7> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff825d0000 -     0x7fff82680fff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff82681000 -     0x7fff826a8ff7  libJPEG.dylib ??? (???) <32EDAB18-08ED-B31A-D2BD-12EFFE60D83C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff826a9000 -     0x7fff82868fff  com.apple.ImageIO.framework 3.0.5 (3.0.5) <175E97F1-B1A7-655A-F154-5B6ACC5F3985> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff82bad000 -     0x7fff82d6bfff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib
        0x7fff82d6c000 -     0x7fff82df1ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff82df2000 -     0x7fff82df7fff  libGIF.dylib ??? (???) <3FD1157B-C002-5268-DEF4-70DDC40E6EDE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff82df8000 -     0x7fff82e03fff  com.apple.corelocation 12.3 (12.3) <A6CFB410-2333-8BE3-658B-75A93C90A9CC> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff82e04000 -     0x7fff82e4dfef  libGLU.dylib ??? (???) <B0F4CA55-445F-E901-0FCF-47B3B4BAE6E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff82e8f000 -     0x7fff82ecafff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff82ecb000 -     0x7fff82ecefff  com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff83920000 -     0x7fff83973ff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff83982000 -     0x7fff83982ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <2BB7D669-4B40-6A52-ADBD-DA4DB3BC0B1B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff83983000 -     0x7fff83a0ffef  SecurityFoundation ??? (???) <6860DE26-0D42-D1E8-CD7C-5B42D78C1E1D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff83a10000 -     0x7fff83a57ff7  com.apple.coreui 2 (114) <D7645B59-0431-6283-7322-957D944DAB21> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff83a58000 -     0x7fff83ae8fff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff83ae9000 -     0x7fff83caafef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff83cab000 -     0x7fff83cbdfe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff83cbe000 -     0x7fff83dddfe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff83dde000 -     0x7fff83e7efff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff83e7f000 -     0x7fff83f3cfff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff83f3d000 -     0x7fff83f43ff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff83f44000 -     0x7fff83f65fe7  libPng.dylib ??? (???) <A6BF1360-1B23-78BD-12EF-E4A5753EEB76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff83f66000 -     0x7fff83f9cff7  com.apple.framework.Apple80211 6.2.5 (625.6) <B67C7A65-E4FB-4419-3F31-4482E17EF203> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff83f9d000 -     0x7fff84007fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <75A8D840-4ACE-6560-0889-2AFB6BE08E59> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff84008000 -     0x7fff84087fe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff840d3000 -     0x7fff840deff7  com.apple.HelpData 2.0.5 (34.1.1) <24DC6CD3-02B7-9332-FF6D-F0C545857B55> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff840df000 -     0x7fff84104ff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff84105000 -     0x7fff84125ff7  com.apple.DirectoryService.Framework 3.6 (621.14) <15CF4C96-372D-C706-A237-47D20D2CAA6B> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff84297000 -     0x7fff842dafef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff8457e000 -     0x7fff84589ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <F0DDF27E-DB55-07CE-E548-C62095BE8167> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8458a000 -     0x7fff8468eff7  com.apple.PubSub 1.0.5 (65.28) <11D77223-EAAE-0199-1F99-0D28680559CE> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff8468f000 -     0x7fff8470cfef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff84731000 -     0x7fff84786ff7  com.apple.framework.familycontrols 2.0.2 (2020) <F09541B6-5E28-1C01-C1AE-F6A2508670C7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff84787000 -     0x7fff847cfff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <170DE04F-89AB-E295-0880-D69CAFBD7979> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff84ba6000 -     0x7fff84bf5ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff84bf6000 -     0x7fff84c19fff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff84c1a000 -     0x7fff84c1aff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff84c1b000 -     0x7fff84c3cfff  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <9410EC7F-4D24-6740-AFEE-90405750FAD7> /usr/lib/libresolv.9.dylib
        0x7fff84c3d000 -     0x7fff85339ff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff853ec000 -     0x7fff85407ff7  com.apple.openscripting 1.3.1 (???) <FD46A0FE-AC79-3EF7-AB4F-396D376DDE71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff85408000 -     0x7fff8541cff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8541d000 -     0x7fff85552fff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F4814A13-E557-59AF-30FF-E62929367933> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff855ad000 -     0x7fff855aeff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <49B723D1-85F8-F86C-2331-F586C56D68AF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff85627000 -     0x7fff85636fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8571b000 -     0x7fff857d0fe7  com.apple.ink.framework 1.3.3 (107) <FFC46EE0-3544-A459-2AB9-94778A75E3D4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8587e000 -     0x7fff8588cff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
        0x7fff8588d000 -     0x7fff8589efff  SyndicationUI ??? (???) <1DBD7D2A-56A1-BDFA-4742-04B2F42FDF2D> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
        0x7fff85a6e000 -     0x7fff85a74ff7  IOSurface ??? (???) <04EDCEDE-E36F-15F8-DC67-E61E149D2C9A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff85bdd000 -     0x7fff85c3dfe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff85c3e000 -     0x7fff85ec0fff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff85ec1000 -     0x7fff85f17fff  libTIFF.dylib ??? (???) <31FA0318-105B-9E11-B4D4-246BFD5B18E1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff85f8e000 -     0x7fff85fa4fef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff85fe7000 -     0x7fff86012ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <3630A97F-55C1-3F34-CA63-3847653C9645> /usr/lib/libxslt.1.dylib
        0x7fff86013000 -     0x7fff86051fe7  libFontRegistry.dylib ??? (???) <395D7C0D-36B5-B353-0DC8-51ABC0B1C030> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff86095000 -     0x7fff860e1fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff860e2000 -     0x7fff8612cff7  com.apple.Metadata 10.6.3 (507.15) <DE238BE4-5E22-C4D5-CF5C-3D50FDEE4701> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8612d000 -     0x7fff86141fff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff86142000 -     0x7fff86143fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff86190000 -     0x7fff86246ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff86247000 -     0x7fff86247ff7  com.apple.Carbon 150 (152) <19B37B7B-1594-AD0A-7F14-FA2F85AD7241> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff86321000 -     0x7fff863e3fe7  libFontParser.dylib ??? (???) <EF06F16C-0CC9-B4CA-7BD9-0A97FA967340> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff863e4000 -     0x7fff863f0fff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <6FB0A8F4-72A1-D28F-E801-DE2C7498AFB9> /usr/lib/libbz2.1.0.dylib
        0x7fff863f1000 -     0x7fff8642eff7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <F743389F-F25A-A77D-4FCA-D6B01AF2EE6D> /usr/lib/libssl.0.9.8.dylib
        0x7fff8642f000 -     0x7fff86876fef  com.apple.RawCamera.bundle 3.7.1 (570) <5AFA87CA-DC3D-F84E-7EA1-6EABA8807766> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff86893000 -     0x7fff869a9ff7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <3814FCF9-92B9-A6AB-E76A-F7021894AA3F> /usr/lib/libxml2.2.dylib
        0x7fff869aa000 -     0x7fff869aeff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff869af000 -     0x7fff869f0fef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff86ae6000 -     0x7fff86c24fff  com.apple.CoreData 102.1 (251) <32233D4D-00B7-CE14-C881-6BF19FD05A03> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff86d1e000 -     0x7fff86d2dfff  libxar.1.dylib ??? (???) <CBAF862A-3C77-6446-56C2-9C4461631AAF> /usr/lib/libxar.1.dylib
        0x7fff86d2e000 -     0x7fff86d31ff7  com.apple.securityhi 4.0 (36638) <38935851-09E4-DDAB-DB1D-30ADC39F7ED0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff86f15000 -     0x7fff86f17fff  libRadiance.dylib ??? (???) <B422DA26-E0CF-F280-6EB4-3B8FEF59B665> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff86f18000 -     0x7fff86f18ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff86fe5000 -     0x7fff870cafef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff870cb000 -     0x7fff87468fe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff87469000 -     0x7fff87469ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <DA9BFF01-40DF-EBD5-ABB7-787DAF2D77CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8746a000 -     0x7fff87624ff7  com.apple.WebKit2 6534.57 (6534.57.2) <0C4B9A17-F7DA-B2FD-961E-DA258D56CCDE> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff87625000 -     0x7fff87a68fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff87a69000 -     0x7fff87a6fff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff87a70000 -     0x7fff87a81ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <FB5EE53A-0534-0FFA-B2ED-486609433717> /usr/lib/libz.1.dylib
        0x7fff87ab4000 -     0x7fff87ac9ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <DC999B32-BF41-94C8-0583-27D9AB463E8B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff87aca000 -     0x7fff87b04fff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <7982734A-B66B-44AA-DEEC-364D2C10009B> /usr/lib/libcups.2.dylib
        0x7fff87b05000 -     0x7fff884ffff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff88575000 -     0x7fff88582fe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff885c7000 -     0x7fff888c5fff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff888c6000 -     0x7fff888c6ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff88a28000 -     0x7fff88b9ffe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff88c2e000 -     0x7fff88cacff7  com.apple.CoreText 151.12 (???) <5BE797B7-C903-B664-ADD9-7514B1A6EF9E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff88cad000 -     0x7fff88d29ff7  com.apple.ISSupport 1.9.7 (55) <BAE839AB-9DBD-FB23-F1F1-39445F04D8DA> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff88d2a000 -     0x7fff88d2bff7  com.apple.TrustEvaluationAgent 1.1 (1) <74800EE8-C14C-18C9-C208-20BBDB982D40> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff88d2c000 -     0x7fff88d42fe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff88d43000 -     0x7fff88d86ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff88e88000 -     0x7fff89ef2fef  com.apple.WebCore 6534.57 (6534.57.2) <9BE3BFB2-D520-CD10-E4A1-3C2AF322A097> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff89fab000 -     0x7fff8a06cfef  com.apple.ColorSync 4.6.8 (4.6.8) <7DF1D175-6451-51A2-DBBF-40FCA78C0D2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8a06d000 -     0x7fff8a06ffff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8a070000 -     0x7fff8a089fff  com.apple.CFOpenDirectory 10.6 (10.6) <CCF79716-7CC6-2520-C6EB-A4F56AD0A207> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8a08a000 -     0x7fff8a0cbfff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8a0cc000 -     0x7fff8a0d1fff  libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8a640000 -     0x7fff8a657fff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8a6ca000 -     0x7fff8a79efe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff8a7a7000 -     0x7fff8a7acff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib

  • After OS X update,my mac takes forever to startup.

    After last update OS X version 10.10.2 , my macbook takes forever to start up. It got really slow when browsing safari or opening apps. And overtime i have to turn it off, i have to press and hold the start button, while before this update i just had to press on the start button and the options (restart, sleep, shut down) will appear.

    Try these in order testing your system after each to see if it's back to normal:
    1. a. Resetting your Mac's PRAM and NVRAM
        b. Intel-based Macs: Resetting the System Management Controller (SMC)
    2. Restart the computer in Safe Mode, then restart again, normally. If this doesn't help, then:
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the Utilities menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    3. Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the Utilities menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu. Select Restart from the Apple menu.
    4. Reinstall Yosemite: Reboot from the Recovery HD. Select Reinstall OS X from the Utilities menu, and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible
                because it is three times faster than wireless.
    5. Reinstall Yosemite from Scratch:
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    How to Clean Install OS X Yosemite
    Note: You will need an active Internet connection. I suggest using Ethernet if possible
                because it is three times faster than wireless.

  • Since upgrading to Yosemite my computer is so slow. It takes forever for a page to load. Any suggestions?

    Since upgrading my MacBook Pro to Yosemite my computer is so slow. It takes forever for a page to load. Any suggestions?

    Try these in order testing your system after each to see if it's back to normal:
    1. a. Resetting your Mac's PRAM and NVRAM
        b. Intel-based Macs: Resetting the System Management Controller (SMC)
    2. Restart the computer in Safe Mode, then restart again, normally. If this doesn't help, then:
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the Utilities menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    3. Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the Utilities menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu. Select Restart from the Apple menu.
    4. Reinstall Yosemite: Reboot from the Recovery HD. Select Reinstall OS X from the Utilities menu, and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible
                because it is three times faster than wireless.
    5. Reinstall Yosemite from Scratch:
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    How to Clean Install OS X Yosemite
    Note: You will need an active Internet connection. I suggest using Ethernet if possible
                because it is three times faster than wireless.

  • It takes forever to print anything...

    This just started a little while ago. We have two G4s on a network. Both running 10.3.9. One prints just fine. The other takes forever to print anything. We noticed this printing InDesign docs. So I ran a test using TextEdit. I typed a single word and hit print. It took nearly a minute to print one word.
    We have an HP Laserjet 1320N on the network.
    Anybody have any idea what could be causing this? Surely it must be a System issue.
    Thanks
    Joe G.

    Hi Joe,
    So it gets caught up on the second occasion, suggesting that the OS is not getting the 'all clear' from the printer after the first job. Incidentally, while it is taking forever to print is the (Console.app) system.log writing lots of error messages whilst this is occurring? Please do not post the log, just say if there is log activity occurring.
    You could try two things;
    1. delete again this file.
    ~/Library/Preferences/com.apple.print.PrinterProxy.HPLaserjet.plist
    then run Repair Permissions from Disk utilities (found in Utilities)
    and then in an Administative account open Terminal (found in Utilities) and copy and paste into terminal the command
    sudo periodic daily weekly monthly
    type in the admin password, (it will type invisibly).
    press return and wait, it could take a minute to complete.
    and see if that fixes things.
    2. If not, then I suggest do a Repair Disk.
    To do this: Insert the Install Disk 1 into the drive and then select Restart, then hold down the C key until you hear the chime.
    This will take you to the installation software, but you do not want to install.
    Select your language, then go up to the top menu bar to First Aid and navigate to the Disk Utilities application.
    Select the start up drive, then you click on Repair Disk .
    If it finds errors, repeat the process until it reports no errors.
    Then run Repair Permissions.
    After these repairs, quit the application, and restart normally.
    good luck with those procedures.
    regards roam

  • LR4 - Book module takes forever to load

    OK....so I've asked this question previously on both here and the Photoshop Feedback forum, without any real answers/responses.  So I'm giving it one last shot....
    Here's the deal - when I first start LR4, loading the Book, Slideshow, Map and to a lesser extent, Web modules take forever.  Especially the Book module - it takes a good 25-30 seconds to load.  Once it's loaded it's fine.  I've been told everything from "that's normal" to there's something wrong with my computer.
    Laptop Spec's - Spring 2010 15" MBP 2.4 i5 with 8gigs of RAM, 256mb video RAM, 500gig 7500rpm HD.
    Other's have reported similar delays (none reaching 25-30 seconds though), where as others don't have any issues at all.  Would appreciate any thoughts/input/encouragement before I kick LR4 to the curb permanently.

    When you open Lightroom and go to the Book Module the first time, it must do two things:
    1. The Book module has a more sophisticated text engine than the other modules and it must load fonts that are installed on the system into memory. The more fonts on your system the greater the potential delay.
    2. To a greater extent, when you first open the Book module, all of the page-templates must load into memory for access. Once loaded, they do not need to be loaded again until you close Lightroom.
    No matter how much processor or Ram you have will not appreciably affect these two operations. They are purely disk-read operations and are primarily limited by your disk data path.
    Map Module requires interface with the internet to access Maps.
    Web and Slideshow can be sped up by not having large numbers of available images standing by to render. Keeping the toolbar set to "Selected Images Only" rather than "All Filmstrip Images" helps this.

  • SpotLight takes forever to index

    I know there are a few questions with this title, but they are really about SpotLight taking forever to prepare the indexing. In my case, it takes forever to index. It starts, get a few pixels' worth of the progress bar done, and then stops forever. I've left my computer on for hours on end hoping SoptLight will eventually finish its job; it doesn't. (By the way, it also doesn't give me an estimated remaining time; I just get the progress bar.)
    I'm running Mavericks (10.9.5) on a MacBook Pro from September 2014; my computer runs on a 2.2-GHz i7 processor and has 16 GB of RAM. I've got about 420 GB of data (recovered from a TimeMachine backup) split up as follows: about 200 GB is in the computer's 250-GB internal flash-memory "hard disk", and the rest of it is in an external SeaGate 2-TB drive.
    For the sake of my battery (which is eaten up ridiculously quickly by SpotLight), I've turned indexing off with the terminal command sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.metadata.mds.plist. However, I do want the indexing to get done so I can actually search my Mac for stuff. I've already run into one instance of the computer being unable to find a document which I know is there (I think it was in the SeaGate drive, but it was looking everywhere, not just in the internal disk); I don't want that to happen again. So how do I get the indexing to actually get done? (Oh, I have a STRONG preference for solutions which don't involve installing third-party software.)
    I'd never had this problem before, and I've restored data from TimeMachine backups in the past.
    Thanks in advance for any help.

    Thanks for your reply, Linc Davis.
    The first terminal command resulted in the following (not knowing whether they are privacy-related or not, I replaced the hex codes after MDSImporterProxy with Xs):
    Oct  4 17:25:46 (Error) ImportServer: <MDSImporterProxy 0xXXXXXXXXXXXX shutdown:NO got shutdown notification:NO> still waiting for plug-in info from bundle finder
    Oct  5 12:14:16 (Error) ImportServer: <MDSImporterProxy 0xXXXXXXXXXXXX shutdown:NO got shutdown notification:NO> still waiting for plug-in info from bundle finder
    Oct  5 18:20:28 (Error) ImportServer: <MDSImporterProxy 0xXXXXXXXXXXXX shutdown:NO got shutdown notification:NO> still waiting for plug-in info from bundle finder
    Oct  6 08:27:29 (Error) ImportServer: <MDSImporterProxy 0xXXXXXXXXXXXX shutdown:NO got shutdown notification:NO> still waiting for plug-in info from bundle finder
    Oct  6 19:48:33 (Error) ImportServer: <MDSImporterProxy 0xXXXXXXXXXXXX shutdown:NO got shutdown notification:NO> still waiting for plug-in info from bundle finder
    Oct  7 09:23:53 (Error) ImportServer: <MDSImporterProxy 0xXXXXXXXXXXXX shutdown:NO got shutdown notification:NO> still waiting for plug-in info from bundle finder
    The second terminal command resulted in the following:
    Spotlight server is disabled.
    I therefore reactivated SpotLight indexing (with the same command as in my original post, only replacing unload with load), after which I immediately reran the second terminal command. I got the following:
      Error: unexpected indexing state.  kMDConfigSearchLevelTransitioning
    /Volumes/SeaGate:
      Error: unexpected indexing state.  kMDConfigSearchLevelTransitioning
    I then waited a few seconds so SpotLight would start "indexing" and ran the comman a third time, this time getting the following:
      Indexing enabled.
    /Volumes/SeaGate:
      Indexing enabled.
    In the console, under "Diagnostic and usage information", there are three sections: "Diagnostic and usage messages", "User diagnostic reports" and "System diagnostic reports". I wasn't sure which of these I should look under, so I selected each of them and searched for "spotlight" (searching for either "mdworker" or ".crash" produced 4 or 5 results, all unrelated to SpotLight, and searching for "mds" returned no results). Only the first section, "Diagnostic and usage messages", had results. At first there was a single result, which I am quoting below (again, I replaced the UUID with Xs); after I turned SpotLight indexing off again (using the command on my original post), I got a second message which was identical to the one below but had no date and had the then-current time. (Note that 10.07 is the date in the format I specified in the system prefs and 11:31:47.238 is, I suppose, the time in Apple's preferred format.)
    10.07 11:31:47.238 SystemUIServer[185]: com.apple.message.domain: com.apple.batterymenuextra.signature
    com.apple.message.signature: com.apple.metadata.Spotlight
    com.apple.message.summarize: YES
    Sender_Mach_UUID: XXXXXX

  • Since downloading Yosemite Safari will not open or takes forever to open 3-5 minutes. Help would be greatly appreciated

    I have a problem with Yosemite working with Safari, Chrome, and Firefox, although I use Safari more than the other two it is the worst with this problem.
    They all take forever to open since downloading Yosemiite. Safari does not open at all sometimes. help would be appreciated

    Reinstalling OS X Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall OS X: Select Reinstall OS X and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    Also see:
    Reinstall OS X Without Erasing the Drive
    OS X Yosemite- Reinstall OS X
    Note: You will need an active Internet connection. I suggest using Ethernet
                     if possible because it is three times faster than wireless.

Maybe you are looking for

  • Macbook Air shuts down if it is not plugged into the power outlet through the adapter. What is happening?

    Problem description: Mid-2013 Macbook Air 13 inch. Shuts down when unplugged from power adapter. It 1st started just shutting down intermittently on battery power. Sometimes when it powers back-up on the battery power only the fan would be blowing ha

  • Hover over icon to replace or change text. Help please.

    My art direction calls for a 'window', or div, with 5 icons across the top. As the user hovers over an icon a text description should fill the 'window' below the icons. Example: an icon of a butterfly when hovered over will fill the 'window' with sev

  • Organizational management migration

    Hi collegues, can you help me with one thing. What is the best way to migrate OM data (org. units and jobs). In one company we should migrate OM data from 1995 untill today, and what is more complicated they have only org unit and jobs at the moment

  • How to make a flash/xml site?

    I'm no stranger to html, actionscript, dreamweaver, or flash, but I seem to be in a bit of a rut, here. Note: I'm not asking anyone do do the work for me. it would just be really helpful to have access to source fla's, templates, tutorials, etc. Basi

  • .3GP codec needed for Premiere Elements 13

    How can I play back .3GP files in Premiere Elements 13? It says I need to install a codec first to play. Where can I download a compatible codec for Premiere Elements 13?