Constant crashing... driving me crazy

I keep getting this message when I click publish.
iWEB UNEXPECTEDLY QUIT
Mac OS X and other applications are not affected.
Click Reopen to open the application again. Click Report to see more details or send a report to Apple.
i contacted support and they said try publishing to a folder which i tried and it crashed again which means its not a publishing issue? So I went to iweb support on the net and cant seem to find any troubleshooting.
ive installed all the updates.
ive published this particular iweb site before but when i added 2 pages (to make 4) it started to crash and hasnt recovered.
im slowly going crazy...my brain is fried... ive spent days trying to resolve this but nada peace.

Quit iWeb, go to Home Folder/Library/Preferences and delete the com.apple.iWeb plist file and then relaunch.
If that doesn't do it, repeat the above, do a restart of your Mac and run Disk Utility to repair permissions and try again.

Similar Messages

  • How do I stop the constant stars coming out of the firefox symbol - please help - they are driving me crazy

    ''locking this thread as the Owner of this thread answered in the related thread''
    starting today when I clicked on firefox on my mac, there are blue stars constantly coming out of the firefox symbol and they are annoying and driving me crazy. How do I stop the constant stars coming from the firefox symbol? please help

    You can use these steps to disable the snippets on the about:home page:
    * Set the <b>browser.aboutHomeSnippets.updateUrl</b> pref to an empty string on the <b>about:config</b> page
    * Open about:home page in a tab
    * Open Web Console in this tab (Firefox menu button or Tools > Developer)
    * Run this command via the command prompt: <b>gSnippetsMap.clear()</b>
    * Close the tab with the about:home page
    * Close and restart Firefox

  • Every time I sync my Iphone 5c(with ios 8) to Itunes, it 1. deletes all of my purchased music 2. deletes all of my album artwork 3. replaces all of my deleted songs. please help! this is driving me crazy!

    Every time I sync my Iphone 5c(with ios 8) to Itunes, it 1. deletes all of my purchased music 2. deletes all of my album artwork 3. replaces all of my deleted songs. please help! this is driving me crazy! It syncs 100+ songs, when I only want to sync 1! I'm running Itunes 11.3.1.2

    After having experienced similar problems and having it back to work, I have a few suggestions:
    - Try to find out if the syncing stops at a particular track or song. That might - out of the blue - have gotten corrupted in one way or another. Since that song will not be on the iPod, iTunes will try over and over to put it on and crash in one way or another;
    - reformat the iPod as described in the iTunes 9 crash-thread. It takes time (at first it seems to do nothing, but that is because the green bar is moving with very small steps);
    HTH

  • Errors driving me crazy! But, it all compiles fine

    Errors driving me crazy! although compiles fine
    I am working on a project for an online class - I am teaching myself really! My last assignment I cannot get to work. I had a friend who "knows" what he is doing help me. Well that didn't work out too well, my class is a beginner and he put stuff in that I never used yet. I am using Jgrasp and Eclipse. I really am trying but, there really is no teacher with this online class. I can't get questions answered in time and stuff goes past due. I am getting this error:
    Exception in thread "main" java.lang.NullPointerException
    at java.io.Reader.<init>(Reader.java:61)
    at java.io.InputStreamReader.<init>(InputStreamReader .java:55)
    at java.util.Scanner.<init>(Scanner.java:590)
    at ttest.main(ttest.java:54)
    ----jGRASP wedge2: exit code for process is 1.
    ----jGRASP: operation complete.
    This is my code:
    import java.util.*;
    import java.io.*;
    public class ttest
    static Scanner console = new Scanner(System.in);
    public static void main(String[] args)throws IOException
    FileInputStream fin = null; // input file reference
    PrintStream floser = null; // output file references
    PrintStream fwinner = null;
    Scanner rs; // record scanner
    Scanner ls; // line scanner
    String inputrec; // full record buffer
    int wins; // data read from each record
    int losses;
    double pctg;
    String team;
    String best = null; // track best/worst team(s)
    String worst = null;
    double worst_pctg = 2.0; // track best/worst pctgs
    double best_pctg = -1.0;
    int winner_count = 0; // counters for winning/losing records
    int loser_count = 0;
    // should check args.length and if not == 1 generate error
    try
    Scanner inFile = new Scanner(new FileReader("football.txt"));
    catch( FileNotFoundException e )
    System.exit( 1 );
    try
    floser = new PrintStream( new FileOutputStream( "loser.txt" ) );
    fwinner = new PrintStream( new FileOutputStream( "winner.txt" ) );
    catch( FileNotFoundException e )
    System.out.printf( "unable to open an output file: %s\n", e.toString() );
    System.exit( 1 );
    try
    rs = new Scanner( fin );
    while( rs.hasNext( ) )
    inputrec = rs.nextLine( ); /* read next line */
    ls = new Scanner( inputrec ); /* prevents stumble if record has more than expected */
    team = ls.next( );
    wins = ls.nextInt();
    losses = ls.nextInt();
    if( wins + losses > 0 )
    pctg = ((double) wins)/(wins + losses);
    else
    pctg = 0.0;
    if( pctg > .5 )
    if( pctg > best_pctg )
    best_pctg = pctg;
    best = team;
    else
    if( pctg == best_pctg )
    best += ", " + team;
    fwinner.printf( "%10s %2d %2d %5.3f\n", team, wins, losses, pctg );
    winner_count++;
    else
    if( pctg < worst_pctg )
    worst_pctg = pctg;
    worst = team;
    else
    if( pctg == worst_pctg )
    worst += ", " + team;
    floser.printf( "%10s %2d %2d %5.3f\n", team, wins, losses, pctg );
    loser_count++;
    fin.close( );
    floser.close( );
    fwinner.close( );
    catch( IOException e ) {
    System.out.printf( "I/O error: %s\n", e.toString() );
    System.exit( 1 );
    System.out.printf( "%d teams have winning records; %d teams have losing records\n", winner_count, loser_count );
    System.out.printf( "Team(s) with best percentage: %5.3f %s\n", best_pctg, best );
    System.out.printf( "Team(s) with worst percentage: %5.3f %s\n", worst_pctg, worst );
    The assignment is:
    Create a Java program to read in an unknown number of lines from a data file. You will need to create the data file. The contents of the file can be found at the bottom of this document. This file contains a football team's name, the number of games they have won, and the number of games they have lost.
    Your program should accomplish the following tasks:
    1. Process all data until it reaches the end-of-file. Calculate the win percentage for each team.
    2. Output to a file ("top.txt") a listing of all teams with a win percentage greater than .500. This file should contain the team name and the win percentage.
    3. Output to a file ("bottom.txt") a listing of all teams with a win percentage of .500 or lower. This file should contain the team name and the win percentage.
    4. Count and print to the screen the number of teams with a record greater then .500 and the number of teams with a record of .500 and below, each appropriately labeled.
    5. Output in a message box: the team with the highest win percentage and the team with the lowest win percentage, each appropriately labeled. If there is a tie for the highest win percentage or a tie for the lowest win percentage, you must output all of the teams.
    Dallas 5 2
    Philadelphia 4 3
    Washington 3 4
    NY_Giants 3 4
    Minnesota 6 1
    Green_Bay 3 4

    If you are working in Eclipse IDE, you can set a breakpoint and single step through your code to determe what line crashes. You can also examine variable values before the crash. Locate a line before the crash and set a breakpoint by double clicking on the vertical blue line that appears immediately to the left of the line of code. A blue 'dot' will appear on the line. Then,from the menu, select 'debug as application'. This will run your main() function up to that break point. In the menu, there are icons to allow you to single step through lines of code from that point, and another icon to step over lines of code if you want.
    Alternatively to setting break points, you can sprinkle your code with piles of System.out.println statements. Example: you have System.out.println("1"), and in another part of your code System.out.println("2"). If you code runs and prints out "1", but not "2", then you code crashed between them. I use breakpoints and System.out.println to debug.
    In your trace, you have "at java.util.Scanner.<init>(Scanner.java:590)" which means it crashed at line 590 (note in all the tracings, Scanner.java is a name of one of your custom classes and not a vendor class, thats how you can quickly find what part of the trace is important to you).
    NullPointerException means you tried to call a function on an object that is not instansiated (its null).
    Example: person.getName() will not work if person is null. Its the call to getName() that crashes.
    Debugging code is a very important skill set that you have to develop in which you have to logically track down and isolate problems.

  • Constant crashing when visiting several sites that use login forms

    I've been having a devil of a time with Safari crashing on a few particular sites when I try to log in. First, machine specs:
    MacPro Quad 2.67GHz
    9GB RAM (2x512, 4x2GB)
    250GB HD
    OSX 10.5.2
    Safari 3.0.4 (5523.15)
    My crashes happen without fail when I use OpenID (myopenid.com) or try to log into NewsGator (newsgator.com). As soon as I hit the login button, Safari pauses for about a second or two and then crashes. I have even removed all InputManagers and Internet Plug-Ins and reset Safari but it still crashes when I try those sites. Last night's WebKit nightly wasn't any better. For the life of me, I cannot figure out what is going on.
    There are five crash reports available for your perusal. I won't paste them all here, but I've uploaded them all to the web so you can download and investigate.
    *Safari Crash 1—all extras installed (caused by myopenid.com)*
    Crash Report
    *Safari Crash 2—all extras installed (caused by newsgator.com)*
    Crash Report
    *Safari Crash 3—no plug-ins or inputmanagers (caused by newsgator.com)*
    Crash Report
    *Safari Crash 4—no plug-ins or inputmanagers and Safari reset (caused by newsgator.com)*
    Crash Report
    *WebKit Crash 1—no plug-ins or inputmanagers and Safari reset (caused by newsgator.com)*
    Crash Report
    Thank you very much for any help you can give.

    I'm having the same problem and it's driving me CRAZY. I can't login to my Citibank Business Account because it crashes everytime. I tried resetting Safari (which totally ***** because I lost all my account cookies) and it didn't help. Tried repairing permissions and keychains. Got rid of the only InputManager I was using (SIMBL). Still crash after crash after crash.
    Any ideas? Here's the latest crash report:
    Process: Safari [177]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 3.0.4 (5523.15)
    Build Info: WebBrowser-55231500~3
    Code Type: X86 (Native)
    Parent Process: launchd [101]
    Date/Time: 2008-03-06 15:36:07.556 -0500
    OS Version: Mac OS X 10.5.2 (9C31)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000008
    Crashed Thread: 3
    Thread 0:
    0 libSystem.B.dylib 0x90d129e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x90d1a1dc mach_msg + 72
    2 com.apple.CoreFoundation 0x951ec0de CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x951ecd18 CFRunLoopRunInMode + 88
    4 com.apple.HIToolbox 0x931246a0 RunCurrentEventLoopInMode + 283
    5 com.apple.HIToolbox 0x931244b9 ReceiveNextEventCommon + 374
    6 com.apple.HIToolbox 0x9312432d BlockUntilNextEventMatchingListInMode + 106
    7 com.apple.AppKit 0x917037d9 _DPSNextEvent + 657
    8 com.apple.AppKit 0x9170308e -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    9 com.apple.Safari 0x0000997e 0x1000 + 35198
    10 com.apple.AppKit 0x916fc0c5 -[NSApplication run] + 795
    11 com.apple.AppKit 0x916c930a NSApplicationMain + 574
    12 com.apple.Safari 0x00002456 0x1000 + 5206
    Thread 1:
    0 libSystem.B.dylib 0x90d19bce _semwaitsignal + 10
    1 libSystem.B.dylib 0x90d448cd pthreadcondwait$UNIX2003 + 73
    2 com.apple.WebCore 0x957c6def WebCore::IconDatabase::syncThreadMainLoop() + 239
    3 com.apple.WebCore 0x957c23e5 WebCore::IconDatabase::iconDatabaseSyncThread() + 181
    4 libSystem.B.dylib 0x90d43c55 pthreadstart + 321
    5 libSystem.B.dylib 0x90d43b12 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x90d129e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x90d1a1dc mach_msg + 72
    2 com.apple.CoreFoundation 0x951ec0de CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x951ecd18 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x95e506cc CFURLCacheWorkerThread(void*) + 396
    5 libSystem.B.dylib 0x90d43c55 pthreadstart + 321
    6 libSystem.B.dylib 0x90d43b12 thread_start + 34
    Thread 3 Crashed:
    0 com.apple.CoreFoundation 0x9523817f CFURLHasDirectoryPath + 15
    1 com.apple.CFNetwork 0x95ea84bd _CFHTTPAuthenticationCreateFromResponseInternal + 3477
    2 com.apple.CFNetwork 0x95ea2cba _CFHTTPProtHasCredentialsForChallenge + 70
    3 com.apple.CFNetwork 0x95e6ab89 performHeaderRead + 2719
    4 com.apple.CFNetwork 0x95e6a056 httpReadStreamCB + 3118
    5 com.apple.CoreFoundation 0x951fe609 _CFStreamSignalEventSynch + 137
    6 com.apple.CoreFoundation 0x951ec62e CFRunLoopRunSpecific + 3166
    7 com.apple.CoreFoundation 0x951ecd18 CFRunLoopRunInMode + 88
    8 com.apple.Foundation 0x90edfac0 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    9 com.apple.Foundation 0x90e7c5ad -[NSThread main] + 45
    10 com.apple.Foundation 0x90e7c154 _NSThread__main_ + 308
    11 libSystem.B.dylib 0x90d43c55 pthreadstart + 321
    12 libSystem.B.dylib 0x90d43b12 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x90d62b3a select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x90d43c55 pthreadstart + 321
    2 libSystem.B.dylib 0x90d43b12 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x90d129e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x90d1a1dc mach_msg + 72
    2 com.apple.CoreFoundation 0x951ec0de CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x951ecd18 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x95e9ddb9 _KeychainThread + 230
    5 libSystem.B.dylib 0x90d43c55 pthreadstart + 321
    6 libSystem.B.dylib 0x90d43b12 thread_start + 34
    Thread 3 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x95ea7735 ecx: 0x0e75a750 edx: 0xa08104c0
    edi: 0x00000000 esi: 0x00000000 ebp: 0xb01bef48 esp: 0xb01bef20
    ss: 0x0000001f efl: 0x00010282 eip: 0x9523817f cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x00000008
    Binary Images:
    0x1000 - 0x12efff com.apple.Safari 3.0.4 (5523.15) <5d4eed758cf1ec66313f0ef39feb80dc> /Applications/Safari.app/Contents/MacOS/Safari
    0x176000 - 0x184ff8 SyndicationUI ??? (???) <ea1ecc2dfe3e87726e40859919e33733> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x400000 - 0x4eefef com.apple.RawCamera.bundle 2.0.2 (2.0.2) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0xdece000 - 0xded3ff3 libCGXCoreImage.A.dylib ??? (???) <978986709159e5fe9e094df5efddac1d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x8fe00000 - 0x8fe2da53 dyld 96.2 (???) <7af47d3b00b2268947563c7fa8c59a07> /usr/lib/dyld
    0x90003000 - 0x90003ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x90004000 - 0x9008ffff com.apple.framework.IOKit 1.5.1 (???) <a17f9f5ea7e8016a467e67349f4d3d03> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90090000 - 0x90090ffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90091000 - 0x9010efef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9010f000 - 0x901f0ff7 libxml2.2.dylib ??? (???) <450ec38b57fb46013847cce851001a2f> /usr/lib/libxml2.2.dylib
    0x901f1000 - 0x90336ff7 com.apple.ImageIO.framework 2.0.1 (2.0.1) <68ba11e689a9ca30f8310935cd1e02d6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x903e3000 - 0x903e3ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x906f9000 - 0x909d2ff3 com.apple.CoreServices.CarbonCore 785.8 (785.8) <827c228e7d717b397cdb4941eba69553> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x909d3000 - 0x909e1ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x90a6f000 - 0x90ac8ff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90ac9000 - 0x90b07ff7 libGLImage.dylib ??? (???) <090de775838db03ddc710f57abbf6218> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x90b08000 - 0x90b30ff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x90b5c000 - 0x90bd6ff8 com.apple.print.framework.PrintCore 5.5.2 (245.1) <3c9de512e95fbd838694ee5008d56a28> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90bd7000 - 0x90bdeff7 libCGATS.A.dylib ??? (???) <9b29a5500efe01cc3adea67bbc42568e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x90bdf000 - 0x90be9feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x90c5d000 - 0x90c83fff libcups.2.dylib ??? (???) <85ce204da14d62d6a3a5a9adfba01455> /usr/lib/libcups.2.dylib
    0x90d12000 - 0x90e71ff3 libSystem.B.dylib ??? (???) <4899376234e55593b22fc370935f8cdf> /usr/lib/libSystem.B.dylib
    0x90e72000 - 0x910ecfe7 com.apple.Foundation 6.5.4 (677.15) <6216196287f98a65ddb654d04d773e7b> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x910ed000 - 0x91111fff libxslt.1.dylib ??? (???) <4933ddc7f6618743197aadc85b33b5ab> /usr/lib/libxslt.1.dylib
    0x91112000 - 0x91117fff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9120d000 - 0x9120ffff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91210000 - 0x9128cfeb com.apple.audio.CoreAudio 3.1.0 (3.1) <70bb7c657061631491029a61babe0b26> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9128d000 - 0x9136cfff libobjc.A.dylib ??? (???) <a53206274b6c2d42691f677863f379ae> /usr/lib/libobjc.A.dylib
    0x9136d000 - 0x91452ff3 com.apple.CoreData 100.1 (186) <8e28162ef2288692615b52acc01f8b54> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x91453000 - 0x9151aff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x916c3000 - 0x91ec0fef com.apple.AppKit 6.5.2 (949.26) <bc4593edd8a224409fb6953a354505a0> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91ec1000 - 0x9227ffea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92495000 - 0x924f2ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x924f3000 - 0x924fcfff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x924fd000 - 0x92547fe1 com.apple.securityinterface 3.0 (32532) <f521dae416ce7a3bdd594b0d4e2fb517> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x92548000 - 0x92a1bfde libGLProgrammability.dylib ??? (???) <a3d68f17f37ff55a3e61aca1e3aee522> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x92a1c000 - 0x92a1cff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x92a61000 - 0x92aeafe3 com.apple.DesktopServices 1.4.5 (1.4.5) <8b264cd6abbbd750928c637e1247269d> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92aeb000 - 0x92b21fef libtidy.A.dylib ??? (???) <e4d3e7399fb83d7f145f9b4ec8196242> /usr/lib/libtidy.A.dylib
    0x92b22000 - 0x92b29fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x92b2a000 - 0x92b55fe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x92b73000 - 0x92c2dfe3 com.apple.CoreServices.OSServices 224.4 (224.4) <ff5007ab220908ac54b6c661e447d593> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x92c2e000 - 0x92c44fe7 com.apple.CoreVideo 1.5.0 (1.5.0) <7e010557527a0e6d49147c297d16850a> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92e1f000 - 0x92e56fff com.apple.SystemConfiguration 1.9.1 (1.9.1) <8a76e429301afe4eba1330bfeaabd9f2> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x92e57000 - 0x92e84feb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92e85000 - 0x92eb4fe3 com.apple.AE 402.2 (402.2) <e01596187e91af5d48653920017b8c8e> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x92eb5000 - 0x92ed0ffb libPng.dylib ??? (???) <b6abcac36ec7654ff3e1cfa786b0117b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x92ed1000 - 0x92ee1fff com.apple.speech.synthesis.framework 3.6.59 (3.6.59) <4ffef145fad3d4d787e0c33eab26b336> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x92ee2000 - 0x92f6eff7 com.apple.LaunchServices 286.5 (286.5) <33c3ae54abb276b61a99d4c764d883e2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x92f6f000 - 0x92f75fff com.apple.print.framework.Print 218.0.2 (220.1) <8bf7ef71216376d12fcd5ec17e43742c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92f76000 - 0x92f78ff5 libRadiance.dylib ??? (???) <20eadb285da83df96c795c2c5fa20590> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x92f79000 - 0x92fbbfef com.apple.NavigationServices 3.5.1 (161) <cc6bd78eabf1e2e7166914e9f12f5850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x930f4000 - 0x933fcfff com.apple.HIToolbox 1.5.2 (???) <7449d6f2da33ded6936243a92e307459> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x933fd000 - 0x933fdffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9342f000 - 0x934aeff5 com.apple.SearchKit 1.2.0 (1.2.0) <277b460da86bc222785159fe77e2e2ed> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x934af000 - 0x935e7ff7 libicucore.A.dylib ??? (???) <afcea652ff2ec36885b2c81c57d06d4c> /usr/lib/libicucore.A.dylib
    0x935e8000 - 0x93606fff libresolv.9.dylib ??? (???) <0629b6dcd71f4aac6a891cbe26253e85> /usr/lib/libresolv.9.dylib
    0x9361b000 - 0x9365cfe7 libRIP.A.dylib ??? (???) <9d42e83d860433f9126c4871d1fe0ce8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x93669000 - 0x9371bffb libcrypto.0.9.7.dylib ??? (???) <330b0e48e67faffc8c22dfc069ca7a47> /usr/lib/libcrypto.0.9.7.dylib
    0x9371d000 - 0x9372cfff libsasl2.2.dylib ??? (???) <b9e1ca0b6612e280b6cbea6df0eec5f6> /usr/lib/libsasl2.2.dylib
    0x93735000 - 0x93754ffa libJPEG.dylib ??? (???) <0cfb80109d624beb9ceb3c43b6c5ec10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x93755000 - 0x9375dfff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9375e000 - 0x93df7fff com.apple.CoreGraphics 1.351.21 (???) <6c93fd21149f389129fe47fa6ef71880> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93df8000 - 0x93e54ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93e55000 - 0x93e55ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94de2000 - 0x94de2ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94de3000 - 0x95179ff7 com.apple.QuartzCore 1.5.1 (1.5.1) <665c80f6e28555b303020c8007c36b8b> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9517a000 - 0x952acfef com.apple.CoreFoundation 6.5.1 (476.10) <d5bed2688a5eea11a6dc3a3c5c17030e> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x952bb000 - 0x9536bfff edu.mit.Kerberos 6.0.12 (6.0.12) <9e98dfb4cde8b0510fdd972dc9fa1dc9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x953b0000 - 0x95443ff3 com.apple.ApplicationServices.ATS 3.2 (???) <cdf31bd0ac7de54a35ee2d27cf86b6be> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x95444000 - 0x9544ffe7 libCSync.A.dylib ??? (???) <df82fc093e498a9eb5490761cb292218> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x95450000 - 0x95551fff com.apple.PubSub 1.0.2 (59) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x955a3000 - 0x955b3ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <cbeb17ab39f28351fe2ab5b82bf465bc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x955b4000 - 0x956d8fe3 com.apple.audio.toolbox.AudioToolbox 1.5.1 (1.5.1) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x956de000 - 0x957a9fff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x957aa000 - 0x957beff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x957bf000 - 0x95cd5fff com.apple.WebCore 5523.15.1 (5523.15.1) <23d5f6fe4905a5361b31b25bb4de04d6> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95cd6000 - 0x95ce2fe7 com.apple.opengl 1.5.6 (1.5.6) <d599b1bb0f8a8da6fd125e2587b27776> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x95ce3000 - 0x95ce7fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x95ce8000 - 0x95cf7ffe com.apple.DSObjCWrappers.Framework 1.2.1 (1.2.1) <eac1c7b7c07ed3148c85934b6f656308> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x95cf8000 - 0x95d0efff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x95d0f000 - 0x95db6feb com.apple.QD 3.11.52 (???) <c72bd7bd2ce12694c3640a731d1ad878> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x95e0a000 - 0x95e44fff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95e45000 - 0x95ebcfe3 com.apple.CFNetwork 221.5 (221.5) <5474cdd7d2a8b2e8059de249c702df9e> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x95f91000 - 0x95fc3fff com.apple.LDAPFramework 1.4.3 (106) <3a5c9df6032143cd6bc2658a9d328d8e> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95fc4000 - 0x95fc8fff libGIF.dylib ??? (???) <d4234e6f5e5f530bdafb969157f1f17b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x95fc9000 - 0x95fcefff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x95fcf000 - 0x96056ff7 libsqlite3.0.dylib ??? (???) <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib
    0x962c0000 - 0x962deff3 com.apple.DirectoryService.Framework 3.5.1 (3.5.1) <96407dca4d6b1d10ae5ca1881e31b27a> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x962df000 - 0x962e2fff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96329000 - 0x96383ff7 com.apple.CoreText 2.0.1 (???) <07494945ad1e3f5395599f42748457cc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x96384000 - 0x96385ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x96386000 - 0x963cbfef com.apple.Metadata 10.5.2 (398.7) <73a6424c06effc474e699cde6883de99> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x96406000 - 0x96406fff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x96407000 - 0x9649afff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9649b000 - 0x964d4ffe com.apple.securityfoundation 3.0 (32989) <e9171eda22c69c884a04a001aeb526e0> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x964d5000 - 0x96590fe3 com.apple.WebKit 5523.15.1 (5523.15.1) <176c97b181ca68b309ecded2ed53b923> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x96591000 - 0x96593fff com.apple.CrashReporterSupport 10.5.0 (156) <3088b785b10d03504ed02f3fee5d3aab> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x96594000 - 0x9663dfff com.apple.JavaScriptCore 5523.10.3 (5523.10.3) <9e6719a7a0740f5c224099a7b853e45b> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9663e000 - 0x967bcfff com.apple.AddressBook.framework 4.1 (687.1) <b2f2f2c925eb080e53b841014e4f9a7c> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x967bd000 - 0x967bdffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x967be000 - 0x96989ff7 com.apple.security 5.0.2 (33001) <0788969ffe7961153219be10786da436> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9698a000 - 0x96d9afef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x96d9b000 - 0x96da6ff9 com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x96da7000 - 0x96daeffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x96daf000 - 0x96dffff7 com.apple.HIServices 1.7.0 (???) <f7e78891a6d08265c83dca8e378be1ea> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x96e00000 - 0x96e65ffb com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x96e66000 - 0x96e8afeb libssl.0.9.7.dylib ??? (???) <acee7fc534674498dcac211318aa23e8> /usr/lib/libssl.0.9.7.dylib
    0x96e8b000 - 0x96ecafef libTIFF.dylib ??? (???) <6d0f80e9d4d81f3f64c876aca005bd53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x96ecb000 - 0x96eebff2 libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x96eec000 - 0x96f04fff com.apple.openscripting 1.2.6 (???) <b8e553df643f2aec68fa968b3b459b2b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

  • My i tunes won't open. i keep getting error7 (windows error 193) . contacted microsoft(thought it was a windows thing...not) have uninstalled itunes and everything related to it ,re installed and message still comes up. Help please,driving me crazy.

    help. my iTunes wont open. I keep getting the message error7 (windows error 193). contacted Microsoft they said contact iTunes support. I have uninstalled all iTunes componets and then reinstalled everything but message still comes up... its driving me crazy.

    If it's a Windows error, it's typically going to be a Microsoft problem. Uninstall any security software you have and if you have a restore point for your PC, you may want to restore your PC back to when iTunes was working normally. If none of those work you would need to contact Microsoft and demand help.

  • How do I stop iTunes from automatically sorting by Album Artist?  Driving me crazy.

    How do I stop iTunes from automatically sorting by Album Artist?  Driving me crazy.
    I listen to primarily classical music
    All of my music was very deliberatley titled by composers "Last Name, First Name" as the artist.
    iTunes is changing it to the Album Artist.  I have to go in and delete that information - AND THEN IT LATER REVERTS IT BACK!!!
    Hours have been wasted and I am feeling so ticked.
    Any help?

    Purchased or ripped media?
    If these are ripped mp3s then another possibility is multiple embedded tags. iTunes works best with a single ID3v2.3 tag. Some software creates both an ID3v1.0 and IDv2.x tag. With multiple tags it is not certain which iTunes reads or which it updates, and any device may choose differently. Once songs have the correct info. in iTunes you can use Convert ID3 Tags... None several times, then Convert ID3 Tags... v2.3. The process removes any embedded art but otherwise preserves the data that iTunes knows. You could use my script CreateFolderArt before and after to save and then restore the artwork.
    In the long run you may be better off populating Album Artist properly with a copy of whatever is currently in Artist. My script CopyArtistToAlbumArtist can do this effectively.
    tt2

  • Constant Crashes in Safari 5.0.4 (despite Reset, delete cache & prefs etc)

    Hello,
    I am having constant crashes in Safari 5.0.4. This never happened until today.
    I have reset Safari, deleted the cache.db files and prefs (p.lists) and disabled extns, and done a Safari re-install, but i still get the following crash every time i use Safari.
    Even a right-click command to open a new page causes a crash.
    Any help you could offer would be greatly appreciated - I'm in the middle of a project and don't have time for an entire OS re-install.
    I hope the info listed below give you some insight into the cause of the problem.
    Cheers
    My system config is as follows:
    Model Name: Mac Pro
    Model Identifier: MacPro3,1
    Processor Name: Quad-Core Intel Xeon
    Processor Speed: 2.8 GHz
    Number Of Processors: 2
    Total Number Of Cores: 8
    L2 Cache (per processor): 12 MB
    Memory: 32 GB
    Bus Speed: 1.6 GHz
    Boot ROM Version: MP31.006C.B05
    SMC Version (system): 1.25f4
    Process: Safari [6251]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 5.0.4 (6533.20.27)
    Build Info: WebBrowser-75332027~1
    Code Type: X86 (Native)
    Parent Process: launchd [1091]
    Date/Time: 2011-03-20 11:29:12.066 +1100
    OS Version: Mac OS X 10.6.5 (10H574)
    Report Version: 6
    Interval Since Last Report: 135598 sec
    Crashes Since Last Report: 51
    Per-App Interval Since Last Report: 172065 sec
    Per-App Crashes Since Last Report: 42
    Anonymous UUID: AD8525F5-E3F8-4090-936F-52754E4A85B7
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000024
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 com.apple.Safari 0x0007f88b 0x1000 + 518283
    1 com.apple.Safari 0x0007f7ea 0x1000 + 518122
    2 com.apple.Safari 0x0001c3f4 0x1000 + 111604
    3 com.apple.Safari 0x0001bb24 0x1000 + 109348
    4 com.apple.Safari 0x00079a5f 0x1000 + 494175
    5 com.apple.Safari 0x000799ea 0x1000 + 494058
    6 com.apple.Safari 0x00088b4a 0x1000 + 555850
    7 com.apple.Safari 0x0001acb2 0x1000 + 105650
    8 com.apple.Safari 0x0001a8f3 0x1000 + 104691
    9 com.apple.Safari 0x00083893 0x1000 + 534675
    10 com.apple.Safari 0x00083519 0x1000 + 533785
    11 com.apple.Safari 0x0008338b 0x1000 + 533387
    12 com.apple.AppKit 0x90955c46 -[NSApplication sendAction:to:from:] + 112
    13 com.apple.Safari 0x000484b5 0x1000 + 292021
    14 com.apple.AppKit 0x90a35465 -[NSControl sendAction:to:] + 108
    15 com.apple.AppKit 0x90a30f12 -[NSCell _sendActionFrom:] + 169
    16 com.apple.AppKit 0x90a30209 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1808
    17 com.apple.AppKit 0x90a858a1 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 524
    18 com.apple.AppKit 0x90a2ec5f -[NSControl mouseDown:] + 812
    19 com.apple.Safari 0x00083323 0x1000 + 533283
    20 com.apple.Safari 0x000832d0 0x1000 + 533200
    21 com.apple.Safari 0x00082f3d 0x1000 + 532285
    22 com.apple.AppKit 0x90a2cc68 -[NSWindow sendEvent:] + 5549
    23 com.apple.Safari 0x000408a8 0x1000 + 260264
    24 com.apple.Safari 0x00040835 0x1000 + 260149
    25 com.apple.AppKit 0x90945817 -[NSApplication sendEvent:] + 6431
    26 com.apple.Safari 0x00037aaf 0x1000 + 223919
    27 com.apple.AppKit 0x908d92a7 -[NSApplication run] + 917
    28 com.apple.AppKit 0x908d12d9 NSApplicationMain + 574
    29 com.apple.Safari 0x0000ace9 0x1000 + 40169
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x9002a982 kevent + 10
    1 libSystem.B.dylib 0x9002b09c dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x9002a559 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x9002a2fe dispatch_workerthread2 + 240
    4 libSystem.B.dylib 0x90029d81 pthreadwqthread + 390
    5 libSystem.B.dylib 0x90029bc6 start_wqthread + 30
    Thread 2: WebCore: IconDatabase
    0 libSystem.B.dylib 0x900320a6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x90031d62 pthread_condwait + 1191
    2 libSystem.B.dylib 0x900339f8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.WebCore 0x913f1aaa WebCore::IconDatabase::syncThreadMainLoop() + 266
    4 com.apple.WebCore 0x913eddac WebCore::IconDatabase::iconDatabaseSyncThread() + 188
    5 libSystem.B.dylib 0x9003185d pthreadstart + 345
    6 libSystem.B.dylib 0x900316e2 thread_start + 34
    Thread 3: Safari: SafeBrowsingManager
    0 libSystem.B.dylib 0x900040fa machmsgtrap + 10
    1 libSystem.B.dylib 0x90004867 mach_msg + 68
    2 com.apple.CoreFoundation 0x952ce37f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x952cd464 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x952cd291 CFRunLoopRunInMode + 97
    5 com.apple.Safari 0x0002f33f 0x1000 + 189247
    6 com.apple.Safari 0x0002f088 0x1000 + 188552
    7 com.apple.Safari 0x0002f021 0x1000 + 188449
    8 libSystem.B.dylib 0x9003185d pthreadstart + 345
    9 libSystem.B.dylib 0x900316e2 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x90029a12 _workqkernreturn + 10
    1 libSystem.B.dylib 0x90029fa8 pthreadwqthread + 941
    2 libSystem.B.dylib 0x90029bc6 start_wqthread + 30
    Thread 5:
    0 libSystem.B.dylib 0x900040fa machmsgtrap + 10
    1 libSystem.B.dylib 0x90004867 mach_msg + 68
    2 com.apple.CoreFoundation 0x952ce37f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x952cd464 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x952cd291 CFRunLoopRunInMode + 97
    5 com.apple.Foundation 0x938a97d0 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6 com.apple.Foundation 0x93870bf0 -[NSThread main] + 45
    7 com.apple.Foundation 0x93870ba0 _NSThread__main_ + 1499
    8 libSystem.B.dylib 0x9003185d pthreadstart + 345
    9 libSystem.B.dylib 0x900316e2 thread_start + 34
    Thread 6: com.apple.CFSocket.private
    0 libSystem.B.dylib 0x900230c6 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x9530dc83 __CFSocketManager + 1091
    2 libSystem.B.dylib 0x9003185d pthreadstart + 345
    3 libSystem.B.dylib 0x900316e2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000024 ebx: 0x00000004 ecx: 0x1d55c118 edx: 0xbffff034
    edi: 0x15211990 esi: 0x910a2f34 ebp: 0xbfffef98 esp: 0xbfffef80
    ss: 0x0000001f efl: 0x00010282 eip: 0x0007f88b cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000024
    Binary Images:
    0x1000 - 0x52bffb com.apple.Safari 5.0.4 (6533.20.27) <B6586EF6-2FEC-E5A2-0E39-425F56539D60> /Applications/Safari.app/Contents/MacOS/Safari
    0x1380000 - 0x138cff7 +com.rogueamoeba.audiohijackserver.hermes 2.2.5 (2.2.5) <CD6C7A74-BA03-F3A7-0D1E-460E6A043024> /usr/local/hermes/modules/Instant Hijack Server.hermesmodule/Contents/MacOS/Instant Hijack Server
    0x13ae000 - 0x13affff +com.ecamm.pluginloader Ecamm Plugin Loader v1.0.5 (1.0.5) /Library/InputManagers/Ecamm/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    0x17ad000 - 0x17e1ff7 +com.ecamm.iglasses v2.1.5 (2.1.5) <71471221-07F0-DA25-DEA7-2CE1082C2792> /Library/InputManagers/Ecamm/Plugins/iGlasses.plugin/Contents/MacOS/iGlasses
    0x15300000 - 0x154f2fea +com.elgato.mpegsupport EyeTV MPEG Support 1.0.7 (build 43) (1.0.7) /Library/QuickTime/EyeTV MPEG Support.component/Contents/MacOS/EyeTV MPEG Support
    0x157ed000 - 0x157efffa +Adobe Unit Types a2.0.0 (2.0.0) /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types
    0x157f3000 - 0x157f6ff7 +net.culater.SIMBL.osax 0.9.7 (0.9.7) <ADABA540-531E-706F-D0E5-FD3EA152172E> /Library/ScriptingAdditions/SIMBL.osax/Contents/MacOS/SIMBL
    0x176ed000 - 0x176f4ff7 +net.purefiction.keywurl ??? (1.4.0) <A45D4AB1-DB6F-36A2-B9E7-6947662B49C9> /Library/Application Support/SIMBL/Plugins/Keywurl.bundle/Contents/MacOS/Keywurl
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    0x90003000 - 0x901aaff7 libSystem.B.dylib 125.2.1 (compatibility 1.0.0) <62291026-D016-705D-DC1E-FC2B09D47DE5> /usr/lib/libSystem.B.dylib
    0x901f9000 - 0x90231ff7 com.apple.LDAPFramework 2.0 (120.1) <001A70A8-3984-8E19-77A8-758893CC128C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x90275000 - 0x902e4ff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <2FC2178F-FEF9-6E3F-3289-A6307B1A154C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x902e5000 - 0x902f2ff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9031a000 - 0x9036bff7 com.apple.HIServices 1.8.1 (???) <51BDD848-32A5-2425-BE07-BD037A89630A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9036c000 - 0x903afff7 com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x903b0000 - 0x903b4ff7 libGFXShared.dylib ??? (???) <C3A805C4-C0E5-B300-430A-7E811395CB8E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x903b5000 - 0x903f0feb libFontRegistry.dylib ??? (???) <4FB144ED-8AF9-27CF-B315-DCE5575D5231> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x903f1000 - 0x90427fff libtidy.A.dylib ??? (???) <0FD72C68-4803-4C5B-3A63-05D7394BFD71> /usr/lib/libtidy.A.dylib
    0x90428000 - 0x904d6ff3 com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x904ea000 - 0x904edff7 libCoreVMClient.dylib ??? (???) <1F738E81-BB71-32C5-F1E9-C1302F71021C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x904ee000 - 0x90567ff7 com.apple.PDFKit 2.5.1 (2.5.1) <CEF13510-F08D-3177-7504-7F8853906DE6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x90568000 - 0x90694ffb com.apple.MediaToolbox 0.484.20 (484.20) <D67788A2-B772-C5DB-B12B-173B2F8EE40B> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x9087e000 - 0x908ceff7 com.apple.framework.familycontrols 2.0.1 (2010) <B9762E20-543D-13B9-F6BF-E8585F04CA01> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x908cf000 - 0x911afff7 com.apple.AppKit 6.6.7 (1038.35) <ABC7783C-E4D5-B848-BED6-99451D94D120> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x911b0000 - 0x911e0ff7 com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x911e1000 - 0x911ecff7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <CB2510BD-A5B3-9D90-5917-C73F6ECAC913> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x911ed000 - 0x91234ffb com.apple.CoreMediaIOServices 133.0 (1158) <150A5F22-E7EC-9E8E-3B68-BAD75280EFC3> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x91235000 - 0x912ebff7 libFontParser.dylib ??? (???) <33F62EE1-E457-C6FD-369E-E86745B94A4B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x912ec000 - 0x9130cfe7 libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <751955F3-21FB-A03A-4E92-1F3D4EFB8C5B> /usr/lib/libresolv.9.dylib
    0x91320000 - 0x9139bfff com.apple.AppleVAFramework 4.10.12 (4.10.12) <89C4EBE2-FE27-3160-0BD1-D0C2ED5F3605> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x913b0000 - 0x913e2fe3 libTrueTypeScaler.dylib ??? (???) <6E9D1A50-330E-F1F4-F93D-9ECC8A61B21A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x913e3000 - 0x913eaff3 com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x913eb000 - 0x91e3eff7 com.apple.WebCore 6533.20 (6533.20.24) <934863A8-DF97-9C9B-B41B-923F0CBF7E66> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x91e3f000 - 0x91eefff3 com.apple.ColorSync 4.6.3 (4.6.3) <AA1076EA-7665-3005-A837-B661260DBE54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91ef0000 - 0x91f32ff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <3F0ED200-741B-4E27-B89F-634B131F5E9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91f33000 - 0x91f36ff7 libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <B624AACE-991B-0FFA-2482-E69970576CE1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x91f37000 - 0x91f49ff7 com.apple.MultitouchSupport.framework 207.10 (207.10) <E1A6F663-570B-CE54-0F8A-BBCCDECE3B42> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x91f87000 - 0x91fa8fe7 com.apple.opencl 12.3 (12.3) <DEA600BF-4F54-66B5-DB2F-DC57FD518543> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x91fa9000 - 0x91faaff7 com.apple.TrustEvaluationAgent 1.1 (1) <FEB55E8C-38A4-CFE9-A737-945F39761B4C> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x91fab000 - 0x91facff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x91fad000 - 0x91ff6fe7 libTIFF.dylib ??? (???) <AC1FC806-F7F4-174B-375F-FE5D6008666C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x92049000 - 0x92369ff3 com.apple.CoreServices.CarbonCore 861.23 (861.23) <B08756E4-32C5-CC33-0268-7C00A5ED7537> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9236a000 - 0x92382ff7 com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x92383000 - 0x924baff7 com.apple.CoreAUC 6.04.04 (6.04.04) <050D9D16-AAE7-3460-4318-8449574F26C7> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x927b5000 - 0x927bdff7 com.apple.DisplayServicesFW 2.3.0 (283) <48D94761-7340-D029-99E3-9BE0262FAF22> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x927be000 - 0x927beff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x927bf000 - 0x928c1fef com.apple.MeshKitIO 1.1 (49.2) <34322CDD-E67E-318A-F03A-A3DD05201046> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x928c2000 - 0x9296affb com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x929e5000 - 0x929eeff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x929ef000 - 0x92a0bfe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92a2c000 - 0x92a60fe7 com.apple.framework.Apple80211 6.2.3 (623.1) <C096EF56-ABA3-A869-65AA-D1837351E1F6> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x92a61000 - 0x93250557 com.apple.CoreGraphics 1.545.0 (???) <1AB39678-00D5-FB88-3B41-93D78348E0DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93251000 - 0x9325aff7 com.apple.corelocation 12.1 (12.1) <5C64CE24-2570-EF39-FD9E-3EB026272B54> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x9325b000 - 0x93299ff7 com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x932e0000 - 0x9333dff7 com.apple.framework.IOKit 2.0 (???) <A769737F-E0D6-FB06-29B4-915CF4F43420> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9333e000 - 0x93382ff3 com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x93383000 - 0x93484fe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x93485000 - 0x9348aff7 com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x934a1000 - 0x93505ffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93506000 - 0x93731ff3 com.apple.QuartzComposer 4.2 ({156.28}) <08AF01DC-110D-9443-3916-699DBDED0149> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x93732000 - 0x93769fe7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <7DCB5938-3140-E71A-92BD-8C242F30C8F5> /usr/lib/libssl.0.9.8.dylib
    0x9376a000 - 0x9377aff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x9377b000 - 0x937bcff7 libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <16DAE1A5-937A-1CA2-D98F-2AF958B62993> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9380a000 - 0x93825ff7 libPng.dylib ??? (???) <E14178E0-B92D-94EA-DACB-04F346D7534C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x93826000 - 0x93830fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93831000 - 0x93859ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x9385a000 - 0x93acdfe7 com.apple.Foundation 6.6.4 (751.42) <ACC0BAEB-C590-7052-3AB2-86C207C3D6D4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x93ace000 - 0x93acfff7 com.apple.audio.units.AudioUnit 1.6.5 (1.6.5) <BE4C2495-B758-AD22-DCC0-56A6791E948E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93ad0000 - 0x93cb2fff com.apple.imageKit 2.0.3 (1.0) <B4DB05F7-01C5-35EE-7AB9-41BD9D63F075> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x93cb3000 - 0x93cb6ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93d89000 - 0x93d97ff7 com.apple.opengl 1.6.11 (1.6.11) <286D1BC4-4CD8-3CD4-F723-5C196FE15FE0> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93d98000 - 0x93e02fe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x93e03000 - 0x93e03ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x93e04000 - 0x93f32fe7 com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93f33000 - 0x93f89ff7 com.apple.MeshKitRuntime 1.1 (49.2) <F1EAE9EC-2DA3-BAFD-0A8C-6A3FFC96D728> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x93f8a000 - 0x93f90fff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93fc4000 - 0x93fc4ff7 com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9406f000 - 0x9406fff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x94070000 - 0x9426eff3 com.apple.JavaScriptCore 6533.20 (6533.20.20) <C97A479C-FDF9-3F19-2EE0-80288257C477> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9426f000 - 0x942bcfeb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x942e3000 - 0x95235fef com.apple.QuickTimeComponents.component 7.6.6 (1756) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x95236000 - 0x9524bfff com.apple.ImageCapture 6.0.1 (6.0.1) <E7ED2AC1-834C-A44E-531E-EC05F0496DBF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9524c000 - 0x95290fe7 com.apple.Metadata 10.6.3 (507.12) <8632684D-ED4C-4CE1-4C53-015DFF10D873> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x95291000 - 0x9540cfe7 com.apple.CoreFoundation 6.6.4 (550.42) <C78D5079-663E-9734-7AFA-6CE79A0539F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9540d000 - 0x95614feb com.apple.AddressBook.framework 5.0.3 (875) <759B660B-00F6-F08C-37CD-69468C774B5E> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x95615000 - 0x9566ffe7 com.apple.CorePDF 1.3 (1.3) <696ADD5F-C038-A63B-4732-82E4109379D7> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x95670000 - 0x95694ff7 libJPEG.dylib ??? (???) <46AF3A0F-2B8D-87B9-62D4-0905678A64DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x95695000 - 0x95730ff7 com.apple.ApplicationServices.ATS 4.4 (???) <ECB16606-4DF8-4AFB-C91D-F7947C26040F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x95731000 - 0x957defe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x957f2000 - 0x95a55fef com.apple.security 6.1.1 (37594) <1949216A-7583-B73A-6112-4D55CA5852E3> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95a56000 - 0x95d4ffef com.apple.QuickTime 7.6.6 (1756) <F08B13B6-31D7-BD18-DA87-A0CDFCF13B8F> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x95d50000 - 0x95d5cff7 libkxld.dylib ??? (???) <F0E915AD-6B32-0D5E-D24B-B188447FDD23> /usr/lib/system/libkxld.dylib
    0x95d5d000 - 0x95ddfffb SecurityFoundation ??? (???) <3670AE8B-06DA-C447-EB14-79423DB9C474> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x95de0000 - 0x95de6ff7 libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <DACD11D8-4B64-CD3B-C988-B1041E07D13A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x95e00000 - 0x95e02ff7 libRadiance.dylib ??? (???) <10048B4A-2AE8-A4E2-21B8-C6E7A8C5B76F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x95e03000 - 0x95e13ff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x95e14000 - 0x95e28ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x95e29000 - 0x9625eff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9628a000 - 0x9628eff7 libGIF.dylib ??? (???) <DA5758A4-71B0-DD6E-7402-B7FB15387569> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x964e7000 - 0x96555ff7 com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x96556000 - 0x96578fef com.apple.DirectoryService.Framework 3.6 (621.9) <F2EEE9D7-D4FB-14F3-E647-ABD32754F557> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x965ba000 - 0x96652fe7 edu.mit.Kerberos 6.5.10 (6.5.10) <8B83AFF3-C074-E47C-4BD0-4546EED0D1BC> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96653000 - 0x9674fff3 com.apple.PubSub 1.0.5 (65.21) <50FE5190-7C03-3020-3CB7-4CA258F49114> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x96750000 - 0x96750ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96751000 - 0x96758ff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6877F0D8-0DCF-CB98-5304-913667FF50FA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9675f000 - 0x96818fe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x96819000 - 0x968c3fe7 com.apple.CFNetwork 454.11.5 (454.11.5) <D8963574-285A-3BD6-6B25-07D39C6F67A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x96aa1000 - 0x96b3efe3 com.apple.LaunchServices 362.1 (362.1) <885D8567-9E40-0105-20BC-42C7FF657583> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x96b41000 - 0x96bd3fe7 com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x96bfe000 - 0x96c7efeb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x96c7f000 - 0x96c83ff7 IOSurface ??? (???) <D849E1A5-6B0C-2A05-2765-850EC39BA2FF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x96c84000 - 0x96c87fe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x96c88000 - 0x96cc7ff7 com.apple.ImageCaptureCore 1.0.3 (1.0.3) <7E02D104-F31C-CF72-71B4-DA5DF7B48337> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x96cc8000 - 0x96d01ff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <D6F24434-8217-DF72-2126-1953080680D7> /usr/lib/libcups.2.dylib
    0x96d02000 - 0x971bbffb com.apple.VideoToolbox 0.484.20 (484.20) <E7B9F015-2569-43D7-5268-375ED937ECA5> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x971bc000 - 0x971e3ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x971e4000 - 0x97313fe3 com.apple.audio.toolbox.AudioToolbox 1.6.5 (1.6.5) <0A0F68E5-4806-DB51-764B-D97554B801AD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9744d000 - 0x9748dff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9748e000 - 0x974cbff7 com.apple.CoreMedia 0.484.20 (484.20) <105DDB24-E45F-5473-99E1-B09FDEAE4500> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x9750d000 - 0x97517ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x97518000 - 0x97526fe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x9752e000 - 0x97586fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x97587000 - 0x97587ff7 com.apple.Carbon 150 (152) <9252D5F2-462D-2C15-80F3-109644D6F704> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x97588000 - 0x97597fe7 libxar.1.dylib ??? (???) <2FC317EB-7AC2-CD6C-8C09-E06B2DF02929> /usr/lib/libxar.1.dylib
    0x97598000 - 0x978bcfef com.apple.HIToolbox 1.6.3 (???) <0A5F56E2-9AF3-728D-70AE-429522AEAD8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x978c8000 - 0x97a81feb com.apple.ImageIO.framework 3.0.4 (3.0.4) <C145139E-24C4-5A3D-B17C-809D528354B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x97a82000 - 0x97e98ff7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x97e99000 - 0x97f9dfe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <BDEFA030-5E75-7C47-2904-85AB16937F45> /usr/lib/libcrypto.0.9.8.dylib
    0x97f9e000 - 0x97fafff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <97511CC7-FE23-5AC3-2EE2-B5479FAEB316> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x97fb0000 - 0x97fedff7 com.apple.SystemConfiguration 1.10.5 (1.10.2) <362DF639-6E5F-9371-9B99-81C581A8EE41> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x97fee000 - 0x98065ff3 com.apple.backup.framework 1.2.2 (1.2.2) <FE4C6311-EA63-15F4-2CF7-04CF7734F434> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x980fe000 - 0x98141ff7 libGLU.dylib ??? (???) <F8580594-0B38-F3ED-A715-CB3776B747A0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x98142000 - 0x9824eff7 libGLProgrammability.dylib ??? (???) <8B308FAE-843F-EE76-0254-3374CBFFA7B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x98331000 - 0x9833cff7 libGL.dylib ??? (???) <48405993-0AE9-292B-6705-C3525528682A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x983bd000 - 0x987f4fef com.apple.RawCamera.bundle 3.6.0 (558) <CCF48B69-6B02-B0A5-45DF-5C5327AD16F0> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x9882e000 - 0x988a8fff com.apple.audio.CoreAudio 3.2.6 (3.2.6) <F7C9B01D-45AD-948B-2D26-9736524C1A33> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x988a9000 - 0x988dcff7 com.apple.AE 496.4 (496.4) <7F34EC47-8429-3077-8158-54F5EA908C66> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x988dd000 - 0x988f1fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x988f2000 - 0x98938ff7 libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x98939000 - 0x98abbfe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <35DB7644-0780-D2AB-F6A9-45F28D2D434A> /usr/lib/libicucore.A.dylib
    0x98abc000 - 0x98aedff7 libGLImage.dylib ??? (???) <78F59EAB-BBD4-7366-CA84-970547501978> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x98b8e000 - 0x98c58fef com.apple.CoreServices.OSServices 357 (357) <CF9530AD-F581-B831-09B6-16D9F9283BFA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x98c59000 - 0x98c64ff7 com.apple.CrashReporterSupport 10.6.5 (252) <1781CBE9-F2F4-0272-B434-124250CD48B5> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x98c70000 - 0x98cd1fe7 com.apple.CoreText 3.5.0 (???) <BB50C045-25F5-65B8-B1DB-8CDAEF45EB46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x98d7b000 - 0x98d9aff7 com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x98d9b000 - 0x98e76feb com.apple.DesktopServices 1.5.9 (1.5.9) <CED00AC1-924B-0E45-7D5E-1CEA8929F5BE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x98e77000 - 0x98ee6ff7 com.apple.ISSupport 1.9.4 (52) <FC1E0AB0-1056-1CAC-430E-82197FEB5E85> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x99131000 - 0x99131ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x99132000 - 0x99132ff7 com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9917f000 - 0x9917fff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x99180000 - 0x9918fffb SyndicationUI ??? (???) <AF180AD9-329E-A1D1-DACE-D759D3799C75> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x99190000 - 0x9926dff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9926e000 - 0x995d9ff7 com.apple.QuartzCore 1.6.3 (227.34) <CC1C1631-D8D1-D416-171E-A1683274E479> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x995da000 - 0x99600ffb com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x99601000 - 0x99710fe7 com.apple.WebKit 6533.20 (6533.20.25) <248613DC-8432-F15C-B5F7-548CFCA326B5> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x997c2000 - 0x997cffe7 libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <6008C8AC-8DB1-B38B-52A9-9133533B0DA2> /usr/lib/libbz2.1.0.dylib
    0x997d0000 - 0x99913fef com.apple.QTKit 7.6.6 (1756) <4D809734-4E1B-8E18-C825-86C5422FC3DC> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x99914000 - 0x99916ff7 com.apple.securityhi 4.0 (36638) <38D36D4D-C798-6ACE-5FA8-5C001993AD6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <62291026-D016-705D-DC1E-FC2B09D47DE5> /usr/lib/libSystem.B.dylib
    Model: MacPro3,1, BootROM MP31.006C.B05, 8 processors, Quad-Core Intel Xeon, 2.8 GHz, 32 GB, SMC 1.25f4
    Graphics: NVIDIA GeForce GTX 285, NVIDIA GeForce GTX 285, PCIe, 1024 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x88), Broadcom BCM43xx 1.0 (5.10.131.36.1)
    Bluetooth: Version 2.3.8f7, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet 1, Ethernet, en0
    Network Service: AirPort, AirPort, en2
    PCI Card: Sonnet Tempo SATA E4P, sppci_ide, Slot-4
    PCI Card: pci-bridge, sppci_pci2pcibridge, Slot-3
    PCI Card: pci137a,5, sppci_audio, Slot-3@7,0,0
    PCI Card: NVIDIA GeForce GTX 285, Display, Slot-1
    Serial ATA Device: WDC WD1001FALS-00J7B1, 931.51 GB
    Serial ATA Device: WDC WD1001FALS-00J7B1, 931.51 GB
    Serial ATA Device: WDC WD1001FALS-00J7B1, 931.51 GB
    Serial ATA Device: WDC WD1001FALS-00J7B1, 931.51 GB
    Serial ATA Device: WDC WD10EADS-00L5B1, 931.51 GB
    Serial ATA Device: WDC WD10EACS-00D6B0, 931.51 GB
    Serial ATA Device: WDC WD5000AAKS-00TMA0, 465.76 GB
    Serial ATA Device: WDC WD15EADS-00P8B0, 1.36 TB
    Serial ATA Device: WDC WD1002FAEX-00Z3A0, 931.51 GB
    Serial ATA Device: WDC WD1001FALS-00J7B1, 931.51 GB
    Serial ATA Device: WDC WD5000AAKS-00YGA0, 465.76 GB
    Serial ATA Device: WDC WD10EADS-00L5B1, 931.51 GB
    Serial ATA Device: WDC WD10EADS-00L5B1, 931.51 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-112D
    USB Device: Hub, 0x050d (Belkin Corporation), 0x0237, 0xfd300000
    USB Device: MP610 series, 0x04a9 (Canon Inc.), 0x1725, 0xfd350000
    USB Device: eLicenser, 0x0819, 0x0101, 0xfd320000
    USB Device: iLok, 0x088e, 0x5036, 0xfd330000
    USB Device: Bluetooth USB Host Controller, 0x0a12 (Cambridge Silicon Radio Ltd.), 0x0001, 0xfd370000
    USB Device: Hub, 0x0424 (SMSC), 0x2504, 0xfd200000
    USB Device: Hub, 0x0424 (SMSC), 0x2504, 0xfd230000
    USB Device: Miscellaneous Device, 0x046d (Logitech Inc.), 0x09a4, 0xfd232000
    USB Device: USB2.0 Hub, 0x05e3 (Genesys Logic, Inc.), 0x0607, 0xfd234000
    USB Device: Gaming Keyboard G110, 0x046d (Logitech Inc.), 0xc22a, 0xfd234300
    USB Device: G110 G-keys, 0x046d (Logitech Inc.), 0xc22b, 0xfd234100
    USB Device: Hub, 0x0424 (SMSC), 0x2504, 0xfd240000
    USB Device: Kensington Expert Mouse, 0x047d (Kensington), 0x1020, 0xfd244000
    USB Device: Hub, 0x0424 (SMSC), 0x2504, 0xfd210000
    USB Device: Vendor-Specific Device, 0x0582 (Roland Corporation), 0x0009, 0xfd213000
    USB Device: Hub, 0x0424 (SMSC), 0x2504, 0xfd220000
    USB Device: Altec Lansing XT1 - USB Audio, 0x04d2, 0x9801, 0xfd222000
    USB Device: TripleHead2Go, 0x18ea, 0x0004, 0x3d200000
    FireWire Device: built-in_hub, Up to 800 Mb/sec

    Hi,
    Third party unsupported Safari add ons are causing Safari to crash.
    /Library/InputManagers/Ecamm/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    /Library/InputManagers/Ecamm/Plugins/iGlasses.plugin/Contents/MacOS/iGlasses
    /Library/ScriptingAdditions/SIMBL.osax/Contents/MacOS/SIMBL
    /Library/Application Support/SIMBL/Plugins/Keywurl.bundle/Contents/MacOS/Keywurl
    Open a Finder window. Select MacintoshHD in the Sidebar on the left. Now open the LIbrary folder then the Input Managers folder.
    Move these files to the Trash: Ecamm/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    and these: Ecamm/Plugins/iGlasses.plugin/Contents/MacOS/iGlasses
    From that same Library folder open the Scripting Additions folder. Move these files to the Trash:
    SIMBL.osax/Contents/MacOS/SIMBL
    Same Library folder open the Application Support folder. Move these files to the Trash: SIMBL/Plugins/Keywurl.bundle/Contents/MacOS/Keywurl
    Restart Safari.
    Apparently iGlasses can only run if you start Safari in 32 bit mode according to the information here.
    http://www.ecamm.com/mac/iglasses/faq.html
    You would have to restart in 64 bit when not using the plug in. Probably not worth the hassle. I hope you only have the trial version installed.
    OS Version: Mac OS X 10.6.5 (10H574)
    You also need to update to v10.6.6. You can do this by clicking your Apple menu (top left in your screen) then click Software Update.
    Carolyn

  • I've added to ios6 to my new ipod touch with no problems. I'm trying to now restore the factory settings but the screen is frozen with an itunes sign and lead pointing towards it. The ipod won't even switch off. Can anyone help as it's driving me crazy

    I've added ios6 to my new ipod but tried then to restore the factory settings. It won't extract any settings and the itunes then tells me that the server cannot be reached or is unavailable. I've been trying all day. Now the ipod has a itunes sign and a computer lead pointing towards it on the screen and this is frozen. It won't switch off or do anything else. Any ideas as this is now driving me crazy.

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • I can no longer back up my iphone to my computer on selecting 'sync'. I can back up to iCloud but I get an error message telling me I cannot backup to my Mac. Can any one help? It's driving me crazy!

    I can no longer back up my iphone to my computer on selecting 'sync'. I can back up to iCloud but I get an error message telling me I cannot backup to my Mac. Can any one help? It's driving me crazy!

    Hello joelfromn. charleston,
    It seems you are unable to activate iMessage on a device with no carrier service. The following article provides information regarding activation issues:
    If you get an error when trying to activate iMessage or FaceTime - Apple Support
    Check your device settings
    Make sure that you’re connected to a cellular data or Wi-Fi network. If you're using an iPhone, you'll need SMS messaging to activate your phone number with iMessage and FaceTime. Depending on your carrier, you might be charged for this SMS.
    Go to Settings > General > Date & Time and make sure that your time zone is set up correctly.
    Thank you for contributing to Apple Support Communities.
    Cheers,
    Bobby_D

  • Constant crashing; I think Mozilla on my new Windows 7 thinks it's still operating in XP, although I'm not sure, being computer challenged.

    Ever since I started using Mozilla Firefox on my new Windows 7 computer it has crashed -- sometimes a few times a day, sometimes every ten minutes. I will copy the error message details at the end of this, if I can. I have tried numerous technicians and no one has been able to solve it. (I did reset Firefox more than once.) Just today, right clicking on the Firefox icon and going to compatability, I discovered that "Windows XP" was in the window instead of Windows 7. With the help of a Frontier technician (my internet provider) I changed that from Windows XP to Windows 7. We rebooted the computer, hoisted up Firefox, right-clicked on the icon, and sure enough it said "Windows 7" in the compatability window. However, after a short while Firefox crashed again. Right-clicking on the Firefox icon, I saw that it had reverted to "Windows XP" in the compatability window. Questions: Would Firefox's confusion about whether it was on a Windows XP or a Windows 7 computer cause crashes? Why would Firefox's compatability window revert from Windows 7 back to Windows XP? I have a theory, but I am not an expert: A local technician came in and transferred my Firefox from my WIndows XP computer to my WIndows 7 computer. I don't know whether he installed Firefox from your website or simply transferred the program from my XP computer. However, I asked him to keep my bookmarks. I have an icon on my Windows 7 computer: "Old Firefox Files." I thought that these files (there are four of them, all containing pretty much the same thing) were just my bookmarks, but looking at them today, it looks to me as if they contain the whole Firefox program from my XP computer. My inexpert theory: Firefox is reverting from WIndows 7 to Windows XP because my transferred bookmarks are XP-based. A Frontier technician today suggested I uninstall and re-install Firefox. Sounds like a good idea to me, however I am afraid that my old bookmarks will again confuse Firefox about whether it's in an XP or Windows 7 OS. Bookmarks are essential to the way I use my computer. In fact, many technicians suggested that I use Chrome instead of Firefox, but Chrome does not have an easily accessed bookmark list, like Firefox does in its vertical bookmark window. (Also, I would rather not have anything to do with Google.) Of course, I may be completely wrong about it being my bookmarks and the files transferred from my XP that are screwing up Firefox. Basically: Constant crashes and error messages; compatability window reverts from Windows 7 to Windows XP for some reason; bookmarks and other old Firefox program files have been put on this Windows 7 computer. What do you think I should do to keep Firefox from crashing?
    Here (hopefully) is the error message I get when Firefox crashes. It crashes no matter what website I am on at the moment:
    AdapterDeviceID: 0x2e22
    AdapterVendorID: 0x8086
    Add-ons: %7B972ce4c6-7e08-4474-a285-3208198ce6fd%7D:29.0
    AvailablePageFile: 6585110528
    AvailablePhysicalMemory: 2646499328
    AvailableVirtualMemory: 3610300416
    BIOS_Manufacturer: Dell Inc.
    BlockedDllList:
    BreakpadReserveAddress: 45481984
    BreakpadReserveSize: 37748736
    BuildID: 20140421221237
    CrashTime: 1399471425
    EMCheckCompatibility: true
    Email: [email protected]
    FramePoisonBase: 00000000f0de0000
    FramePoisonSize: 65536
    InstallTime: 1399046846
    Notes: AdapterVendorID: 0x8086, AdapterDeviceID: 0x2e22, AdapterSubsysID: 02831028, AdapterDriverVersion: 8.15.10.2869
    D2D? D2D+ DWrite? DWrite+ D3D10 Layers? D3D10 Layers+
    ProductID: {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
    ProductName: Firefox
    ReleaseChannel: release
    SecondsSinceLastCrash: 87895
    StartupTime: 1399468253
    SystemMemoryUsePercentage: 37
    Theme: classic/1.0
    Throttleable: 1
    TotalVirtualMemory: 4294836224
    URL: https://www3.citizensbankonline.com/efs/servlet/efs/wait.jsp?target=login-init-wait.jsp
    Vendor: Mozilla
    Version: 29.0
    Winsock_LSP: MSAFD Tcpip [TCP/IP] : 2 : 1 :
    MSAFD Tcpip [UDP/IP] : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [RAW/IP] : 2 : 3 :
    MSAFD Tcpip [TCP/IPv6] : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [UDP/IPv6] : 2 : 2 :
    MSAFD Tcpip [RAW/IPv6] : 2 : 3 : %SystemRoot%\system32\mswsock.dll
    RSVP TCPv6 Service Provider : 2 : 1 :
    RSVP TCP Service Provider : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    RSVP UDPv6 Service Provider : 2 : 2 :
    RSVP UDP Service Provider : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    useragent_locale: en-US
    This report also contains technical information about the state of the application when it crashed.

    Your whole bookmarks story is very confusing to me. Perhaps someone else can explain that better. :)
    Can you give me your crash reports?
    #Enter ''about:crashes'' in the Firefox address bar and press Enter. A Submitted Crash Reports list will appear, similar to the one shown below.
    #Copy the '''5''' most recent Report IDs that start with '''bp-''' and paste them into your response here.

  • Firefox 15.0.1 Constant Crashing Windows 7 64bit

    I am running Windows 7 64bit, Firefox 15.0.1 and all my addons are up to date. I have two extensions installed - AVG Do Not Track and Adblock. I have eight pluggins installed and three are normally disabled - Adobe Acrobat10.1.4.38, Google Update 1.3.21.115(Disabled), Java Deployment Toolkit 7.0.70.10 10.7.2.10, Java(TM) Platform SE 7 U7 10.7.2.10, Microsoft Office 2010 14.0.4761.1000(Disabled), Microsoft Office 2010 14.0.4730.1010(Disabled), Picasa 3.0.0.0, Shockwave Flash 11.4.402.278. I do not want to roll back the display driver because it fixed a display issue that caused a distortion in my monitor. So what are my options? Is it even the display driver? I have included my crash reports to assist in troubleshooting the issue.

    Hope I am not TOO hostile in my reply here but you have to understand I am frazzled after trying to resolve this issue for 4 days now... constant crashing on 15.0.1 and on 14.XX.X.
    I thought I might find an answer here, but I am amazed to see people continue to reference articles that require you to have FF '''RUNNING''' in order to perform any troubleshooting or analysis.
    Come on guys... READ the posts before you reference an article that is moot because it requires FF to work in order to follow it! if we could get it stable enough to run... the issue would e easier to localize and identify!

  • Please help me fix this problem it's driving me crazy. I have tried installing and reinstalling photoshop EXTENDED several time and each time i lunch it ask me for the serial number in which i entered it once entered nothing happens

    Please help me fix this problem it's driving me crazy. I have tried installing and reinstalling photoshop EXTENDED several time and each time i lunch it ask me for the serial number in which i entered it once entered nothing happens

    Hi Glenn,
    Kindly try out the steps mentioned in the link below and see if you are able to serialize your software.
    Sign in, activation, or connection errors | CS5.5 and later, Acrobat DC
    Try Solution 2: Clean up cached user login information.
    Please share the results after performing the steps.
    Thanks,
    Atul Saini

  • Since upgrading to FF 4, I have constant crashes (updating graphics drivers did not help). now all my bookmarks are gone. When I try to restore them, I get error message: "Unable to process the backup file".

    Since I "upgraded" to FF 4, I have constant crashes (I tried updating my graphics drivers--it did not help) and now all of my bookmarks have disappeared. When I try to restore them, I get this error message "Unable to process the backup file". I have lost years of bookmarks...please help.
    I am using Windows XP, SP 3 if that matters.

    I am also unable to restore any of the backups of the bookmarks, both automatic backups and two backups that I created manually. Since I was able to restore backups before, and since no changes have occurred to these backup files, the problem must be with Firefox.
    Right before my bookmarks disappeared, FF crashed and I accidentally started FF 3.5. When I saw what I did, I ended the Firefox process and started FF 4. That's when all my bookmarks were gone and I discovered I couldn't retrieve any backups. I did note that an add-on was updated when I restarted FF. Maybe that's the problem. Does FF have a Safe mode?

  • Constant crash in /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r

    I have a 2010 unibody Mac Mini.  It came stock with a 320GB HDD and i have upgraded it to 8GB of Apple approved Kingston RAM.
    The machine worked just fine under Mac OS 10.6.8, could be up for days and days and be perfectly stable.
    Since upgrading to Mac OS X 10.8, i have had constant crashes in Safari, and a bunch of other apps and the only thing really similar between the messages is the following line:
    /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
    This error has caused many apps to crash, including but not limited to:
    Safari
    App Store
    VLC
    Quicktime
    PhotoBooth
    Activity Monitor
    Safari seems to be the main culprit, it crashes constantly, i can use it for a bit, then it will crash, sometimes it will crash again directly after re-launch.  There doesn't seem to be any rhyme or reason. Apps do not quit in a cascading fashion, apps that have previously quit with the same line in the logs have not occured concurrently with other crashes at the same time.  I have created a guest account to test the system and I'm having the same issue globally, so i've managed to mostly rule out my profile.  I have no extentions installed and no plugins other than Flash and Silverlight. There seems to be no direct correlation between the use of either of these plugins when the crashes occur. Removing these plugins does not alleviate the problem.  System can be heavily loaded, or entirely idle.  I've come home from a 12 hour day to find a couple apps have crashed during the time i was gone. 
    App store was the only app running when it crashed.  The only other noteable thing to add is that after the crash occurs, the system will spin up all the connected external drives. I have tried disconnecting all external drives and peripherals and have been met with the same issues.
    Anyone have any thoughts one what may be causing this and how it may be fixed (Short of reinstalling...)?
    Here are some more snippets of console logs...
    Process:         WebProcess [35245]
    Path:            /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcess
    Identifier:      com.apple.WebProcess
    Version:         8536 (8536.26.14)
    Build Info:      WebKit2-7536026014000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  Safari [35223]
    User ID:         502
    Date/Time:       2012-10-06 08:10:08.599 -0600
    OS Version:      Mac OS X 10.8.2 (12C54)
    Report Version:  10
    Interval Since Last Report:          112 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  58 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      4ADFE8AC-D5CE-15CF-35F4-1B776B8AC9A5
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000009457732a0
    VM Regions Near 0x9457732a0:
        ATS (font support)     000000014b252000-000000014b253000 [    4K] rw-/rwx SM=PRV 
    -->
        MALLOC_TINY            00007f8101c00000-00007f8101f00000 [ 3072K] rw-/rwx SM=PRV 
    Application Specific Information:
    Bundle controller class:
    SnapshotFetcherBundleController
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.JavaScriptCore           0x00007fff8a9c1f28 ***::StringImpl::~StringImpl() + 184
    1   com.apple.JavaScriptCore           0x00007fff8ab228aa JSC::JSString::destroy(JSC::JSCell*) + 42
    2   com.apple.JavaScriptCore           0x00007fff8ab476ae JSC::MarkedBlock::FreeList JSC::MarkedBlock::sweepHelper<true>(JSC::MarkedBlock::SweepMode) + 398
    3   com.apple.JavaScriptCore           0x00007fff8ab474d4 JSC::MarkedBlock::sweep(JSC::MarkedBlock::SweepMode) + 36
    4   com.apple.JavaScriptCore           0x00007fff8aaf26cb JSC::Heap::sweep() + 107
    5   com.apple.JavaScriptCore           0x00007fff8aaf2875 JSC::Heap::collect(JSC::Heap::SweepToggle) + 245
    6   com.apple.JavaScriptCore           0x00007fff8aaf164b JSC::DefaultGCActivityCallbackPlatformData::timerDidFire(__CFRunLoopTimer*, void*) + 315
    7   com.apple.CoreFoundation           0x00007fff896bdda4 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    8   com.apple.CoreFoundation           0x00007fff896bd8bd __CFRunLoopDoTimer + 557
    9   com.apple.CoreFoundation           0x00007fff896a3099 __CFRunLoopRun + 1513
    10  com.apple.CoreFoundation           0x00007fff896a26b2 CFRunLoopRunSpecific + 290
    11  com.apple.HIToolbox                0x00007fff928c90a4 RunCurrentEventLoopInMode + 209
    12  com.apple.HIToolbox                0x00007fff928c8e42 ReceiveNextEventCommon + 356
    13  com.apple.HIToolbox                0x00007fff928c8cd3 BlockUntilNextEventMatchingListInMode + 62
    14  com.apple.AppKit                   0x00007fff8bb27613 _DPSNextEvent + 685
    15  com.apple.AppKit                   0x00007fff8bb26ed2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    16  com.apple.AppKit                   0x00007fff8bb1e283 -[NSApplication run] + 517
    17  com.apple.WebCore                  0x00007fff8a2e9e0f WebCore::RunLoop::run() + 63
    18  com.apple.WebKit2                  0x00007fff8890ac8a WebKit::WebProcessMain(WebKit::CommandLine const&) + 2586
    19  com.apple.WebKit2                  0x00007fff888d25bd WebKitMain + 285
    20  com.apple.WebProcess               0x0000000102394e7b 0x102394000 + 3707
    21  libdyld.dylib                      0x00007fff8cb447e1 start + 1
    Process:         App Store [35301]
    Path:            /Applications/App Store.app/Contents/MacOS/App Store
    Identifier:      com.apple.appstore
    Version:         1.2.1 (129.7)
    Build Info:      Firenze-129007000000000~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [35047]
    User ID:         502
    Date/Time:       2012-10-06 08:15:30.714 -0600
    OS Version:      Mac OS X 10.8.2 (12C54)
    Report Version:  10
    Interval Since Last Report:          298 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  39 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      4ADFE8AC-D5CE-15CF-35F4-1B776B8AC9A5
    Crashed Thread:  9  Dispatch queue: com.apple.SoftwareUpdate.DistributionEvaluate
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000009135a2cf0
    VM Regions Near 0x9135a2cf0:
        __LINKEDIT             0000000200e5d000-0000000200eb3000 [  344K] r--/rwx SM=COW  /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    -->
        JS JIT generated code  000035cdcd800000-000035cdcd801000 [    4K] ---/rwx SM=NUL 
    Thread 9 Crashed:: Dispatch queue: com.apple.SoftwareUpdate.DistributionEvaluate
    0   libsystem_c.dylib                  0x00007fff8f5f1cae OSAtomicAdd32Barrier$VARIANT$mp + 2
    1   com.apple.JavaScriptCore           0x00007fff8a9e1256 JSClassRelease + 22
    2   com.apple.JavaScriptCore           0x00007fff8aa41b88 OpaqueJSClass::~OpaqueJSClass() + 24
    3   com.apple.JavaScriptCore           0x00007fff8aa3a5f7 OpaqueJSClassContextData::~OpaqueJSClassContextData() + 119
    4   com.apple.JavaScriptCore           0x00007fff8aa398f8 JSC::JSGlobalData::~JSGlobalData() + 712
    5   com.apple.JavaScriptCore           0x00007fff8ab1da17 JSC::JSLockHolder::~JSLockHolder() + 167
    6   com.apple.JavaScriptCore           0x00007fff8a9d0dc8 JSGlobalContextRelease + 216
    7   com.apple.DistributionKit          0x00000001031676aa IFJS_GlobalContextRelease + 41
    8   com.apple.DistributionKit          0x000000010315a536 -[PKDistributionEvaluator dealloc] + 77
    9   com.apple.DistributionKit          0x000000010315756a -[PKDistributionChoiceItem dealloc] + 539
    10  com.apple.CoreFoundation           0x00007fff8967685a CFRelease + 170
    11  com.apple.CoreFoundation           0x00007fff8969dc25 -[__NSArrayM dealloc] + 229
    12  libobjc.A.dylib                    0x00007fff93072230 (anonymous namespace)::AutoreleasePoolPage::pop(void*) + 464
    13  com.apple.CoreFoundation           0x00007fff8969e342 _CFAutoreleasePoolPop + 34
    14  com.apple.Foundation               0x00007fff88fbf4fa -[NSAutoreleasePool drain] + 154
    15  com.apple.SoftwareUpdate.framework     0x0000000102f9ea75 -[SUProductLoadOperation evaluateProduct] + 863
    16  com.apple.SoftwareUpdate.framework     0x0000000102fa3954 __95-[SUScan(Impl) _productsByScanningCatalog:limitedToProductKeys:withLastRecommendedIdentifiers: ]_block_invoke_060 + 49
    17  libdispatch.dylib                  0x00007fff8f583f01 _dispatch_call_block_and_release + 15
    18  libdispatch.dylib                  0x00007fff8f5800b6 _dispatch_client_callout + 8
    19  libdispatch.dylib                  0x00007fff8f58147f _dispatch_queue_drain + 235
    20  libdispatch.dylib                  0x00007fff8f5812f1 _dispatch_queue_invoke + 52
    21  libdispatch.dylib                  0x00007fff8f5811c3 _dispatch_worker_thread2 + 249
    22  libsystem_c.dylib                  0x00007fff8f605cab _pthread_wqthread + 404
    23  libsystem_c.dylib                  0x00007fff8f5f0171 start_wqthread + 13

    Hmmm, it'd make Safari less usefull & AppStore might not work, but try disabling Javascript in Safri & browse best you can.
    The symptoms without the logs are reminiscent of a RAM problem.
    The Memory test can really only be trusted if it finds a problem, not if it doesn't find a problem.
    Memtest OS X...
    http://www.memtestosx.org/joomla/index.php
    Rember is a freeware GUI for the memtest ...
    http://tech.kateva.org/2005/10/rember-freeware-memory-test-utility.html

  • Mail 2.1.3 on Tiger: mutiples of everything is driving me crazy!

    Hi, I recently had to reformat my hard drive and thus have been trying to reinstall all my email accounts (which I had backed up). I am using MAIL 2.1.3.
    I have several questions (this is driving me crazy!!):
    When I imported the archived files, it created new mailboxes but DID NOT reinstall my mail in it's corresponding email account file (i.e: i have an email account for incoming mail with "username", and then far below I have a mailbox (for EACH account, and I have about 7) which contains all my old mail. I can't seem to merge the two.
    When I recreated my useraccounts (most of which are gmail), I followed online instructions and created all my accounts using IMAP, since my first attempt using the POP version of these same accounts would NOT SEND OUT any of my Gmail mail. Now, for EACH ACCOUNT, not only do I have a "regular mailbox", I have the same "imported" from my old version, AND a third folder under "IMAP".... All this is REALLY driving me crazy!!
    All I want to achieve is what i had before : one version of each of my email accounts, including Gmail, that both recieve AND send mail. Nothing more.
    On the my other computer (leopard) Mail configures itself and everything works: it's bliss!!!
    Can anyone help me clear up this mess (also because as a result everything is SLOW!!)
    Infinite thanks,
    Nicaru

    Thanks BDAqua, Unfortunately I did not do a very good job explaining myself.
    I am not trying to sync two computers (Tiger/Leopard). The Leopard comment was just me venting that it was so much a better program than Tiger....
    No, what I want is simply to recreate my Mail Client the way it looked before: with one inbox per username, a single Sent/Draft/Outgoing mailbox and that's all!!
    Instead for each username I have "normal" Inboxes, PLUS imported folders (each with their own Inbox/Sent/Draft mailboxes) PLUS IMAP folders again with their own individual Inbox/Sent/Draft mailboxes). My homepage when I open Mail contains something like 21 folders, whereas I only want the 7 (one per username).
    This whole thing came about because when I tried to import my old mailboxes (pre-formatting my mac) they imported as separate folders whereas I wanted them to merge into their respective accounts.
    The other issue I had (originally) which led to this mess is that none of my Gmail accounts would SEND mail (receiving is Ok) so I followed the online IMAP instructions and this is where I got triplets....
    Gosh, I don't know how else to explain it... If it's still not clear perhaps I should just erase everything and start from scratch??
    Thanks again,
    Nicaru

Maybe you are looking for

  • Acrobat 9.0 help

    while on the internet with sites that have PDFs to be viewed-Adobe isn't opening the PDFs. Environment : Acrobat 9.0 pro, Windows XP Have done the following 1 : Tried to open the same file in some different Browser. 2: Configure the browser to use Ac

  • What is the best way of lightening complexions?

    Could someone please tell me what is the best way of lightening people's complexions in Aperture 3?

  • How do I select a autofill selection on safari on ipad 2

    Ok, I set up my ipad2 safari browser to remember my multiple Comcast email accounts and their passwords. Now when I open my Comcast email window it brings up my first selection. Ok, I can deal with that. I just clear the address field and start typin

  • Listening to Line In Audio/Recording from Vinyl

    I'm not sure where exactly to post this, but I'm guessing it is a software issue with OS X. I was just given an old record player (Miracord) and receiver (harmon/kardon 330c) and I've got it all hooked up correctly (or so I think, record player > rec

  • Multicast - Home Hub Wireless?

    Is it possible to enable the home hub to send multicast signals over its wireless network? My hub was installed upstairs and my YouView box is downstairs, so a cable is out of the question. I have my YouView box connected to the wireless network thro