Safari keeps reloading due to Error on page - IOS Version 8.1.3? Any help on this please

Hi. My 16Gb Ipad which is running 8.1.3 software has started to have a problem when using Safari. It takes longer to load a page and then sometimes the page I am on disappears and a message comes up saying 'Error on page Web Page reloading. Does anyone have an idea what is causing this as it has only started since uploading the latest version of software? Thanks

Pierre,
     Oddly enough, when cucm was upgraded to 8.0.3 we had uccx running for approx. one month without any of this monitoring / recoding issues. Cucm was upgraded on September end and we started only to have issues on middle november with ccx. We are suprised how ccx monitoring / recording services were working properly for this long and suddenly stopped working. We are on hope that we could find / do any workaround on this issue. However, if we do not have other option unless going for 8.0.2...then we have to go for. Also, IF after this major upgrade 7.0.1 SR5 --> 8.0.2 the issue does not get fixed?
    thanks for your inputs.
  Regards,
Thiago

Similar Messages

  • Error in tablibs ..Any help on this please

    hi,
    I am getting the following error when i try to run the below code ..
    I put all the files in corresponding folders and i am getting the following error when i run Test.jsp
    Error: 500
    Location: /Test.jsp
    Internal Servlet Error:
    org.apache.jasper.compiler.CompileException: /usr/tomcat/webapps/test/Test.jsp(6,0) Unable to load class null
         at org.apache.jasper.compiler.TagBeginGenerator.init(TagBeginGenerator.java:129)
         at org.apache.jasper.compiler.JspParseEventListener$GeneratorWrapper.init(JspParseEventListener.java:761)
         at org.apache.jasper.compiler.JspParseEventListener.addGenerator(JspParseEventListener.java:138)
         at org.apache.jasper.compiler.JspParseEventListener.handleTagBegin(JspParseEventListener.java:911)
         at org.apache.jasper.compiler.DelegatingListener.handleTagBegin(DelegatingListener.java:194)
    package examples;
    import java.io.*;
    import javax.servlet.jsp.*;
    import javax.servlet.jsp.tagext.*;
    * Given a URI, uses the servlet context to find out how large the
    * "real" file is in bytes.
    * @author Simon Brown
    public class SizeTag extends javax.servlet.jsp.tagext.TagSupport {
    /** the URI of the file */
    private String uri;
    * Performs the processing of this tag.
    public int doStartTag() throws JspException {
    StringBuffer html = new StringBuffer();
    // ask the container (via the servlet context) for the
    // real path of a file pointed to by a URI
    String realPath = pageContext.getServletContext().getRealPath(uri);
    // we can now find out how large the file is
    File f = new File(realPath);
    long fileLength = f.length();
    // build up the HTML piece by piece ...
    html.append(fileLength);
    html.append(" bytes");
    // ... and write it
    try {
    pageContext.getOut().write(html.toString());
    } catch (IOException ioe) {
    throw new JspException(ioe.getMessage());
    return EVAL_BODY_INCLUDE;
    * Standard JavaBeans style property setter for the URI.
    * @param s a String representing the URI
    public void setUri(String s) {
    this.uri = s;
    taglib.tld file:-
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN"
    "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">
    <taglib>
    <tlibversion>1.0</tlibversion>
    <jspversion>1.1</jspversion>
    <shortname>examples</shortname>
    <uri>http://123.123.142.156/test/taglib</uri>
    <info>An example tag library</info>
    <tag>
    <name>size</name>
    <tag-class>examples.SizeTag</tag-class>
    <info>Works out how large a file, pointed to by a URI, is in bytes</info>
    <attribute>
    <name>uri</name>
    <required>true</required>
    <rtexprvalue>false</rtexprvalue>
    </attribute>
    </tag>
    </taglib>
    web.xml file:
    <taglib>
    <taglib-uri>
    http://123.123.142.156/test/taglib
    <taglib-uri>
    <taglib-location>
    /WEB-INF/taglib.tld
    <taglib-location>
    </taglib>
    Test.jsp File:
    <html>
    <head>
    <%@ taglib uri="http://123.123.142.156/test/taglib" prefix="examples" %>
    </head>
    <body>
    The file is <examples:size uri="index.html"/>.
    </body>
    </html>
    Any help please ...
    thanks.

    Hi Yark,
    Please help me .. Still i am getting first error only ...
    Error: 500
    Location: /development/Test.jsp
    Internal Servlet Error:
    org.apache.jasper.compiler.CompileException: /usr/tomcat/webapps/development/Test.jsp(5,12) Unable to load class null
         at org.apache.jasper.compiler.TagBeginGenerator.init(TagBeginGenerator.java:129)
         at org.apache.jasper.compiler.JspParseEventListener$GeneratorWrapper.init(JspParseEventListener.java:761)
    Here is my code:
    taglib.tld file:-
    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE taglib
    PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
    "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">
    <taglib>
    <tlib-version>1.0</tlib-version>
    <jsp-version>1.2</jsp-version>
    <short-name>examples</short-name>
    <uri>http://123.123.142.156/test/taglib</uri>
    <display-name>taglib</display-name>
    <description>An example tag library</description>
    <tag>
    <name>size</name>
    <tag-class>examples.SizeTag</tag-class>
    <body-content>JSP</body-content>
    <description>Works out how large a file, pointed to by a URI, is in bytes</description>
    <!-- Forte4J_TLDX: This comment contains code generation information. Do not delete.
    <tldx>
    <packagename>examples</packagename>
    <extendsSupportClass>TRUE</extendsSupportClass>
    <supportClass>BodyTagSupport</supportClass>
    <implementsTryCatchFinally>FALSE</implementsTryCatchFinally>
    <findparent>FALSE</findparent>
    </tldx>
    -->
    <attribute>
    <name>uri</name>
    <required>true</required>
    <rtexprvalue>false</rtexprvalue>
    <type>String</type>
    <!-- Forte4J_TLDX: This comment contains code generation information. Do not delete.
    <tldx>
    <IsReferenceID>FALSE</IsReferenceID>
    <ReferencesTag>FALSE</ReferencesTag>
    <ReferenceScope>Session</ReferenceScope>
    <ReferencesTagReferentFirst>TRUE</ReferencesTagReferentFirst>
    </tldx>
    -->
    </attribute>
    </tag>
    </taglib>
    web.xml:
    <taglib>
    <taglib-uri>"/WEB-INF/taglib.tld"</taglib-uri>
    <taglib-location>/WEB-INF/taglib.tld</taglib-location>
    </taglib>
    Test.jsp:
    <html>
    <head>
    <%@ taglib uri="/WEB-INF/taglib.tld" prefix="examples" %>
    </head>
    <body>
    The file is <examples:size uri="/jsp/index.html"/>.
    </body>
    </html>
    thanks.

  • Safari keeps crashing and says flowOrificev problem which caused it to crash. Any help please?

    Hello I am new to these forums so please be kind
    I recently brought an iMac and having been using safari it was fine until now. It is now crashing with what appears to say flowOrificev is making safari crash. I have no idea what this is but can anyone give me any pointers here is the crash report.....
    Process:         Safari [681]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.1.5 (6534.55.3)
    Build Info:      WebBrowser-75345503~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [98]
    PlugIn Path:       /Users/user/Library/Application Support/.FlowOrificev.tmp
    PlugIn Identifier: .FlowOrificev.tmp
    PlugIn Version:    ??? (???)
    Date/Time:       2012-04-13 12:44:27.528 +0100
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          16197 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  16120 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      FBEEE4E4-47BE-42ED-9D42-3E7AB883453C
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  1
    Application Specific Information:
    abort() called
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x00007fff88682d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff886833ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff830f0902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff830efd8f CFRunLoopRunSpecific + 575
    4   com.apple.HIToolbox                     0x00007fff86e257ee RunCurrentEventLoopInMode + 333
    5   com.apple.HIToolbox                     0x00007fff86e255f3 ReceiveNextEventCommon + 310
    6   com.apple.HIToolbox                     0x00007fff86e254ac BlockUntilNextEventMatchingListInMode + 59
    7   com.apple.AppKit                        0x00007fff85b7deb2 _DPSNextEvent + 708
    8   com.apple.AppKit                        0x00007fff85b7d801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    9   com.apple.Safari.framework              0x00007fff812a2b48 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 177
    10  com.apple.AppKit                        0x00007fff85b4368f -[NSApplication run] + 395
    11  com.apple.AppKit                        0x00007fff85b3c3b0 NSApplicationMain + 364
    12  com.apple.Safari.framework              0x00007fff8145fe6a SafariMain + 200
    13  com.apple.Safari                        0x0000000100000f1c 0x100000000 + 3868
    Thread 1 Crashed:
    0   libSystem.B.dylib                       0x00007fff886f59ce __semwait_signal_nocancel + 10
    1   libSystem.B.dylib                       0x00007fff886f58d0 nanosleep$NOCANCEL + 129
    2   libSystem.B.dylib                       0x00007fff887523ce usleep$NOCANCEL + 57
    3   libSystem.B.dylib                       0x00007fff88771a00 abort + 93
    4   libstdc++.6.dylib                       0x00007fff880b15d2 __tcf_0 + 0
    5   libobjc.A.dylib                         0x00007fff8053ab4d _objc_terminate + 120
    6   libstdc++.6.dylib                       0x00007fff880afae1 __cxxabiv1::__terminate(void (*)()) + 11
    7   libstdc++.6.dylib                       0x00007fff880afb16 __cxxabiv1::__unexpected(void (*)()) + 0
    8   libstdc++.6.dylib                       0x00007fff880afbfc __gxx_exception_cleanup(_Unwind_Reason_Code, _Unwind_Exception*) + 0
    9   libstdc++.6.dylib                       0x00007fff8806ba3e std::__throw_length_error(char const*) + 127
    10  libstdc++.6.dylib                       0x00007fff880963fe std::string::append(char const*, unsigned long) + 82
    11  .FlowOrificev.tmp                       0x0000000100082cbb dylibmain + 3599
    12  com.apple.CFNetwork                     0x00007fff85619dd7 HTTPReadFilter::readHeaderBytes(StreamReader*, unsigned char, unsigned char*, long, CFStreamError*) + 421
    13  com.apple.CFNetwork                     0x00007fff8561ad4c HTTPReadFilter::canReadNoSignal(StreamReader*, CFStreamError*, unsigned char) + 110
    14  com.apple.CFNetwork                     0x00007fff855c852c HTTPReadFilter::streamCanRead(__CFReadStream*) + 90
    15  com.apple.CFNetwork                     0x00007fff855c86a2 HTTPReadFilter::socketReadStreamCallback(unsigned long) + 122
    16  com.apple.CFNetwork                     0x00007fff855c8613 HTTPReadFilter::_httpRdFilterStreamCallBack(__CFReadStream*, unsigned long, void*) + 49
    17  com.apple.CoreFoundation                0x00007fff83152343 _signalEventSync + 115
    18  com.apple.CoreFoundation                0x00007fff831522b4 _cfstream_solo_signalEventSync + 116
    19  com.apple.CoreFoundation                0x00007fff831521f4 _CFStreamSignalEvent + 740
    20  com.apple.CFNetwork                     0x00007fff8561d8d7 SocketStream::dispatchSignalFromSocketCallbackUnlocked(SocketStreamSignalHolder *) + 45
    21  com.apple.CFNetwork                     0x00007fff855b212c SocketStream::socketCallback(__CFSocket*, unsigned long, __CFData const*, void const*) + 224
    22  com.apple.CFNetwork                     0x00007fff855b2016 SocketStream::_SocketCallBack_stream(__CFSocket*, unsigned long, __CFData const*, void const*, void*) + 96
    23  com.apple.CoreFoundation                0x00007fff8311abba __CFSocketDoCallback + 634
    24  com.apple.CoreFoundation                0x00007fff8311a5bb __CFSocketPerformV0 + 315
    25  com.apple.CoreFoundation                0x00007fff830f23d1 __CFRunLoopDoSources0 + 1361
    26  com.apple.CoreFoundation                0x00007fff830f05c9 __CFRunLoopRun + 873
    27  com.apple.CoreFoundation                0x00007fff830efd8f CFRunLoopRunSpecific + 575
    28  com.apple.CFNetwork                     0x00007fff855cb1fc HTTPNetStreamInfo::streamRead(__CFReadStream*, unsigned char*, long, CFStreamError*, unsigned char*) + 278
    29  com.apple.CoreFoundation                0x00007fff830e005c CFReadStreamRead + 748
    30  .FlowOrificev.tmp                       0x0000000100082c66 dylibmain + 3514
    31  com.apple.CFNetwork                     0x00007fff8561cfe0 HTTPReadStream::streamRead(__CFReadStream*, unsigned char*, long, CFStreamError*, unsigned char*) + 82
    32  com.apple.CoreFoundation                0x00007fff830e005c CFReadStreamRead + 748
    33  .FlowOrificev.tmp                       0x0000000100082264 dylibmain + 952
    34  .FlowOrificev.tmp                       0x0000000100081198 0x10007a000 + 29080
    35  .FlowOrificev.tmp                       0x0000000100081f46 dylibmain + 154
    36  .FlowOrificev.tmp                       0x000000010008459d dylibmain + 9969
    37  .FlowOrificev.tmp                       0x000000010008951c ksyms + 202
    38  libSystem.B.dylib                       0x00007fff886bbfd6 _pthread_start + 331
    39  libSystem.B.dylib                       0x00007fff886bbe89 thread_start + 13
    Thread 2:
    0   libSystem.B.dylib                       0x00007fff886bda6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff886c1881 _pthread_cond_wait + 1286
    2   .FlowOrificev.tmp                       0x000000010008968d ksyms + 571
    3   libSystem.B.dylib                       0x00007fff886bbfd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff886bbe89 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib                       0x00007fff886bda6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff886c1881 _pthread_cond_wait + 1286
    2   .FlowOrificev.tmp                       0x000000010008968d ksyms + 571
    3   libSystem.B.dylib                       0x00007fff886bbfd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff886bbe89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                       0x00007fff886bda6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff886c1881 _pthread_cond_wait + 1286
    2   .FlowOrificev.tmp                       0x000000010008968d ksyms + 571
    3   libSystem.B.dylib                       0x00007fff886bbfd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff886bbe89 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib                       0x00007fff886bda6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff886c1881 _pthread_cond_wait + 1286
    2   .FlowOrificev.tmp                       0x000000010008968d ksyms + 571
    3   libSystem.B.dylib                       0x00007fff886bbfd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff886bbe89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                       0x00007fff886bda6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff886c1881 _pthread_cond_wait + 1286
    2   .FlowOrificev.tmp                       0x000000010008968d ksyms + 571
    3   libSystem.B.dylib                       0x00007fff886bbfd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff886bbe89 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib                       0x00007fff886bda6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff886c1881 _pthread_cond_wait + 1286
    2   .FlowOrificev.tmp                       0x000000010008968d ksyms + 571
    3   libSystem.B.dylib                       0x00007fff886bbfd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff886bbe89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                       0x00007fff886bda6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff886c1881 _pthread_cond_wait + 1286
    2   .FlowOrificev.tmp                       0x000000010008968d ksyms + 571
    3   libSystem.B.dylib                       0x00007fff886bbfd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff886bbe89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                       0x00007fff886bda6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff886c1881 _pthread_cond_wait + 1286
    2   .FlowOrificev.tmp                       0x000000010008968d ksyms + 571
    3   libSystem.B.dylib                       0x00007fff886bbfd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff886bbe89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                       0x00007fff886bda6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff886c1881 _pthread_cond_wait + 1286
    2   .FlowOrificev.tmp                       0x000000010008968d ksyms + 571
    3   libSystem.B.dylib                       0x00007fff886bbfd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff886bbe89 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib                       0x00007fff886bda6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff886c1881 _pthread_cond_wait + 1286
    2   .FlowOrificev.tmp                       0x000000010008968d ksyms + 571
    3   libSystem.B.dylib                       0x00007fff886bbfd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff886bbe89 thread_start + 13
    Thread 12:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff886c8136 select$DARWIN_EXTSN$NOCANCEL + 10
    1   libSystem.B.dylib                       0x00007fff8869dbc7 _dispatch_mgr_invoke + 388
    2   libSystem.B.dylib                       0x00007fff8869d7b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff8869d2de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff8869cc08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff8869caa5 start_wqthread + 13
    Thread 13:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x00007fff886c6932 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x00007fff83112468 __CFSocketManager + 824
    2   libSystem.B.dylib                       0x00007fff886bbfd6 _pthread_start + 331
    3   libSystem.B.dylib                       0x00007fff886bbe89 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib                       0x00007fff8869ca2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8869ce3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff8869caa5 start_wqthread + 13
    Thread 15:  WebCore: IconDatabase
    0   libSystem.B.dylib                       0x00007fff886bda6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff886c1881 _pthread_cond_wait + 1286
    2   com.apple.WebCore                       0x00007fff8953ab69 WebCore::IconDatabase::syncThreadMainLoop() + 265
    3   com.apple.WebCore                       0x00007fff89537f68 WebCore::IconDatabase::iconDatabaseSyncThread() + 296
    4   libSystem.B.dylib                       0x00007fff886bbfd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff886bbe89 thread_start + 13
    Thread 16:
    0   libSystem.B.dylib                       0x00007fff88682d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff886833ed mach_msg + 59
    2   com.apple.QuartzCore                    0x00007fff84385396 CA::Render::Server::server_thread(void*) + 177
    3   com.apple.QuartzCore                    0x00007fff843852d6 thread_fun + 34
    4   libSystem.B.dylib                       0x00007fff886bbfd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff886bbe89 thread_start + 13
    Thread 17:
    0   libSystem.B.dylib                       0x00007fff88682d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff886833ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff830f0902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff830efd8f CFRunLoopRunSpecific + 575
    4   com.apple.Foundation                    0x00007fff8335814f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5   com.apple.Foundation                    0x00007fff832d9114 __NSThread__main__ + 1429
    6   libSystem.B.dylib                       0x00007fff886bbfd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff886bbe89 thread_start + 13
    Thread 18:  Safari: SafeBrowsingManager
    0   libSystem.B.dylib                       0x00007fff88682d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff886833ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff830f0902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff830efd8f CFRunLoopRunSpecific + 575
    4   com.apple.Safari.framework              0x00007fff81418305 Safari::MessageRunLoop::threadBody() + 107
    5   com.apple.Safari.framework              0x00007fff8141833f Safari::MessageRunLoop::threadCallback(void*) + 9
    6   libSystem.B.dylib                       0x00007fff886bbfd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff886bbe89 thread_start + 13
    Thread 19:  Safari: SnapshotStore
    0   libSystem.B.dylib                       0x00007fff886bda6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff886c1881 _pthread_cond_wait + 1286
    2   com.apple.JavaScriptCore                0x00007fff865406a0 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.Safari.framework              0x00007fff81493803 Safari::MessageQueueWaitResult Safari::MessageQueue<***::RefPtr<Safari::SnapshotStore::DiskAccessMessage> >::waitForMessageFilteredWithTimeout<bool ()(***::RefPtr<Safari::SnapshotStore::DiskAccessMessage>&)>(***::RefPtr<Safari: :SnapshotStore::DiskAccessMessage>&, bool (&)(***::RefPtr<Safari::SnapshotStore::DiskAccessMessage>&), double) + 149
    4   com.apple.Safari.framework              0x00007fff81491c75 Safari::SnapshotStore::diskAccessThreadBody() + 115
    5   com.apple.Safari.framework              0x00007fff81491df5 Safari::SnapshotStore::diskAccessThreadCallback(void*) + 9
    6   libSystem.B.dylib                       0x00007fff886bbfd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff886bbe89 thread_start + 13
    Thread 1 crashed with X86 Thread State (64-bit):
      rax: 0x000000000000003c  rbx: 0x00000001004c9890  rcx: 0x00000001004c9848  rdx: 0x0000000000000001
      rdi: 0x0000000000000c03  rsi: 0x0000000000000000  rbp: 0x00000001004c9880  rsp: 0x00000001004c9848
       r8: 0x0000000000000000   r9: 0x0000000000989680  r10: 0x0000000000000001  r11: 0x0000000000000246
      r12: 0x0000000000000000  r13: 0x0000000114a93c50  r14: 0x0000000000001000  r15: 0xffffffffffffffff
      rip: 0x00007fff886f59ce  rfl: 0x0000000000000247  cr2: 0x00000001131d1000
    Binary Images:
           0x100000000 -        0x100000fff  com.apple.Safari 5.1.5 (6534.55.3) <83F4C1DA-5D7C-E101-6BD6-808168C4C812> /Applications/Safari.app/Contents/MacOS/Safari
           0x100004000 -        0x100004fff +.libgmalloc.dylib ??? (???) <C5C8E257-608E-091E-359F-71200A436282> /Users/Shared/.libgmalloc.dylib
           0x10007a000 -        0x1000a1fff +.FlowOrificev.tmp ??? (???) <321B8545-39FC-4FEA-B2A4-2EAA3732F4A9> /Users/user/Library/Application Support/.FlowOrificev.tmp
           0x100200000 -        0x1002e6fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <2D39CB30-54D9-B03E-5FCF-E53122F87484> /usr/lib/libcrypto.0.9.7.dylib
           0x114803000 -        0x114829fff  GLRendererFloat ??? (???) <38621D22-8F49-F937-851B-E21BD49A8A88> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x1150f5000 -        0x115288fe7  GLEngine ??? (???) <BCE83654-81EC-D231-ED6E-1DD449B891F2> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x116e64000 -        0x117287fef  libclh.dylib 3.1.1 C  (3.1.1) <432F5475-F934-92A0-FB49-78F03DA82176> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
           0x200000000 -        0x200787fe7  com.apple.GeForceGLDriver 1.6.36 (6.3.6) <4F23289A-D45A-0630-8D7F-4C35A4D2AA00> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
        0x7fff5fc00000 -     0x7fff5fc3be0f  dyld 132.1 (???) <29DECB19-0193-2575-D838-CF743F0400B2> /usr/lib/dyld
        0x7fff80246000 -     0x7fff80251fff  com.apple.corelocation 12.3 (12.3) <A6CFB410-2333-8BE3-658B-75A93C90A9CC> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff80368000 -     0x7fff803c8fe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8044e000 -     0x7fff80451ff7  libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff80452000 -     0x7fff80460ff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
        0x7fff8052d000 -     0x7fff805e3ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff80674000 -     0x7fff806f9ff7  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
        0x7fff80709000 -     0x7fff8071dfff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8086f000 -     0x7fff808bbfff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff808c8000 -     0x7fff808dcff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <63C87CF7-56B3-4038-8136-8C26E96AD42F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff809b7000 -     0x7fff809c3fff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <9AB864FA-9197-5D48-A0EC-EC8330D475FC> /usr/lib/libbz2.1.0.dylib
        0x7fff809c4000 -     0x7fff80e0bfef  com.apple.RawCamera.bundle 3.7.1 (570) <5AFA87CA-DC3D-F84E-7EA1-6EABA8807766> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff80e79000 -     0x7fff80ec0ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff80ec1000 -     0x7fff811f5fef  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
        0x7fff81242000 -     0x7fff81a72fff  com.apple.Safari.framework 6534 (6534.55.3) <1A32D063-6CA1-E1B7-735C-E8F4DA4F3C0F> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff81a73000 -     0x7fff81a79fff  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
        0x7fff81a7a000 -     0x7fff81ab5fff  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
        0x7fff81b01000 -     0x7fff81b01ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff81ebe000 -     0x7fff81f58fff  com.apple.ApplicationServices.ATS 275.19 (???) <2DE8987F-4563-4D8E-45C3-2F6F786E120D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff81f59000 -     0x7fff81f59ff7  com.apple.Carbon 150 (152) <23704665-E9F4-6B43-1115-2E69F161FC45> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff81fc3000 -     0x7fff81fc7ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff81fd4000 -     0x7fff82084fff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff822c0000 -     0x7fff822d1ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
        0x7fff822d2000 -     0x7fff82321ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <0731C40D-71EF-B417-C83B-54C3527A36EA> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff82322000 -     0x7fff82353fff  libGLImage.dylib ??? (???) <562565E1-AA65-FE96-13FF-437410C886D0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff82354000 -     0x7fff8239dff7  com.apple.securityinterface 4.0.1 (40418) <77FDB498-B502-050C-6AF4-1DAB17F64B6F> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff826ff000 -     0x7fff82711fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff82712000 -     0x7fff82f1cfe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <EEE5CE62-9155-6559-2AEA-05CED0F5B0F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff82f1d000 -     0x7fff82f38ff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff830a4000 -     0x7fff8321bfe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8321c000 -     0x7fff8325dfff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8325e000 -     0x7fff83275fff  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
        0x7fff83276000 -     0x7fff832c5fef  libTIFF.dylib ??? (???) <2DDC5A18-35EE-5B59-10D8-0F6925DB3858> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff832c6000 -     0x7fff832c7ff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff832c8000 -     0x7fff8354afff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff83788000 -     0x7fff83818fff  com.apple.SearchKit 1.3.0 (1.3.0) <3403E658-A54E-A79A-12EB-E090E8743984> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff83819000 -     0x7fff83938fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff83963000 -     0x7fff839cdfe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff839ce000 -     0x7fff839effff  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <9410EC7F-4D24-6740-AFEE-90405750FAD7> /usr/lib/libresolv.9.dylib
        0x7fff839f0000 -     0x7fff839f1ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <49B723D1-85F8-F86C-2331-F586C56D68AF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff839f2000 -     0x7fff839fffe7  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
        0x7fff83b1d000 -     0x7fff83b1ffff  libRadiance.dylib ??? (???) <E08CD209-E3E4-2753-AF8A-90DD12ED556F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff83b95000 -     0x7fff83c21fef  SecurityFoundation ??? (???) <3F1F2727-C508-3630-E2C1-38361841FCE4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff83c22000 -     0x7fff83c47ff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff83c48000 -     0x7fff83c57fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff83c58000 -     0x7fff83d0dfe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff83d0e000 -     0x7fff83d4ffef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff83e3d000 -     0x7fff83e4cfef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff83f76000 -     0x7fff83f76ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff83f77000 -     0x7fff83f90fff  com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff83fed000 -     0x7fff84037ff7  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
        0x7fff84072000 -     0x7fff84078ff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff840a3000 -     0x7fff84261ff7  com.apple.ImageIO.framework 3.0.5 (3.0.5) <4CF96F2C-B7BB-4C57-E352-3C678CA2B2B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff84262000 -     0x7fff8431bfff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff84332000 -     0x7fff846cffe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff846d0000 -     0x7fff847eafff  libGLProgrammability.dylib ??? (???) <D1650AED-02EF-EFB3-100E-064C7F018745> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff847eb000 -     0x7fff84920fff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F4814A13-E557-59AF-30FF-E62929367933> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff849d3000 -     0x7fff850cfff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff850d0000 -     0x7fff850d3ff7  com.apple.securityhi 4.0 (36638) <AEF55AF1-54D3-DB8D-27A7-E16192E0045A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff850d4000 -     0x7fff85518fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <E14EC4C6-B055-A4AC-B971-42AB644E4A7C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff855a6000 -     0x7fff855a8fff  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
        0x7fff855a9000 -     0x7fff8567dfe7  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
        0x7fff8567e000 -     0x7fff856a1fff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff856a2000 -     0x7fff856a8ff7  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
        0x7fff856ca000 -     0x7fff85708fe7  libFontRegistry.dylib ??? (???) <395D7C0D-36B5-B353-0DC8-51ABC0B1C030> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff85713000 -     0x7fff85746ff7  libTrueTypeScaler.dylib ??? (???) <B7BA8104-FA18-39A2-56E1-922EE7A660AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff858a8000 -     0x7fff85a49fe7  com.apple.WebKit 6534.55 (6534.55.3) <FF06897C-26D5-A526-1131-70D5A1D54CCB> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff85a4a000 -     0x7fff85aeafff  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
        0x7fff85b1d000 -     0x7fff85b22fff  libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff85b23000 -     0x7fff85b39fe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff85b3a000 -     0x7fff86534ff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff86535000 -     0x7fff86535ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff86536000 -     0x7fff86858fef  com.apple.JavaScriptCore 6534.55 (6534.55.2) <F360FF8A-97DE-327E-A366-EDE97321E795> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff869e1000 -     0x7fff869f2fff  SyndicationUI ??? (???) <2345AF3F-75EB-79A7-9665-A154F6943B59> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
        0x7fff869f3000 -     0x7fff86a02fff  libxar.1.dylib ??? (???) <CBAF862A-3C77-6446-56C2-9C4461631AAF> /usr/lib/libxar.1.dylib
        0x7fff86a0c000 -     0x7fff86a2cff7  com.apple.DirectoryService.Framework 3.6 (621.12) <A4685F06-5881-35F5-764D-C380304C1CE8> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff86cb5000 -     0x7fff86df3fff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff86df4000 -     0x7fff86df5fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff86df6000 -     0x7fff86df6ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff86df7000 -     0x7fff870f5fff  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
        0x7fff87126000 -     0x7fff8714dff7  libJPEG.dylib ??? (???) <921A3A14-A69B-F393-1678-5A5D32D4BDF2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8714e000 -     0x7fff87184ff7  com.apple.framework.Apple80211 6.2.5 (625.6) <B67C7A65-E4FB-4419-3F31-4482E17EF203> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff87193000 -     0x7fff871dbff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff871dc000 -     0x7fff871e7ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff871e8000 -     0x7fff872a5fff  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
        0x7fff877ad000 -     0x7fff87802ff7  com.apple.framework.familycontrols 2.0.2 (2020) <8807EB96-D12D-8601-2E74-25784A0DE4FF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff87803000 -     0x7fff87807ff7  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
        0x7fff87840000 -     0x7fff8787afff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <539EBFDD-96D6-FB07-B128-40232C408757> /usr/lib/libcups.2.dylib
        0x7fff878ac000 -     0x7fff878efff7  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
        0x7fff87b06000 -     0x7fff87c0aff7  com.apple.PubSub 1.0.5 (65.28) <94FBE6EB-6554-1E5B-DE22-D027222AD6B8> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff87d1e000 -     0x7fff87d71ff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff87da7000 -     0x7fff87dadff7  IOSurface ??? (???) <8E302BB2-0704-C6AB-BD2F-C2A6C6A2E2C3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff87de6000 -     0x7fff87de6ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff87de7000 -     0x7fff87e2afef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff87e2b000 -     0x7fff87e30fff  libGIF.dylib ??? (???) <1888A176-22D5-C663-22D0-336D9D213BD6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff87e31000 -     0x7fff87f48fef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff87f49000 -     0x7fff87f86ff7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <F743389F-F25A-A77D-4FCA-D6B01AF2EE6D> /usr/lib/libssl.0.9.8.dylib
        0x7fff87f87000 -     0x7fff88064fff  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
        0x7fff88065000 -     0x7fff880e2fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff88113000 -     0x7fff8839dfe7  com.apple.security 6.1.2 (55002) <FD0B5AD4-74DB-7ED8-90D3-6EC56FFA8557> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8839e000 -     0x7fff88483fef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff88484000 -     0x7fff884a1ff7  libPng.dylib ??? (???) <A6D093D2-CA9D-2035-9C11-0AE98585C6F1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff884a2000 -     0x7fff884b7ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff884c4000 -     0x7fff88540ff7  com.apple.ISSupport 1.9.7 (55) <BAE839AB-9DBD-FB23-F1F1-39445F04D8DA> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff88541000 -     0x7fff88602fef  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
        0x7fff88603000 -     0x7fff88681ff7  com.apple.CoreText 151.12 (???) <5BE797B7-C903-B664-ADD9-7514B1A6EF9E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff88682000 -     0x7fff88843fef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff88844000 -     0x7fff888c3fe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff888c4000 -     0x7fff888cbfff  com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff888cc000 -     0x7fff888f4fff  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
        0x7fff890f3000 -     0x7fff890f6fff  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
        0x7fff890f7000 -     0x7fff89140fef  libGLU.dylib ??? (???) <B0F4CA55-445F-E901-0FCF-47B3B4BAE6E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff89141000 -     0x7fff89157fef  libbsm.0.dylib ??? (???) <83676D2E-23CD-45CD-BE5C-35FCFFBBBDBB> /usr/lib/libbsm.0.dylib
        0x7fff89158000 -     0x7fff89316fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib
        0x7fff89347000 -     0x7fff89501ff7  com.apple.WebKit2 6534.55 (6534.55.3) <44B0FCCC-7303-FDDE-18D5-14D9FA744C50> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff89533000 -     0x7fff8a59cfe7  com.apple.WebCore 6534.55 (6534.55.3) <FFFFDC58-5DAD-106B-0EC2-C23B22F2D40A> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8a69e000 -     0x7fff8a6a3ff7  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
        0x7fff8a6a4000 -     0x7fff8a6affff  com.apple.CrashReporterSupport 10.6.7 (258) <A2CBB18C-BD1C-8650-9091-7687E780E689> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8a6b0000 -     0x7fff8a772fe7  libFontParser.dylib ??? (???) <EF06F16C-0CC9-B4CA-7BD9-0A97FA967340> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8a773000 -     0x7fff8a773ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8a774000 -     0x7fff8a79fff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
    Model: iMac10,1, BootROM IM101.00CC.B00, 2 processors, Intel Core 2 Duo, 3.06 GHz, 8 GB, SMC 1.52f9
    Graphics: NVIDIA GeForce 9400, NVIDIA GeForce 9400, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 2.1.14.6
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: WDC WD5000AAKS-40V2B0, 465.76 GB
    Serial ATA Device: HL-DT-ST DVDRW  GA11N
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26500000 / 3
    USB Device: USB 2.0 FD, 0x154b  (PNY Technologies Inc.), 0x0041, 0x26400000 / 2
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0x24400000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0x06110000 / 5
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000 / 2

    You’ve been infected with the “Flashback” malware. See this Apple support document:
    About Flashback malware
    Back up all data, if you haven't already done so.
    Select  ▹ Software Update to install the latest Java update, as well as any other updates available for your system. You must have the latest version of Mac OS X 10.6 or 10.7 in order to install the Java update. That should clear the infection.
    Change every Internet password you have, starting with banking passwords. Check all financial accounts for unauthorized transactions. Take this step only after you’ve secured your system in the preceding step, not before.

  • Error while setting the SSL with trusted cert --  any help on this?

    Connecting to Node Manager ...
    <Aug 3, 2010 5:20:17 PM CDT> <Warning> <Security> <BEA-090542> <Certificate chai
    n received from localhost - 127.0.0.1 was not trusted causing SSL handshake fail
    ure. Check the certificate chain to determine if it should be trusted or not. If
    it should be trusted, then update the client trusted CA configuration to trust
    the CA certificate that signed the peer certificate chain. If you are connecting
    to a WLS server that is using demo certificates (the default WLS server behavio
    r), and you want this client to trust demo certificates, then specify -Dweblogic
    .security.TrustKeyStore=DemoTrust on the command line for this client.>
    This Exception occurred at Tue Aug 03 17:20:18 CDT 2010.
    javax.net.ssl.SSLKeyException: [Security:090542]Certificate chain received from
    localhost - 127.0.0.1 was not trusted causing SSL handshake failure. Check the c
    ertificate chain to determine if it should be trusted or not. If it should be tr
    usted, then update the client trusted CA configuration to trust the CA certifica
    te that signed the peer certificate chain. If you are connecting to a WLS server
    that is using demo certificates (the default WLS server behavior), and you want
    this client to trust demo certificates, then specify -Dweblogic.security.TrustK
    eyStore=DemoTrust on the command line for this client.
    at com.certicom.tls.interfaceimpl.TLSConnectionImpl.fireException(Unknow
    n Source)
    at com.certicom.tls.interfaceimpl.TLSConnectionImpl.fireAlertSent(Unknow
    n Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.fireAlert(Unknown
    Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.fireAlert(Unknown
    Source)
    at com.certicom.tls.record.handshake.ClientStateReceivedServerHello.hand
    le(Unknown Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.handleHandshakeMes
    sage(Unknown Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.handleHandshakeMes
    sages(Unknown Source)
    at com.certicom.tls.record.MessageInterpreter.interpretContent(Unknown S
    ource)
    at com.certicom.tls.record.MessageInterpreter.decryptMessage(Unknown Sou
    rce)
    at com.certicom.tls.record.ReadHandler.processRecord(Unknown Source)
    at com.certicom.tls.record.ReadHandler.readRecord(Unknown Source)

    Go through this link
    http://weblogic-wonders.com/weblogic/2010/03/03/ssl-exceptions-in-admin-server-and-node-manager/

  • Safari keeps reloading

    Still having problems with Safari reloading pages , mostly huffington, even after resetting, Any help?

    This has been bothering me too, and I might have a possible fix for it.
    I did some digging around, and I'm pretty sure this is happening because of a new feature in Safari 5 (more specifically, it's new to Webkit2) called "multi-process windows". You can read some info about it here, but the essential point is that Safari now runs on two separate processes -- one for the user interface (the "UI process"), and one for the content (the "web process"). If any page misbehaves, it can crash the web process, but instead of causing the entire application to quit (which is what would have happened in Safari 4 and earlier), Safari now just silently restarts the web process and then reloads all the tabs you had open.
    That's great in theory, but for whatever reason, the web process seems to crash or hang quite often; I see Safari 5 suddenly reloading tabs far more frequently than outright crashes used to occur in earlier versions. The net effect is that this feature that's meant to make Safari more stable has so far caused a lot more problems than it has actually solved.
    Anyway, if you enable the Debug menu in Safari (you can do this with TinkerTool or any of several other similar apps; note that this is not a hack, it's simply a hidden setting in Safari, so there should be no problem with me mentioning it here), there's an option in that menu called "Use multi-process windows". I haven't tested it yet (I don't have time at the moment), but disabling that option might stop this "spontaneously reloading tabs" nonsense from happening. I'll look into it later and post a blog entry if I can confirm that this solves the issue (in which case I'll come back and post a link to it in this thread).

  • Safari keeps reloading on iPad mini

    I have an iPad Mini. Safari keeps reloading with a message "A problem occurred with this webpage so it was reloaded". My IOS is up to date and I had restarted the iPad. I've also checked that the website is working on another iPad. Has anyone encountered this before? If so, please share. Thanks!

    Hi melindachris,
    Welcome to the Support Communities!
    I'm not sure I understand how these two issues are related.   I'm going to share with you a couple of articles that may resolve this issue.
    First, close all open apps on your iPad, restart & reset it.  
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    Reset iPad settings - iPad User Guide
    http://help.apple.com/ipad/7/#/iPad9a74dc01
    Reset iPad settings. Go to Settings > General > Reset, then choose an option:
    Reset All Settings:  All your preferences and settings are reset.
    Open the Safari app.  If you are still having issues connecting to the internet, follow these troubleshooting steps:
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/TS1398?viewlocale=en_US
    Reset network settings by tapping Settings > General > Reset > Reset Network Settings.
    Note: This will reset all network settings including previously connected Wi-Fi networks and passwords
    iOS and OS X: Recommended settings for Wi-Fi routers and access points
    http://support.apple.com/kb/HT4199
    And finally, here are some specific steps in Safari that may be helpful, including:
    iOS: Safari web settings
    http://support.apple.com/kb/ht1677
    To clear your history from Safari, tap Settings > Safari > Clear History.
    To clear all cookies from Safari, tap Settings > Safari > Clear Cookies and Data.
    To clear other stored information from Safari, tap Advanced > Website Data > Remove All Website Data.
    I hope this information helps ....
    Have a great day!
    - Judy

  • Safari keeps crashing sending back to home page. Have IPad 2 - os7. Why ?

    Safari keeps crashing sending back to home page. Why ?

    There is no dedicated homepage for Safari on iPad.
    Try this..
    Tap Settings > Safari
    Tap to clear cookies, data, and history.
    Go to the website you want for your homepage then tap the action icon (box wtih an upward facing icon) bottom of your screen then tap:  Add to Home Screen.

  • My safari keeps closing due to something called hotsnake.png - any thoughts?

    The Safari browser on my Macbook keeps closing due to something called a hotsnake.png plugin.  Does anybody know what this is?

    "have upgraded to 10.4.11."
    Your system info does not support this. Please go to My Settings, submit the proper info plus make sure you click on the Save button when done.
    If you have already tried all the suggestions mentioned by Allan Jones, then I suggest that you cross-post over in the Safari Forums. It's where the Safari users hang out.

  • HT4796 After migrating all of my adobe software (Cs4, cs5, etc.) to my new imac, the software won't open due to many errors. Any help on this?

    After migrating all of my adobe software (Cs4, cs5, etc.) to my new imac, the software won't open due to many errors. Any help on this?

    Welcome to the Apple Support Communities
    Adobe software is conflictive when you use Migration Assistant because their applications don't work properly after migration. If you keep the DVDs or the installers of your software, use them to reinstall all your Adobe applications and they should start working correctly

  • Hi everyone.. I have windows 7 (32 bit operating system), and have tried installing the latest version of Itunes, but my PC keeps saying windows 7 error (126) ? I have no idea on how to fix this??

    hi everyone.. I have windows 7 (32 bit operating system), and have tried installing the latest version of Itunes, but my PC keeps saying windows 7 error (126) ? I have no idea on how to fix this??
    Please could someone help???
    And it also mentions mediatoolbox dll. is missing?? haha i have no idea what that means??? please help...
    Thanks alot! I really appreciate your help..

    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • Wty issue - Can't Posted due to error Action T043 Post version IV to FI

    Hi  Experts,
    I have one problem which is some of the wrty claims can't posted due to error message
    log not found (in memory ) and also Action T043 POst version IV to FI not carried out as there was an error in a previous version.
    For info, the earlier, yes this claim have error but already rectify. However still can't posted.
    Hence, request your advise how to resolve my problem...
    rgds,

    After a lot of searching I finally found the solution to my problem.  I had to enable IOMMU in the BIOS on my motherboard (Gigabyte 970A-D3). 
    In case it helps someone else, I found the solution in the following forum post:
    http://ubuntuforums.org/showthread.php?t=2114055
    Another related post is:
    http://ubuntuforums.org/showthread.php?t=2111223
    As an aside, I'm not really sure why when IOMMU is disabled, 32-bit kernels work, but 64-bit kernels don't.   I'm guessing IOMMU support is disabled in 32-bit kernels while it is enabled in 64-bit kernels.  Or, it is at least handled differently.
    Last edited by tlawren (2013-03-12 13:20:35)

  • Help! Safari keeps giving me a grey screen.  I can't click on any search items.  Any troubleshooting ideas out there?

    Help! Safari keeps giving me a grey screen.  I can't click on any search items.  Any troubleshooting ideas out there?

    Try clearing Safari's cache : Settings > Safari > Clear Cookies And Data (Clear Cache on iOS 4) and also Clear History
    If that doesn't work then try closing Safari completely and then re-open it : from the home screen (i.e. not with Safari 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Safari app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    A third option is a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • I keep getting network connections error when downloading update for iPhone 4. Any suggestions?

    I keep getting network connections error when downloading update for iPhone 4. Any suggestions?

    I think I solved the problem by initiating the update in a different way, from the itunes panel where I can click to start the update, instead of saying yes when asked if I want to update when itunes launches in response to the iphone being plugged into the computer.

  • My mid 2010 macbook pro keeps freezing/crashing every time I try and play a game. Any help?

    Every time I try and play either WoW or The Sims, my mac goes to black screen, or black screen and repeating last second of noise it was playing. I haven't upgraded to Lion and am still using Snow Leopard(??). I am by no means the most tech savvy girl in the world, but would appreciate any help, as this is driving me insane!! Thanks!!!

    I don't know if it would help, but this is all the whoo haa from the last panic report thing. (about 5ish minutes ago)
    I don't really know what any of it means, but if someone could help me decipher and tell me if there's anything I can do, I would be super grateful. (before I go into apple, that is)
    Interval Since Last Panic Report:  170794 sec
    Panics Since Last Report:          12
    Anonymous UUID:                    183CC60C-368A-4CB3-969E-742E66A22BD0
    Tue Jul 31 00:02:15 2012
    panic(cpu 3 caller 0xffffff7f859a4c85): NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff80a44d7000 0x0a5480a2, D0, P3/4
    Backtrace (CPU 3), Frame : Return Address
    0xffffff8080913260 : 0xffffff800521d5f6
    0xffffff80809132d0 : 0xffffff7f859a4c85
    0xffffff8080913360 : 0xffffff7f85a9e5b7
    0xffffff80809133c0 : 0xffffff7f85a9e62b
    0xffffff8080913430 : 0xffffff7f85db3883
    0xffffff8080913570 : 0xffffff7f85ac475d
    0xffffff80809135a0 : 0xffffff7f859ae9e6
    0xffffff8080913650 : 0xffffff7f859aa0b8
    0xffffff8080913840 : 0xffffff7f859ab2e4
    0xffffff8080913910 : 0xffffff7f86a0ec65
    0xffffff8080913b50 : 0xffffff7f86a05842
    0xffffff8080913ba0 : 0xffffff8005664929
    0xffffff8080913bc0 : 0xffffff8005665ed0
    0xffffff8080913c20 : 0xffffff80056638ef
    0xffffff8080913d70 : 0xffffff80052981a1
    0xffffff8080913e80 : 0xffffff8005220abd
    0xffffff8080913eb0 : 0xffffff8005210448
    0xffffff8080913f00 : 0xffffff80052195fb
    0xffffff8080913f70 : 0xffffff80052a5ad6
    0xffffff8080913fb0 : 0xffffff80052ced13
          Kernel Extensions in backtrace:
             com.apple.NVDAResman(8.0)[6A699209-FB98-316B-A3C0-DCA82AA8C86B]@0xffffff7f8593d 000->0xffffff7f85c3ffff
                dependency: com.apple.iokit.IOPCIFamily(2.7)[8C9E06A4-13D0-33F5-A377-9E36F0ECC229]@0xffffff 7f858b2000
                dependency: com.apple.iokit.IONDRVSupport(2.3.4)[E37F420A-B5CD-38ED-9441-5247583B6ACE]@0xff ffff7f85929000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.4)[5D671681-D21B-3CCA-9810-B15E648C1B27]@0 xffffff7f858e6000
             com.apple.nvidia.nv50hal(8.0)[9CD95A4A-FD94-349E-A4B6-FC3B74E197F5]@0xffffff7f8 5c4d000->0xffffff7f85f6ffff
                dependency: com.apple.NVDAResman(8.0.0)[6A699209-FB98-316B-A3C0-DCA82AA8C86B]@0xffffff7f859 3d000
                dependency: com.apple.iokit.IOPCIFamily(2.7)[8C9E06A4-13D0-33F5-A377-9E36F0ECC229]@0xffffff 7f858b2000
             com.apple.GeForce(8.0)[91C40470-82BA-329A-A9D7-4C70F28275FD]@0xffffff7f869b7000 ->0xffffff7f86a79fff
                dependency: com.apple.NVDAResman(8.0.0)[6A699209-FB98-316B-A3C0-DCA82AA8C86B]@0xffffff7f859 3d000
                dependency: com.apple.iokit.IONDRVSupport(2.3.4)[E37F420A-B5CD-38ED-9441-5247583B6ACE]@0xff ffff7f85929000
                dependency: com.apple.iokit.IOPCIFamily(2.7)[8C9E06A4-13D0-33F5-A377-9E36F0ECC229]@0xffffff 7f858b2000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.4)[5D671681-D21B-3CCA-9810-B15E648C1B27]@0 xffffff7f858e6000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    12A269
    Kernel version:
    Darwin Kernel Version 12.0.0: Sun Jun 24 23:00:16 PDT 2012; root:xnu-2050.7.9~1/RELEASE_X86_64
    Kernel UUID: 8D5F8EF3-9D12-384B-8070-EF2A49C45D24
    Kernel slide:     0x0000000005000000
    Kernel text base: 0xffffff8005200000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 72896041557
    last loaded kext at 62945728148: com.sophos.kext.sav          8.0.4 (addr 0xffffff7f87578000, size 24576)
    loaded kexts:
    com.sophos.kext.sav          8.0.4
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AudioAUUC          1.60
    com.apple.iokit.IOBluetoothSerialManager          4.0.9f8
    com.apple.driver.AGPM          100.12.69
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleHDAHardwareConfigDriver          2.3.0f2
    com.apple.driver.AppleHDA          2.3.0f2
    com.apple.driver.AppleMikeyDriver          2.3.0f2
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.2.6
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.GeForce          8.0.0
    com.apple.driver.AppleMuxControl          3.2.6
    com.apple.driver.AppleBacklight          170.2.3
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.driver.AppleIntelHDGraphics          8.0.0
    com.apple.driver.AppleIntelHDGraphicsFB          8.0.0
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.iokit.IOBluetoothUSBDFU          4.0.9f8
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.0.9f8
    com.apple.driver.AppleSMCLMU          2.0.2d0
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.SMCMotionSensor          3.0.2d6
    com.apple.driver.AppleUSBTCButtons          235.4
    com.apple.driver.AppleUSBCardReader          3.1.0
    com.apple.driver.AppleUSBTCKeyEventDriver          235.4
    com.apple.driver.AppleUSBTCKeyboard          235.4
    com.apple.driver.AppleIRController          320.15
    com.apple.driver.AppleFileSystemDriver          3.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.iokit.SCSITaskUserClient          3.5.1
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.2.0
    com.apple.driver.AppleUSBHub          5.1.6
    com.apple.driver.AirPort.Brcm4331          600.15.20
    com.apple.driver.AppleFWOHCI          4.9.5
    com.apple.driver.AppleAHCIPort          2.4.0
    com.apple.iokit.AppleBCM5701Ethernet          3.2.5b3
    com.apple.driver.AppleUSBEHCI          5.1.5
    com.apple.driver.AppleUSBUHCI          5.1.5
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleACPIButtons          1.6
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.6
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.3.0f2
    com.apple.iokit.IOAudioFamily          1.8.9fc9
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.iokit.IOSurface          86.0.2
    com.apple.iokit.IOBluetoothFamily          4.0.9f8
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.nvidia.nv50hal          8.0.0
    com.apple.NVDAResman          8.0.0
    com.apple.driver.AppleGraphicsControl          3.2.6
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.IONDRVSupport          2.3.4
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.0.9f8
    com.apple.driver.AppleHDAController          2.3.0f2
    com.apple.iokit.IOGraphicsFamily          2.3.4
    com.apple.iokit.IOHDAFamily          2.3.0f2
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.IOPlatformPluginFamily          5.2.0d16
    com.apple.driver.AppleSMC          3.1.3d11
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.1
    com.apple.iokit.IOUSBMassStorageClass          3.5.0
    com.apple.driver.AppleUSBMultitouch          235.7
    com.apple.iokit.IOUSBHIDDriver          5.0.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.driver.AppleUSBMergeNub          5.1.5
    com.apple.driver.AppleUSBComposite          5.0.0
    com.apple.iokit.IOAHCISerialATAPI          2.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.1
    com.apple.iokit.IO80211Family          500.15
    com.apple.iokit.IOUSBUserClient          5.0.0
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOAHCIFamily          2.2.0
    com.apple.iokit.IOEthernetAVBController          1.0.2b1
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOUSBFamily          5.1.6
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.8.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          344
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.6
    com.apple.iokit.IOPCIFamily          2.7
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i5, 2.4 GHz, 4 GB, SMC 1.58f16
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54313235533642465238432D47372020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54313235533642465238432D47372020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.81.20)
    Bluetooth: Version 4.0.9f8 10405, 2 service, 11 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK5055GSXF, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898, 37.9 MB
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 7
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 4
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0xfa120000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3

  • HT1212 So my phone is messed up and you can't do anything with the screen...in order for me to sink it to back up i have to enter the passcode because it had a lock on it...and i can't due to it being messed up...is there any way around this...

    So my phone is messed up and you can't do anything with the screen...in order for me to sink it to back up i have to enter the passcode because it had a lock on it...and i can't due to it being messed up...is there any way around this...

    See Here  >  http://support.apple.com/kb/HT1808
    You may need to try this More than Once...  Be sure to Follow ALL the Steps...
    Take your time... Pay particular attention to Steps 3 and 4.
    Make sure you have the Current Version of iTunes Installed on your computer
    iTunes free download from www.itunes.com/download
    After you have Recovered your Device...
    Re-Sync your Content or Restore from the most recent Backup...
    Restore from Backup  >  http://support.apple.com/kb/ht1766

Maybe you are looking for

  • Attachment List in Generic Object Services disabled

    I want to attach documents to a work centre (transaction CR02, business object BUS0011). This has been configured so that the document will reside in the content management server and will be accessed using Archivelink. I can successfully store the d

  • Pb with rollback segment

    Hi guys. Am using oracle 8i and am having problems with rollbackup segment. My rbs tablespace is 35GB and will like to shrink it! Its a production db, so my question is shoudl I fire the below query? alter rollback segment SYSTEM shrink; alter rollba

  • How to drop an undo tablespace which is in Pending Offline status

    Dear All, I changed my undo tablespace from undotbs1 to undonew in order to drop undotbs1. But my undotbs1 is in pending offline state, how can i drop undotbs1 Thanks Mahi

  • Su setup of environment variables

    During the initialization of my system, I have written a script (loaded in the modules section of rc.conf) that starts up an application.  I want to run this application as a specific user.  So in my startup script I issue:   su - username -c "start

  • Adding drag and drop functionality to a hbox with a repeater?

    hello, I've been searching on how to add drag and drop functionality to an hbox. You're probably thinking "just use a tilelist", and that's what i'm currently using, but the tilelist cannot align items to the center, which is crucial in my applicatio