Launching tab is crashing when browsing in another page?

This is so bizarre I don't know whether it is just IE EPM or something strange about the forums. But it has happened twice. Yesterday I lost a partially composed reply from it and today I lost all context from My Forums.
I suspect it is a combination of EPM plus these forums.  I happen to be using EPM + 64-bit tabs while I am working on another incident.  That's when I started noticing strange things like this happening.
In each case, the tab that crashed was not the one that I was in but probably was the one which launched the tab that I was in. 
How do I diagnose this?  It is not something that I can reproduce.  It is not something that occurs frequently enough that I want to be running ProcMon all that time.  (ProcMon has been having its own problems recently too which makes me even
less willing to do that.)  The tab was completely gone; otherwise I would try checking the Developer Tools, Console tab for the clues, since I at least have it supposedly showing all Console messages even if it hasn't been opened that soon.  BTW
one concern about that diagnostic is that it is always showing Clear entries on navigate, which I suspect makes it less useful if the problem is associated with a redirect.
I recently became aware of ETW tracing as a diagnostic option.  How much overhead would there be from ETW tracing and which ones would be good to try?
Ref:
http://blogs.msdn.com/b/ntdebugging/archive/2009/09/08/exploring-and-decoding-etw-providers-using-event-log-channels.aspx 
Finding that and Pasting it has made me realize that I am currently operating with another unusual option for me: 
    Use most recent order when switching tabs with Ctrl+Tab
I toggled that one on a while ago when I had so many tabs open I couldn't find the ones that I wanted to get back to even with a whole row of them showing!  Alt-T O, Ctrl-Backtab, HT, CursorUp x3.   (That has always just screamed "Where's
the toggle?" at me.)   I'll toggle that off now at least and see if that changes the frequency of this crash symptom.
Is there at least some post-mortem diagnostic I can check?  Perhaps there is an ETW for that at least which I should be enabling that wouldn't have too much overhead?
Meanwhile I am going to have to resume my wariness about Editing and do more Ctrl-a, Ctrl-c AND saves.  I had become increasingly lax about doing that even before clicking Submit because of the relative reliability I had been getting.
TIA
Robert Aldwinckle

I haven't seen this. Has anyone else?
Thanks!
Ed Price, Azure & Power BI Customer Program Manager (Blog,
Small Basic,
Wiki Ninjas,
Wiki)
Answer an interesting question?
Create a wiki article about it!

Similar Messages

  • Windows Phone camera App crash when switching to another page

    I am creating a Simple Face Detection App for Windows Phone in C#. I turn on my camera , everything works perfect and FaceDetector works too, but when I try to navigate to other page my App always crashes and I do not why. I tried to test my App in Windows
    Phone Emulator and here the navigation works. I also tried debug my App in real device, but there the method OnNavigatedFrom is never hit.
    FaceDetection.xaml.cs
    public partial class FaceDetection : PhoneApplicationPage
    #region member variables
    const string MODEL_FILE = "models/haarcascade_frontalface_alt.xml";
    FaceDetector.Detector _detector;
    int _downsampleFactor = 2;
    private byte[] _pixelDataGray;
    private byte[] _pixelDataDownsampled;
    private int[] _pixelDataGrayInt;
    private WriteableBitmap _wb;
    private DateTime _lastUpdate;
    public static int pocet = 5;
    double point1;
    double point2;
    double heightRectangle;
    double widthRectangle;
    #endregion
    public FaceDetection()
    InitializeComponent();
    _detector = new FaceDetector.Detector(XDocument.Load(MODEL_FILE));
    private void NewCameraFrame(object sender, CameraFrameEventArgs cameraFrameEventArgs)
    PageOrientation orientaciaObrazovky = ((PhoneApplicationFrame)Application.Current.RootVisual).Orientation;
    cameraViewer.UpdateOrientation(orientaciaObrazovky);
    var w = cameraViewer.CameraWidth;
    var h = cameraViewer.CameraHeight;
    if (_pixelDataGray == null || _pixelDataGray.Length != h * w)
    _pixelDataGray = new byte[w / _downsampleFactor * h / _downsampleFactor];
    _pixelDataDownsampled =
    new byte[w / _downsampleFactor * h / _downsampleFactor];
    _pixelDataGrayInt = new int[w / _downsampleFactor * h / _downsampleFactor];
    _wb = new WriteableBitmap(w / _downsampleFactor, w / _downsampleFactor);
    _lastUpdate = DateTime.Now;
    Utils.DownSample(cameraFrameEventArgs.ARGBData, w, h, ref _pixelDataGrayInt, _downsampleFactor);
    Utils.ARGBToGreyScale(_pixelDataGrayInt, ref _pixelDataGray);
    Utils.HistogramEqualization(ref _pixelDataGray);
    Utils.GrayToARGB(_pixelDataGray, ref _pixelDataGrayInt);
    List<FaceDetector.Rectangle> faces = new List<FaceDetector.Rectangle>();
    if (orientaciaObrazovky == PageOrientation.PortraitUp || orientaciaObrazovky == PageOrientation.PortraitDown)
    int scalw = w / _downsampleFactor;
    int scalh = h / _downsampleFactor;
    int[] _pixelDataGrayIntRotated = new int[scalw * scalh];
    for (int x = 0; x < scalw; x++)
    for (int y = 0; y < scalh; y++)
    _pixelDataGrayIntRotated[y + x * scalh] = _pixelDataGrayInt[x + y * scalw];
    faces = _detector.getFaces(
    _pixelDataGrayIntRotated,
    h / _downsampleFactor,
    w / _downsampleFactor,
    2f, 1.25f, 0.1f, 1, false, false); // height-width swapped
    else
    faces = _detector.getFaces(
    _pixelDataGrayInt,
    w / _downsampleFactor,
    h / _downsampleFactor,
    2f, 1.25f, 0.1f, 1, false, false);
    var elapsed = (DateTime.Now - _lastUpdate).TotalMilliseconds;
    _pixelDataGrayInt.CopyTo(_wb.Pixels, 0);
    _wb.Invalidate();
    Dispatcher.BeginInvoke(delegate()
    cnvsFaceRegions.Children.Clear();
    foreach (var r in faces)
    System.Windows.Shapes.Rectangle toAdd = new System.Windows.Shapes.Rectangle();
    TranslateTransform loc = new TranslateTransform();
    if (orientaciaObrazovky == PageOrientation.PortraitUp)
    loc.X = r.X * _downsampleFactor / (double)w * cnvsFaceRegions.ActualWidth;
    loc.Y = r.Y * _downsampleFactor / (double)w * cnvsFaceRegions.ActualHeight;
    point1 = r.X;
    point2 = r.Y;
    else if (orientaciaObrazovky == PageOrientation.PortraitDown)
    loc.X = r.X * _downsampleFactor / (double)w * cnvsFaceRegions.ActualWidth;
    loc.Y = r.Y * _downsampleFactor / (double)w * cnvsFaceRegions.ActualHeight;
    point1 = r.X;
    point2 = r.Y;
    else if (orientaciaObrazovky == PageOrientation.LandscapeLeft)
    loc.X = r.X * _downsampleFactor / (double)w * cnvsFaceRegions.ActualWidth - 50;
    loc.Y = r.Y * _downsampleFactor / (double)w * cnvsFaceRegions.ActualHeight + 90;
    point1 = r.X;
    point2 = r.Y;
    else if (orientaciaObrazovky == PageOrientation.LandscapeRight)
    loc.X = r.X * _downsampleFactor / (double)w * cnvsFaceRegions.ActualWidth+50 ;
    loc.Y = r.Y * _downsampleFactor / (double)w * cnvsFaceRegions.ActualHeight -90;
    point1 = r.X;
    point2 = r.Y;
    toAdd.RenderTransform = loc;
    toAdd.Width = r.Width * _downsampleFactor + 50;
    toAdd.Height = r.Height * _downsampleFactor + 50;
    toAdd.Stroke = new SolidColorBrush(Colors.Red);
    cnvsFaceRegions.Children.Add(toAdd);
    widthRectangle = toAdd.Width;
    heightRectangle = toAdd.Height;
    point1 = (loc.X);
    point2 = (loc.Y);
    protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
    base.OnNavigatedTo(e);
    cameraViewer.SaveToCameraRoll = true;
    cameraViewer.NewCameraFrame += NewCameraFrame;
    cameraViewer.StartPumpingFrames();
    CameraButtons.ShutterKeyHalfPressed += OnButtonHalfPress;
    CameraButtons.ShutterKeyPressed += OnButtonFullPress;
    CameraButtons.ShutterKeyReleased += OnButtonRelease;
    protected override void OnNavigatedFrom(System.Windows.Navigation.NavigationEventArgs e)
    base.OnNavigatedFrom(e);
    cameraViewer.StopPumpingFrames();
    CameraButtons.ShutterKeyHalfPressed -= OnButtonHalfPress;
    CameraButtons.ShutterKeyPressed -= OnButtonFullPress;
    CameraButtons.ShutterKeyReleased -= OnButtonRelease;
    private void OnButtonHalfPress(object sender, EventArgs e)
    cameraViewer.NewCameraFrame -= NewCameraFrame;
    private void OnButtonFullPress(object sender, EventArgs e)
    SaveScreenShots();
    private void OnButtonRelease(object sender, EventArgs e)
    cameraViewer.NewCameraFrame += NewCameraFrame;
    private static WriteableBitmap CropImage(WriteableBitmap source, int xOffset, int yOffset, int width, int height)
    var sourceWidth = source.PixelWidth;
    var result = new WriteableBitmap(width, height);
    for (var x = 0; x <= height - 1; x++)
    var sourceIndex = xOffset + (yOffset + x) * sourceWidth;
    var destinationIndex = x * width;
    Array.Copy(source.Pixels, sourceIndex, result.Pixels, destinationIndex, width);
    return result;
    private void SaveScreenShots()
    string namePerson = PhoneApplicationService.Current.State["TextBoxValue"] as String;
    bool b = cnvsFaceRegions.Children.Any();
    cnvsFaceRegions.Children.Clear();
    if (!b)
    MessageBox.Show("No face detected ");
    else
    for (int j = 1; j <= pocet; j++)
    using (var isoStore = IsolatedStorageFile.GetUserStoreForApplication())
    var bmp = new WriteableBitmap((int)this.ActualWidth, (int)this.ActualHeight);
    bmp.Render(this, null);
    byte[] bb = EncodeToJpeg(bmp);
    bmp.Invalidate();
    WriteableBitmap bmp2 = CropImage(bmp, (int)point1, (int)point2, (int)widthRectangle, (int)heightRectangle);
    using (var isoFileStream = isoStore.CreateFile(namePerson + j))
    System.Windows.Media.Imaging.Extensions.SaveJpeg(bmp2, isoFileStream, bmp.PixelWidth, bmp.PixelHeight, 0, 100);
    isoFileStream.Close();
    MessageBox.Show("Saved successfully " + pocet + " images");
    cameraViewer.NewCameraFrame += NewCameraFrame;
    public byte[] EncodeToJpeg(WriteableBitmap wb)
    using (MemoryStream stream = new MemoryStream())
    wb.SaveJpeg(
    stream,
    wb.PixelWidth,
    wb.PixelHeight,
    0,
    85);
    return stream.ToArray();
    private void cameraViewer_MouseLeftButtonDown_1(object sender, MouseButtonEventArgs e)
    cameraViewer.NewCameraFrame -= NewCameraFrame;
    private void cameraViewer_MouseLeftButtonUp_1(object sender, MouseButtonEventArgs e)
    SaveScreenShots();
    private void ApplicationBarMenuItem_Click(object sender, EventArgs e)
    NavigationService.Navigate(new Uri("/PersonAndGallery;component/Gallery.xaml", UriKind.Relative));
    CameraViewer.cs
    public class CameraFrameEventArgs : RoutedEventArgs
    public int[] ARGBData { get; set; }
    public static class AppGlobal
    public static bool isPortrait = true;
    public class CameraViewer : Grid
    #region Events
    public EventHandler<CameraFrameEventArgs> NewCameraFrame { get; set; }
    public EventHandler<ContentReadyEventArgs> NewCameraCaptureImage { get; set; }
    public EventHandler<CameraOperationCompletedEventArgs> CamInitialized { get; set; }
    #endregion
    #region Properties
    public int CameraWidth
    get { return _cameraWidth; }
    set { _cameraWidth = value; }
    public int CameraHeight
    get { return _cameraHeight; }
    set { _cameraHeight = value; }
    public bool PhotoOnPress
    get { return _photoOnPress; }
    set
    _photoOnPress = value;
    // CameraButtons.ShutterKeyPressed -= CameraButtonsOnShutterKeyPressed;
    if (_photoOnPress)
    // CameraButtons.ShutterKeyPressed += CameraButtonsOnShutterKeyPressed;
    public bool SaveToCameraRoll { get; set; }
    public PhotoCamera Camera
    get { return _camera; }
    public bool TakingPhoto
    get { return _takingPhoto; }
    #endregion
    #region Member Variables
    private PhotoCamera _camera; // the windows phone camera that takes the photos
    private int _cameraWidth = -1;
    private int _cameraHeight = -1;
    private Thread _pumpFramesThread;
    private static ManualResetEvent _pauseFramesEvent = new ManualResetEvent(true);
    private bool _takingPhoto;
    VideoBrush viewfinderBrush;
    private bool _photoOnPress;
    private SoundEffect _cameraShutterSound;
    private static ManualResetEvent _cameraCaptureEvent = new ManualResetEvent(true);
    private static ManualResetEvent _cameraInitializedEvent = new ManualResetEvent(false);
    private bool _pumpFrames;
    #endregion
    #region Constructor
    public CameraViewer()
    Unloaded += new RoutedEventHandler(OnUnloaded);
    PhotoOnPress = true;
    public override void OnApplyTemplate()
    base.OnApplyTemplate();
    #endregion
    #region Public methods
    public void StartPumpingFrames()
    _pauseFramesEvent = new ManualResetEvent(true);
    _cameraCaptureEvent = new ManualResetEvent(true);
    _cameraInitializedEvent = new ManualResetEvent(false);
    InitializeCamera();
    _pumpFrames = true;
    if (_pumpFramesThread == null)
    _pumpFramesThread = new Thread(PumpFrames);
    if (!_pumpFramesThread.IsAlive)
    _pumpFramesThread.Start();
    public void StopPumpingFrames()
    _pumpFrames = false;
    _pumpFramesThread = null;
    Camera.Dispose();
    public void TakePhoto()
    if (TakingPhoto)
    return;
    _cameraCaptureEvent.Reset();
    FrameworkDispatcher.Update();
    _cameraShutterSound.Play();
    _takingPhoto = true;
    Camera.CaptureImage();
    #endregion
    private void CameraButtonsOnShutterKeyPressed(object sender, EventArgs eventArgs)
    if (_photoOnPress && !TakingPhoto)
    _cameraCaptureEvent.WaitOne();
    TakePhoto();
    private void OnUnloaded(object sender, RoutedEventArgs e)
    _cameraInitializedEvent.Reset();
    public void InitializeCamera()
    _cameraInitializedEvent.Reset();
    // Check to see if the camera is available on the device.
    if ((PhotoCamera.IsCameraTypeSupported(CameraType.Primary) == true) ||
    (PhotoCamera.IsCameraTypeSupported(CameraType.FrontFacing) == true))
    // Initialize the default camera.
    _camera = new Microsoft.Devices.PhotoCamera();
    //Event is fired when the PhotoCamera object has been initialized
    Camera.Initialized +=
    new EventHandler<Microsoft.Devices.CameraOperationCompletedEventArgs>(CameraInitialized);
    Camera.CaptureImageAvailable += CameraOnCaptureImageAvailable;
    Camera.CaptureCompleted += CameraOnCaptureCompleted;
    //Set the VideoBrush source to the camera
    // var viewfinderBrush = new VideoBrush();
    viewfinderBrush = new VideoBrush();
    viewfinderBrush.Stretch = Stretch.Fill;
    viewfinderBrush.RelativeTransform = new CompositeTransform { CenterX = 0.5, CenterY = 0.5 };
    viewfinderBrush.SetSource(Camera);
    System.Windows.Shapes.Rectangle rect = new System.Windows.Shapes.Rectangle();
    rect.Fill = viewfinderBrush;
    this.Children.Add(rect);
    Stream stream = TitleContainer.OpenStream("models/shutter.wav");
    _cameraShutterSound = SoundEffect.FromStream(stream);
    // CameraButtons.ShutterKeyPressed -= CameraButtonsOnShutterKeyPressed;
    if (_photoOnPress)
    // CameraButtons.ShutterKeyPressed += CameraButtonsOnShutterKeyPressed;
    else
    // The camera is not supported on the device.
    MessageBox.Show(
    "Sorry, this sample requires a phone camera and no camera is detected. This application will not show any camera output.");
    private void CameraOnCaptureCompleted(object sender, CameraOperationCompletedEventArgs cameraOperationCompletedEventArgs)
    _cameraCaptureEvent.Set();
    _takingPhoto = false;
    private void CameraOnCaptureImageAvailable(object sender, ContentReadyEventArgs contentReadyEventArgs)
    if (SaveToCameraRoll)
    Dispatcher.BeginInvoke(() =>
    WriteableBitmap bitmap =
    CreateWriteableBitmap(contentReadyEventArgs.ImageStream,
    (int)Camera.Resolution.Width,
    (int)Camera.Resolution.Height);
    // SaveCapturedImage(bitmap);
    //TakeScreenShots();
    if (NewCameraCaptureImage != null)
    NewCameraCaptureImage.Invoke(this, contentReadyEventArgs);
    // Helper for CameraOnCaptureImageAvailable
    private void SaveCapturedImage(WriteableBitmap imageToSave)
    var stream = new MemoryStream();
    imageToSave.SaveJpeg(stream, imageToSave.PixelWidth, imageToSave.PixelHeight, 0, 100);
    //Take the stream back to its beginning because it will be read again
    //when saving to the library
    stream.Position = 0;
    var library = new MediaLibrary();
    string fileName = string.Format("{0:yyyy-MM-dd-HH-mm-ss}.jpg", DateTime.Now);
    library.SavePictureToCameraRoll(fileName, stream);
    //save to Save Photo
    Picture pic;
    private void TakeScreenShots()
    WriteableBitmap bmp = new WriteableBitmap((int)this.ActualWidth, (int)this.ActualHeight);
    bmp.Render(this, null);
    byte[] bb = EncodeToJpeg(bmp);
    bmp.Invalidate();
    MemoryStream mem = new MemoryStream();
    bmp.SaveJpeg(mem, bmp.PixelWidth, bmp.PixelHeight, 0, 100);
    mem.Seek(0, System.IO.SeekOrigin.Begin);
    if (mem != null)
    MediaLibrary library = new MediaLibrary();
    try
    pic = library.SavePicture("Mask_" + Guid.NewGuid().ToString(), mem);
    MessageBox.Show("Your picture is now accessible through the Saved Picture album.", "Saved successfully.", MessageBoxButton.OK);
    catch (Exception ex)
    MessageBox.Show("Unable to save the photo." + ex);
    public byte[] EncodeToJpeg(WriteableBitmap wb)
    using (MemoryStream stream = new MemoryStream())
    wb.SaveJpeg(
    stream,
    wb.PixelWidth,
    wb.PixelHeight,
    0,
    85);
    return stream.ToArray();
    // Creates a WriteableBitmap from an imageStream
    private WriteableBitmap CreateWriteableBitmap(Stream imageStream, int width, int height)
    var bitmap = new WriteableBitmap(width, height);
    imageStream.Position = 0;
    bitmap.LoadJpeg(imageStream);
    return bitmap;
    private void CameraInitialized(object sender, CameraOperationCompletedEventArgs e)
    if (e.Succeeded)
    try
    // available resolutions are ordered based on number of pixels in each resolution
    CameraWidth = (int)Camera.PreviewResolution.Width;
    CameraHeight = (int)Camera.PreviewResolution.Height;
    if (CamInitialized != null)
    CamInitialized.Invoke(this, e);
    _cameraInitializedEvent.Set();
    _pauseFramesEvent.Set();
    catch (ObjectDisposedException)
    // If the camera was disposed, try initializing again
    private void PumpFrames()
    _cameraInitializedEvent.WaitOne();
    int[] pixels = new int[CameraWidth * CameraHeight];
    int numExceptions = 0;
    while (_pumpFrames)
    _pauseFramesEvent.WaitOne();
    _cameraCaptureEvent.WaitOne();
    _cameraInitializedEvent.WaitOne();
    try
    Camera.GetPreviewBufferArgb32(pixels);
    catch (Exception e)
    // If we get an exception try capturing again, do this up to 10 times
    if (numExceptions >= 10)
    throw e;
    numExceptions++;
    continue;
    numExceptions = 0;
    _pauseFramesEvent.Reset();
    Deployment.Current.Dispatcher.BeginInvoke(
    () =>
    if (NewCameraFrame != null && _pumpFrames)
    NewCameraFrame(this, new CameraFrameEventArgs { ARGBData = pixels });
    _pauseFramesEvent.Set();
    //na zmenu orientacie
    public void UpdateOrientation(PageOrientation orientation)
    if (orientation == PageOrientation.PortraitDown)
    viewfinderBrush.RelativeTransform =
    new CompositeTransform { CenterX = 0.5, CenterY = 0.5, Rotation = 270 };
    /* else if (orientation == PageOrientation.PortraitDown && cameraType == 2)
    viewfinderBrush.RelativeTransform =
    new CompositeTransform { CenterX = 0.5, CenterY = 0.5, Rotation = 90 };
    else if (orientation == PageOrientation.PortraitUp && cameraType == 2)
    viewfinderBrush.RelativeTransform =
    new CompositeTransform { CenterX = 0.5, CenterY = 0.5, Rotation = -90 };
    else if (orientation == PageOrientation.PortraitUp)
    viewfinderBrush.RelativeTransform =
    new CompositeTransform { CenterX = 0.5, CenterY = 0.5, Rotation =90 };
    else if (orientation == PageOrientation.LandscapeLeft)
    viewfinderBrush.RelativeTransform =
    new CompositeTransform { CenterX = 0.5, CenterY = 0.5, Rotation = 0 };
    else if (orientation == PageOrientation.LandscapeRight)
    viewfinderBrush.RelativeTransform =
    new CompositeTransform { CenterX = 0.5, CenterY = 0.5, Rotation = -180 };
    Thanks for reply.

    Hi Facko,
    Thanks for posting at the forum, however it could be really difficult for us to copy/paste your code and try to repro the issue, I would suggest you to provide a repro sample for us so that we can debug for you.
    And base on your description, looks like your app only crashes on the real device, but not on the emulator. I have question here, how the app works on the emulator?
    As I know if we open the camera on emulator, the only thing we can see is kind of small color blocks instead of the real images.
    You could also try to close the camera and then dispose the object to see if it works.
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • IMovie crashes when browsing Titles, and when exporting movie.

    Frequent occurance.  Crashes when browsing Titles. When re-opening it goes to a previous project.
    2nd problem, also frequent but always with one project.  I have tried numerous things, all unsuccessful. Have gone back to iPhoto to redo slideshow, have checked photo permissions, then rebuild movie but still unsuccessful.  Message:  "EXC BAD ACCESS (SIGSEGV)".

    Sometimes iMovie Projects become corrupted and can cause iMovie to crash. This is what worked for me after months of frustration without any solution.
    Copy the iMovie Projects folder to the desktop. To avoid confusion rename this folder Desktop iMovie Projects. Do not delete these projects from the Desktop iMovie Projects folder.
    Then delete all projects from the original iMovie Projects folder for iMovie - found Mac HD > Users > (Your home folder) > Movies > iMovie Projects.
    Either create a simple test movie project in iMovie or...
    or take, from Desktop iMovie Projects folder, one of the projects that you know was successfully exported in the past and copy from the Desktop iMovie Projectsfolder into the original iMovie Projects folder.
    Try launching iMovie again.
    In turn take, from Desktop iMovie Projects folder, another of the projects and copy from the Desktop iMovie Projects folder into the original iMovie Projects folder.
    Close and restart iMovie. Try to export this project
    In transferring one project at a time you can isolate the corrupted project(s)
    See my news-feed on  facebook

  • Firefox crashes when browsing with google

    firefox crashes when browsing with google

    The file sshnas21.dll mentioned in the crash report is a component of malware or spyware, you should immediately remove it using an antivirus and antispyware program.
    Do a malware check with some malware scan programs.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of the database before doing a scan.<br />
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and [[Searches are redirected to another site]]

  • [Solved] arch crashing when browsing files

    Seem to be having a strange problem of crashing when browsing files via the built in file manger of mate desktop. I say strange because it works ok if browsing via an app like pluma
    Some times it freezes before hand. It takes some seconds to happen but if I mount my extra drive it crashes all most right away.
    Just to say I got one other system up and running fine with the only difference being ram and drive sizes.
    Do anyone know what it could be?
    Last edited by taylord1984 (2013-05-27 15:36:26)

    Sorry about late reply. Forgot all about posting this.
    It would seem it was a mobo fault. There was one other difference between the systems and that was the one that kept crashing had an ati card. I removed that card to boot from the igpu system wouldn't boot at all. Thought it got to be cpu or ram so did some swapping about to find it was in fact a fault mobo. I still think it's an odd one but I'm no expert lol
    Thanks opt1mus for your time in responding.

  • Safari crashes when I open random pages

    So apparently many people are having this problem in different forms or types but my safari browser will crash when I open random pages of the internet. Everything goes smoothly about 90% of the time and then the rest pages will close, specifically ones that have videos on them sometimes. Help!
    Date/Time: 2005-12-09 09:07:03.169 -0500
    OS Version: 10.4.3 (Build 8F46)
    Report Version: 3
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [61]
    Version: 2.0.2 (416.13)
    Build Version: 1
    Project Name: WebBrowser
    Source Version: 4161300
    PID: 3324
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000006
    Thread 0 Crashed:
    0 com.apple.CoreFoundation 0x9073fba4 CFRetain + 60
    1 com.apple.CoreFoundation 0x9073f5c0 _CFArrayReplaceValues + 372
    2 com.apple.CoreFoundation 0x9073f438 CFArrayAppendValue + 200
    3 net.telestream.wmv.webplugin 0x09cb8dc0 -[WmvPlugin openMovieInPlayer:] + 220 (WmvPlugin.m:615)
    4 net.telestream.wmv.webplugin 0x09cb8298 -[WmvPlugin webPlugInStart] + 368 (WmvPlugin.m:292)
    5 com.apple.WebKit 0x954641f8 -[WebPluginController addPlugin:] + 264
    6 com.apple.WebKit 0x9545596c -[WebHTMLView addSubview:] + 128
    7 com.apple.WebCore 0x9571ca20 QWidget::addToSuperview(NSView*) + 124
    8 com.apple.WebCore 0x9571c42c khtml::RenderWidget::setQWidget(QWidget*, bool) + 572
    9 com.apple.WebCore 0x9571c170 khtml::RenderPart::setWidget(QWidget*) + 228
    10 com.apple.WebCore 0x95717e70 KHTMLPart::processObjectRequest(khtml::ChildFrame*, KURL const&, QString const&) + 1732
    11 com.apple.WebCore 0x95716f84 KHTMLPart::requestObject(khtml::ChildFrame*, KURL const&, KParts::URLArgs const&) + 1964
    12 com.apple.WebCore 0x95766108 KHTMLPart::requestObject(khtml::RenderPart*, QString const&, QString const&, QStringList const&, QStringList const&) + 876
    13 com.apple.WebCore 0x957157fc khtml::RenderPartObject::updateWidget() + 3016
    14 com.apple.WebCore 0x95765aa4 DOM::HTMLObjectElementImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 132
    15 com.apple.WebCore 0x956c3804 DOM::ElementImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 608
    16 com.apple.WebCore 0x956c3804 DOM::ElementImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 608
    17 com.apple.WebCore 0x956c3804 DOM::ElementImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 608
    18 com.apple.WebCore 0x956c3804 DOM::ElementImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 608
    19 com.apple.WebCore 0x956c3804 DOM::ElementImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 608
    20 com.apple.WebCore 0x956c3804 DOM::ElementImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 608
    21 com.apple.WebCore 0x956c3804 DOM::ElementImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 608
    22 com.apple.WebCore 0x956c3804 DOM::ElementImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 608
    23 com.apple.WebCore 0x956c3804 DOM::ElementImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 608
    24 com.apple.WebCore 0x956c3804 DOM::ElementImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 608
    25 com.apple.WebCore 0x956c3804 DOM::ElementImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 608
    26 com.apple.WebCore 0x956c3804 DOM::ElementImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 608
    27 com.apple.WebCore 0x956c3804 DOM::ElementImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 608
    28 com.apple.WebCore 0x956c3804 DOM::ElementImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 608
    29 com.apple.WebCore 0x956c3804 DOM::ElementImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 608
    30 com.apple.WebCore 0x956c3804 DOM::ElementImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 608
    31 com.apple.WebCore 0x956c3804 DOM::ElementImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 608
    32 com.apple.WebCore 0x956c3804 DOM::ElementImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 608
    33 com.apple.WebCore 0x956c3804 DOM::ElementImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 608
    34 com.apple.WebCore 0x956c3804 DOM::ElementImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 608
    35 com.apple.WebCore 0x9567f364 DOM::DocumentImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 2492
    36 com.apple.WebCore 0x956bf2e0 DOM::DocumentImpl::updateDocumentsRendering() + 84
    37 com.apple.WebCore 0x956bb2d8 KHTMLPart::executeScript(QString, int, DOM::Node const&, QString const&) + 176
    38 com.apple.WebCore 0x956bb0bc khtml::HTMLTokenizer::scriptExecution(QString const&, QString, int) + 448
    39 com.apple.WebCore 0x956bac08 khtml::HTMLTokenizer::scriptHandler() + 1300
    40 com.apple.WebCore 0x956af918 khtml::HTMLTokenizer::parseSpecial(khtml::TokenizerString&) + 548
    41 com.apple.WebCore 0x9568bf9c khtml::HTMLTokenizer::parseTag(khtml::TokenizerString&) + 6700
    42 com.apple.WebCore 0x95689d24 khtml::HTMLTokenizer::write(khtml::TokenizerString const&, bool) + 928
    43 com.apple.WebCore 0x956f0a98 khtml::HTMLTokenizer::notifyFinished(khtml::CachedObject*) + 536
    44 com.apple.WebCore 0x956f084c khtml::CachedScript::checkNotify() + 92
    45 com.apple.WebCore 0x956f07bc khtml::CachedScript::data(QBuffer&, bool) + 336
    46 com.apple.WebCore 0x956c0b4c khtml::Loader::slotFinished(KIO::Job*, NSData*) + 428
    47 com.apple.WebCore 0x958352b0 KWQSignal::callWithData(KIO::Job*, NSData*) const + 136
    48 com.apple.WebCore 0x956c0940 -[KWQResourceLoader finishJobAndHandle:] + 80
    49 com.apple.WebKit 0x9544dd08 -[WebSubresourceClient didFinishLoading] + 72
    50 com.apple.WebKit 0x9544cf90 -[WebBaseResourceHandleDelegate connectionDidFinishLoading:] + 48
    51 com.apple.Foundation 0x92910cdc -[NSURLConnection(NSURLConnectionInternal) _sendDidFinishLoadingCallback] + 188
    52 com.apple.Foundation 0x9290ef48 -[NSURLConnection(NSURLConnectionInternal) _sendCallbacks] + 556
    53 com.apple.Foundation 0x9290eca0 _sendCallbacks + 156
    54 com.apple.CoreFoundation 0x9075da68 __CFRunLoopDoSources0 + 384
    55 com.apple.CoreFoundation 0x9075cf98 __CFRunLoopRun + 452
    56 com.apple.CoreFoundation 0x9075ca18 CFRunLoopRunSpecific + 268
    57 com.apple.HIToolbox 0x931861e0 RunCurrentEventLoopInMode + 264
    58 com.apple.HIToolbox 0x931857ec ReceiveNextEventCommon + 244
    59 com.apple.HIToolbox 0x931856e0 BlockUntilNextEventMatchingListInMode + 96
    60 com.apple.AppKit 0x93663904 _DPSNextEvent + 384
    61 com.apple.AppKit 0x936635c8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    62 com.apple.Safari 0x00007910 0x1000 + 26896
    63 com.apple.AppKit 0x9365fb0c -[NSApplication run] + 472
    64 com.apple.AppKit 0x93750618 NSApplicationMain + 452
    65 com.apple.Safari 0x0000307c 0x1000 + 8316
    66 com.apple.Safari 0x00057758 0x1000 + 354136
    Thread 1:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075d114 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075ca18 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x928ed664 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x928ed59c -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x95437690 +[WebFileDatabase _syncLoop:] + 176
    7 com.apple.Foundation 0x928de6d4 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075d114 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075ca18 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92905b9c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    5 com.apple.Foundation 0x928de6d4 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075d114 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075ca18 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92906cdc +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x928de6d4 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9001f20c select + 12
    1 com.apple.CoreFoundation 0x9076f9a8 __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002b8a8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9003001c pthreadcondwait + 488
    2 com.apple.Foundation 0x928e5840 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Syndication 0x9a2cf9ec -[AsyncDB _run:] + 192
    4 com.apple.Foundation 0x928de6d4 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075d114 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075ca18 CFRunLoopRunSpecific + 268
    4 com.apple.audio.CoreAudio 0x914001dc HALRunLoop::OwnThread(void*) + 264
    5 com.apple.audio.CoreAudio 0x913fff7c CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x9002b8a8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9003001c pthreadcondwait + 488
    2 com.apple.Foundation 0x928e5840 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.AppKit 0x937004dc -[NSUIHeartBeat _heartBeatThread:] + 324
    4 com.apple.Foundation 0x928de6d4 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x000000009073fba4 srr1: 0x000000000200f030 vrsave: 0x0000000000000000
    cr: 0x22004422 xer: 0x0000000000000007 lr: 0x000000009073fb70 ctr: 0x000000009073fb60
    r0: 0x000000009073f5c0 r1: 0x00000000bfffbcd0 r2: 0x00000000a073fb70 r3: 0x0000000000000000
    r4: 0x0000000000000000 r5: 0x0000000000000000 r6: 0x00000000bfffc25c r7: 0x0000000000000001
    r8: 0x0000000000000003 r9: 0x0000000000000000 r10: 0x0000000008600e1f r11: 0x0000000000000486
    r12: 0x0000000000000000 r13: 0x0000000000000000 r14: 0x0000000000000001 r15: 0x00000000bfffccb8
    r16: 0x00000000bfffcc48 r17: 0x00000000bfffcc48 r18: 0x0000000001ac8800 r19: 0x00000000a56667e4
    r20: 0x00000000bfffc900 r21: 0x00000000bfffc25c r22: 0x0000000000000000 r23: 0x0000000000000001
    r24: 0x00000000a073a150 r25: 0x00000000bfffbd60 r26: 0x0000000008570fa0 r27: 0x0000000000000001
    r28: 0x00000000bfffbd60 r29: 0x0000000000000000 r30: 0x0000000000000001 r31: 0x000000009073fb70
    Binary Images Description:
    0x1000 - 0xdafff com.apple.Safari 2.0.2 (416.13) /Applications/Safari.app/Contents/MacOS/Safari
    0x417110 - 0x4171cb CFMPriv_Help PEF binary: CFMPriv_Help
    0x116b4c0 - 0x116b590 CFMPriv_CarbonSound PEF binary: CFMPriv_CarbonSound
    0x1198100 - 0x11981a3 CFMPriv_QuickTime PEF binary: CFMPriv_QuickTime
    0x11d60e0 - 0x11d6157 CFMPriv_System PEF binary: CFMPriv_System
    0x51e8000 - 0x51eafff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x5256e40 - 0x5256ef5 CFMPriv_DVComponentGlue PEF binary: CFMPriv_DVComponentGlue
    0x5259000 - 0x52590b2 CFMPriv_CoreFoundation PEF binary: CFMPriv_CoreFoundation
    0x525cc20 - 0x525cce2 CFMPriv_AE PEF binary: CFMPriv_AE
    0x5270e10 - 0x5270edd CFMPriv_SecurityHI PEF binary: CFMPriv_SecurityHI
    0x5280540 - 0x52805fe CFMPriv_Print PEF binary: CFMPriv_Print
    0x5284ac0 - 0x5284b8a CFMPriv_HIToolbox PEF binary: CFMPriv_HIToolbox
    0x588c000 - 0x58db3c7 CarbonLibpwpc PEF binary: CarbonLibpwpc
    0x58db3d0 - 0x58f36bd Apple;Carbon;Multimedia PEF binary: Apple;Carbon;Multimedia
    0x58f4c00 - 0x58f698b Apple;Carbon;Networking PEF binary: Apple;Carbon;Networking
    0x5901840 - 0x5901905 CFMPriv_ATS PEF binary: CFMPriv_ATS
    0x59019a0 - 0x5901a62 CFMPriv_QD PEF binary: CFMPriv_QD
    0x5908d40 - 0x5908e13 CFMPriv_CommonPanels PEF binary: CFMPriv_CommonPanels
    0x59095a0 - 0x5909676 CFMPriv_HTMLRendering PEF binary: CFMPriv_HTMLRendering
    0x590a970 - 0x590aa43 CFMPriv_ImageCapture PEF binary: CFMPriv_ImageCapture
    0x590aae0 - 0x590abb6 CFMPriv_OpenScripting PEF binary: CFMPriv_OpenScripting
    0x590ac60 - 0x590ad33 CFMPriv_CarbonCore PEF binary: CFMPriv_CarbonCore
    0x590ade0 - 0x590aeb3 CFMPriv_OSServices PEF binary: CFMPriv_OSServices
    0x590bad0 - 0x590bba7 CFMPriv_ColorSync PEF binary: CFMPriv_ColorSync
    0x590bda0 - 0x590be7a CFMPriv_HIServices PEF binary: CFMPriv_HIServices
    0x590bf20 - 0x590bff7 CFMPriv_PrintCore PEF binary: CFMPriv_PrintCore
    0x591d8f0 - 0x591d9d5 CFMPriv_NavigationServices PEF binary: CFMPriv_NavigationServices
    0x59265b0 - 0x5926692 CFMPriv_SpeechRecognition PEF binary: CFMPriv_SpeechRecognition
    0x5928be0 - 0x5928cc3 CFMPriv_FindByContent PEF binary: CFMPriv_FindByContent
    0x5929550 - 0x5929630 CFMPriv_LangAnalysis PEF binary: CFMPriv_LangAnalysis
    0x592bb20 - 0x592bc06 CFMPriv_LaunchServices PEF binary: CFMPriv_LaunchServices
    0x592c920 - 0x592ca09 CFMPriv_SpeechSynthesis PEF binary: CFMPriv_SpeechSynthesis
    0x5a05000 - 0x5b3de45 Flash Player PEF binary: Flash Player
    0x6415000 - 0x644efff com.apple.audio.SoundManager.Components 3.9.1 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x9cb6000 - 0x9cb9fff net.telestream.wmv.webplugin 1.0.2 /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.webplugin/Contents/MacOS/Flip4Mac WMV Plugin
    0x8fe00000 - 0x8fe54fff dyld 44.2 /usr/lib/dyld
    0x90000000 - 0x901b3fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x9020b000 - 0x9020ffff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x90211000 - 0x90264fff com.apple.CoreText 1.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90291000 - 0x90342fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90371000 - 0x906aefff com.apple.CoreGraphics 1.256.27 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9073a000 - 0x90813fff com.apple.CoreFoundation 6.4.4 (368.25) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9085c000 - 0x9085cfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9085e000 - 0x90960fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x909ba000 - 0x90a3efff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90a68000 - 0x90ad6fff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90aed000 - 0x90afffff libauto.dylib /usr/lib/libauto.dylib
    0x90b06000 - 0x90dddfff com.apple.CoreServices.CarbonCore 671.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90e43000 - 0x90ec3fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f0d000 - 0x90f4efff com.apple.CFNetwork 10.4.3 (129.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90f63000 - 0x90f7bfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x90f8b000 - 0x9100cfff com.apple.SearchKit 1.0.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91052000 - 0x9107bfff com.apple.Metadata 10.4.3 (121.20.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9108c000 - 0x9109afff libz.1.dylib /usr/lib/libz.1.dylib
    0x9109d000 - 0x9125ffff com.apple.security 4.2 (24844) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91362000 - 0x9136bfff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91372000 - 0x91399fff com.apple.SystemConfiguration 1.8.1 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x913ac000 - 0x913b4fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x913b9000 - 0x913d9fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x913df000 - 0x913e7fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913eb000 - 0x91469fff com.apple.audio.CoreAudio 3.0.1 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914a7000 - 0x914a7fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914a9000 - 0x914e1fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x914fc000 - 0x915c9fff com.apple.ColorSync 4.4.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9161e000 - 0x916b1fff com.apple.print.framework.PrintCore 4.3 (172.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x916f8000 - 0x917b5fff com.apple.QD 3.8.18 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917f3000 - 0x91851fff com.apple.HIServices 1.5.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9187f000 - 0x918a3fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918b7000 - 0x918dcfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x918ef000 - 0x91931fff com.apple.LaunchServices 10.4.5 (168) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9194d000 - 0x91961fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9196f000 - 0x919a8fff com.apple.ImageIO.framework 1.4.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x919bd000 - 0x91a85fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91ad3000 - 0x91ae8fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91aed000 - 0x91b09fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b0e000 - 0x91b7dfff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91b94000 - 0x91b98fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91b9a000 - 0x91bcbfff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91bcf000 - 0x91c12fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c19000 - 0x91c32fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c37000 - 0x91c3afff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c3c000 - 0x91c3cfff com.apple.Accelerate 1.1.1 (Accelerate 1.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c3e000 - 0x91d28fff com.apple.vImage 2.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d30000 - 0x91d4ffff com.apple.Accelerate.vecLib 3.1.1 (vecLib 3.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91dbb000 - 0x91e20fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e2a000 - 0x91ebcfff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91ed6000 - 0x92466fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x924ae000 - 0x927befff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x927eb000 - 0x92877fff com.apple.DesktopServices 1.3.1 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x928b9000 - 0x92ae3fff com.apple.Foundation 6.4.2 (567.21) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92c01000 - 0x92cdffff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92cff000 - 0x92dedfff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92dff000 - 0x92e1dfff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e28000 - 0x92e82fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92ea0000 - 0x92ea0fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92ea2000 - 0x92eb6fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92ece000 - 0x92edefff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92eea000 - 0x92efffff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92f11000 - 0x92f98fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92fac000 - 0x92fb7fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92fc1000 - 0x92feefff com.apple.openscripting 1.2.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93008000 - 0x93018fff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93024000 - 0x9308afff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x930bb000 - 0x9310dfff com.apple.NavigationServices 3.4.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93139000 - 0x93156fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93168000 - 0x93175fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9317e000 - 0x93490fff com.apple.HIToolbox 1.4.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x935dc000 - 0x935e8fff com.apple.opengl 1.4.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x935ed000 - 0x9360efff com.apple.DirectoryService.Framework 3.0 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93659000 - 0x93659fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9365b000 - 0x93c8efff com.apple.AppKit 6.4.3 (824.23) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9401a000 - 0x94089fff com.apple.CoreData 50 (77) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x940c2000 - 0x9418cfff com.apple.audio.toolbox.AudioToolbox 1.4.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x941e0000 - 0x941e0fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x941e2000 - 0x9435afff com.apple.QuartzCore 1.4.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x943a4000 - 0x943e1fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x943e9000 - 0x94439fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x944c8000 - 0x94500fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x94543000 - 0x9455ffff com.apple.securityfoundation 2.1 (24988) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94573000 - 0x945b7fff com.apple.securityinterface 2.1 (24981) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x945db000 - 0x945eafff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x945f2000 - 0x945fefff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94643000 - 0x9465bfff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94662000 - 0x948ccfff com.apple.QuickTime 7.0.3 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94aa3000 - 0x94bd1fff com.apple.AddressBook.framework 4.0.3 (483) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94c63000 - 0x94c72fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94c7a000 - 0x94ca7fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94cae000 - 0x94cbefff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94cc2000 - 0x94cf1fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94d01000 - 0x94d1efff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95435000 - 0x954c1fff com.apple.WebKit 416.12 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9551c000 - 0x95610fff com.apple.JavaScriptCore 416.14 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x95661000 - 0x95965fff com.apple.WebCore 416.14 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95aea000 - 0x95b13fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x95ca0000 - 0x95cd9fff com.apple.QTKit 7.0.3 /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x95d30000 - 0x95d62fff com.apple.PDFKit 1.0.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/PDFKit
    0x96265000 - 0x9627bfff libJapaneseConverter.dylib /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x9a132000 - 0x9a150fff com.apple.OpenTransport 2.0 /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0x9a1cb000 - 0x9a1ccfff com.apple.iokit.dvcomponentglue 1.7.5 /System/Library/Frameworks/DVComponentGlue.framework/Versions/A/DVComponentGlue
    0x9a2cd000 - 0x9a300fff com.apple.Syndication 1.0.2 (42) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9a31c000 - 0x9a32cfff com.apple.SyndicationUI 1.0.2 (42) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x9a609000 - 0x9a74dfff libCMaps.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCMaps.A.dylib
    Model: PowerBook5,7, BootROM 4.9.1f1, 1 processors, PowerPC G4 (1.2), 1.67 GHz, 1 GB
    Graphics: ATI Mobility Radeon 9700, ATY,RV360M11, AGP, 128 MB
    Memory Module: SODIMM0/J20STANDARD, 512 MB, DDR SDRAM, PC2700U-25330
    Memory Module: SODIMM1/J23REVERSED, 512 MB, DDR SDRAM, PC2700U-25330
    AirPort: AirPort Extreme, 404.2 (3.90.34.0.p16)
    Modem: LastDash, UCJ, V.92, 4.0, APPLE VERSION 2.6.6
    Bluetooth: Version 1.6.6f22, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    PCI Card: TXN,PCIXXXX-00, cardbus, PC Card
    Parallel ATA Device: MATSHITADVD-R UJ-845E,
    Parallel ATA Device: ST9100823A, 93.16 GB
    USB Device: External HDD, Western Digital, Up to 480 Mb/sec, 500 mA
    USB Device: Bluetooth HCI, , Up to 12 Mb/sec, 500 mA
    USB Device: Apple Internal Keyboard/Trackpad, Apple Computer, Up to 12 Mb/sec, 500 mA
    USB Device: PSC 1600 series, HP, Up to 12 Mb/sec, 500 mA
    FireWire Device: iPod, Apple Computer, Inc., Up to 400 Mb/sec

    Try emptying the Safari cache.  Press Command + Option + E on your keyboard. Quit and relaunch Safari to test.
    If that didn't help, try deleting the Cacle.db file.
    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following:
    ~/Library/Caches/com.apple.Safari/Cache.db
    Click Go then move the Cache.db file to the Trash.
    Quit and relaunch Safari. Try a new tab.
    If that didn't help, see if you can troubleshoot extensions before Safari crashes.
    Go to the menu bar, click Safari > Preferences then select the Extensions tab. If there are any installed, swtich to OFF, quit and relaunch Safari and try opening a new tab. If that helped, uninstall one extension at time, quit and relaunch Safari until you find the one tha'ts causing Safari to crash.
    If it's not an extension issue, might be a third party plugin...
    Back to Safari > Preferences > Security
    Deselect:  Allow all other plug-ins
    Quit and relaunch Safari, try a new tab. If that helped, follow the instructions for troubleshooting plug-ins here.

  • Firefox keep on crashing when I open Facebook page.

    Firefox keep on crashing when I open Facebook page and the crash report that appear right after is in greek (???!) I have an english version of Firefox.

    There it is!

  • After upgrading the OS to 10.6.8, my Skype clashes when open and iMail crashes when trying to attach Pages File !?? What happen?

    I just updated my mac book pro to OS 10.6.8 and now my skype crashes after launching and iMail crashes after trying to attached Pages file.
    The OS is very unstable !!! what happen ! this is first time i am experiencing this...so sad
    What can i do now ? How to trouble shoot ?
    thks

    Hi Michael,
    Thanks for your tips. After I run Disc Utility - Repair Permission...restart my machine and still have the same issues. What next step can i do now ?
    Will it be helpful if i send you the Clash reports here ?
    Thanks so much for taking your time to advise.

  • Itunes crash when browsing Music Store

    I wonder if anybody can help me. iTunes tends to crash when I'm browsing the music store. It very happens often. I tried trashing the preferences and doing the disk utility according to the guys from the genius bar, but it still persist. I appreciate any help on this. Thanks.

    Me too, but I'm afraid that I don't have anything worthwhile to add to the discussion. It's been going on for months and no one seems to want to acknowledge the problem. iTunes works fine as long as I don't try to send Apple any money, so I guess it's their loss except that it means I have to travel to a physical store to buy CDs on plastic optical media.

  • Itunes crashes when browsing films!

    Hello, I have a problem when browsing films in iTunes it always crashes now and gives me this error report . Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x54424032
    Thread 0 Crashed:
    0 QuickTimeH264.altivec 0x996a9bd8 JVTCompEncodeFrame + 47384
    1 ...ple.CoreServices.CarbonCore 0x90bdcf80 CallComponentFunctionCommon + 1076
    This also happens when going through the list of films when synchronizing with my iphone. This has only started happening recently and I have not made any changes to my films list. Also I use the current itunes version. Thank you for any support available

    anyone?

  • Why does InDesign crash when pasting from another InDesign document after upgrading to Mountain Lion?

    Model Name:          iMac
      Model Identifier:          iMac10,1
      Processor Name:          Intel Core 2 Duo
      Processor Speed:          3.06 GHz
      Number of Processors:          1
      Total Number of Cores:          2
      L2 Cache:          3 MB
      Memory:          12 GB
      Bus Speed:          1.07 GHz
      Boot ROM Version:          IM101.00CC.B00
      SMC Version (system):          1.52f9
    InDesign CS5 crashes when I paste text, a text frame or a graphic from another InDesign CS5 document. I upgraded from OSX 10.6.8 over the weekend.

    In-place upgrades are always a crapshoot. Try trashing the prefs (see Replace Your Preferences), but most likely you'll have to reinstall ID at the very least. YOu may have to do a clean install on the OS as well.

  • Elements 10 Crashes when browsing to save a project

    Hi:
    Looking for a solution as to why Elements 10 would crash when attempting to create a new project. When I click on the browse button to decide where to save the project - software crashes with this event log...
    Any advice would be greatly appreciated...
    Problem signature:
    Problem Event Name: APPCRASH
    Application Name: Adobe Premiere Elements.exe
    Application Version: 10.0.0.0
    Application Timestamp: 4e790d3f
    Fault Module Name: dvacore.dll
    Fault Module Version: 8.0.0.0
    Fault Module Timestamp: 4e78ed93
    Exception Code: c0000005
    Exception Offset: 0000150e
    OS Version: 6.1.7601.2.1.0.256.48
    Locale ID: 4105
    Additional Information 1: 0a9e
    Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
    Additional Information 3: 0a9e
    Additional Information 4: 0a9e372d3b4ad19135b953a78882e789

    More information:
    Windows 7 64-bit
    W3520 @ 2.67Ghz
    12GB Memory
    Nvidia Quaddro 4000
    And it is Design Premium that is breaking Premiere Elements.  I've tried with and without admin permissions and it stills crashes.
    Error Message:
    Faulting application name: Adobe Premiere Elements.exe, version: 10.0.0.0, time stamp: 0x4e791009
    Faulting module name: dvacore.dll, version: 8.0.0.0, time stamp: 0x4e78f08f
    Exception code: 0xc0000005
    Fault offset: 0x000000000000154e
    Faulting process id: 0xfd8
    Faulting application start time: 0x01cd320fcf560a5b
    Faulting application path: C:\Program Files\Adobe\Adobe Premiere Elements 10\Adobe Premiere Elements.exe
    Faulting module path: C:\Program Files\Adobe\Adobe Premiere Elements 10\dvacore.dll
    Report Id: 1de76f57-9e03-11e1-ba68-e8393551c8be

  • Crash when Browsing JPEGs after Changing Browser Thumbnal Size

    I am getting repeated crashes in Aperture when browsing a 3500 JPEG file project when I change the browser thumbnail size while browsing. The crash usually occurs after the thumbnail size has been changed and I am scrolling in the browser window. Has anyone experienced this crash? are there any work arounds?
    G5 Dual 2.5 GHz   Mac OS X (10.4.3)  

    Unfortunately, eradicating the current Nvidida driver and running a different one has not solvede the issue.  Although the Windows RunTime error now stays up long enough to Screen Cap:
    Todd,
    We are aware of the specs, but due to circumstances beyond our control, we are stuck with either trying to get the programs running again in XP64, or switching editing packages.  We would obviously like to avoid switching.   Two other designers are running the programs fine on the same set up, and as I mentoined before, we were also running fine until recently.  Since we didn't change any drivers or download any codecs prior to the onset of these issues, I'm not sure what else to do.

  • Imac Keeps Crashing When Browsing the net (often when scrolling)

    Hello,
    I bought a refurished imac from Dixons about a fortnight ago. I was provided with no discs so I can't do a hardware test.
    In the last few days my imac has started crashing. It has always crashed when I'm browsing the internet and usually happens when I'm scrolling. At first i thought it was Google Chrome so I switched to Safari but the same has continued to happen. The screen usually goes grey and I a message telling me to power off my imac and restart.
    I keep getting a similar log to this:
    Interval Since Last Panic Report:  214011 sec
    Panics Since Last Report:          4
    Anonymous UUID:                    7F653199-3613-414C-AF52-06D9BE5428FB
    Mon Jul 16 20:44:14 2012
    panic(cpu 3 caller 0xffffff80002c266d): Kernel trap at 0xffffff80002901d0, type 13=general protection, registers:
    CR0: 0x0000000080010033, CR2: 0x000000011fcd3000, CR3: 0x000000003e987014, CR4: 0x00000000000606e0
    RAX: 0x0000000000000001, RBX: 0x0000000000391000, RCX: 0xffffff801eae0900, RDX: 0x00000000003ed9f0
    RSP: 0xffffff8162173da0, RBP: 0xffffff8162173dc0, RSI: 0x00000000283baec0, RDI: 0xffffff8006b9fcf8
    R8:  0xffffff8162173f08, R9:  0xffffff8162173ef8, R10: 0x000000011fd6d000, R11: 0x0000000000000000
    R12: 0xffffff8006b9fcf8, R13: 0x0000000000000000, R14: 0xffffff80230c0640, R15: 0xfbffff800ad39598
    RFL: 0x0000000000010282, RIP: 0xffffff80002901d0, CS:  0x0000000000000008, SS:  0x0000000000000000
    CR2: 0x000000011fcd3000, Error code: 0x0000000000000000, Faulting CPU: 0x3
    Backtrace (CPU 3), Frame : Return Address
    0xffffff8162173a60 : 0xffffff8000220702
    0xffffff8162173ae0 : 0xffffff80002c266d
    0xffffff8162173c80 : 0xffffff80002d7a1d
    0xffffff8162173ca0 : 0xffffff80002901d0
    0xffffff8162173dc0 : 0xffffff800026c9a3
    0xffffff8162173f40 : 0xffffff80002c1f0b
    0xffffff8162173fb0 : 0xffffff80002d7941
    BSD process name corresponding to current thread: Safari
    Mac OS version:
    11D50
    Kernel version:
    Darwin Kernel Version 11.3.0: Thu Jan 12 18:47:41 PST 2012; root:xnu-1699.24.23~1/RELEASE_X86_64
    Kernel UUID: 7B6546C7-70E8-3ED8-A6C3-C927E4D3D0D6
    System model name: iMac12,1 (Mac-942B5BF58194151B)
    System uptime in nanoseconds: 9687365751685
    last loaded kext at 20147552645: com.apple.driver.AppleBluetoothHIDKeyboard          152.3 (addr 0xffffff7f81c5a000, size 12288)
    last unloaded kext at 250730616637: com.apple.driver.AppleUSBUHCI          4.4.5 (addr 0xffffff7f80a3f000, size 65536)
    loaded kexts:
    com.avast.PacketForwarder          1.3
    com.avast.AvastFileShield          1.0.1
    com.apple.driver.AppleBluetoothMultitouch          66.6
    com.apple.driver.AppleHWSensor          1.9.4d0
    com.apple.driver.AudioAUUC          1.59
    com.apple.driver.AGPM          100.12.42
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleHDA          2.1.7f9
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AppleMCCSControl          1.0.26
    com.apple.driver.AppleMikeyDriver          2.1.7f9
    com.apple.kext.ATIFramebuffer          7.1.8
    com.apple.filesystems.autofs          3.0
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.driver.AppleSMCLMU          2.0.1d2
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.2.2
    com.apple.ATIRadeonX3000          7.1.8
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.5d4
    com.apple.driver.AppleBacklight          170.1.9
    com.apple.driver.AppleLPC          1.5.3
    com.apple.driver.AppleIntelHD3000Graphics          7.1.8
    com.apple.driver.AppleIRController          312
    com.apple.iokit.SCSITaskUserClient          3.0.3
    com.apple.driver.AppleUSBCardReader          3.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          33
    com.apple.iokit.IOAHCIBlockStorage          2.0.1
    com.apple.driver.AppleUSBHub          4.5.0
    com.apple.driver.AppleFWOHCI          4.8.9
    com.apple.iokit.AppleBCM5701Ethernet          3.0.8b2
    com.apple.driver.AppleEFINVRAM          1.5.0
    com.apple.driver.AirPort.Atheros40          502.60.2
    com.apple.driver.AppleAHCIPort          2.2.0
    com.apple.driver.AppleUSBEHCI          4.5.8
    com.apple.driver.AppleACPIButtons          1.4
    com.apple.driver.AppleRTC          1.4
    com.apple.driver.AppleHPET          1.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.4
    com.apple.driver.AppleAPIC          1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient          167.3.0
    com.apple.nke.applicationfirewall          3.2.30
    com.apple.security.quarantine          1.1
    com.apple.driver.AppleIntelCPUPowerManagement          167.3.0
    com.apple.driver.AppleBluetoothHIDKeyboard          152.3
    com.apple.driver.AppleHIDKeyboard          152.3
    com.apple.driver.AppleMultitouchDriver          220.62.1
    com.apple.driver.IOBluetoothHIDDriver          4.0.3f12
    com.apple.driver.AppleAVBAudio          1.0.0d11
    com.apple.driver.DspFuncLib          2.1.7f9
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.kext.triggers          1.0
    com.apple.iokit.IOSurface          80.0
    com.apple.iokit.IOFireWireIP          2.2.4
    com.apple.iokit.IOBluetoothSerialManager          4.0.3f12
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.iokit.IOAVBFamily          1.0.0d22
    com.apple.driver.AppleHDAController          2.1.7f9
    com.apple.iokit.IOHDAFamily          2.1.7f9
    com.apple.iokit.IOAudioFamily          1.8.6fc6
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.ApplePolicyControl          3.0.16
    com.apple.driver.AppleSMC          3.1.1d8
    com.apple.driver.IOPlatformPluginFamily          4.7.5d4
    com.apple.driver.AppleGraphicsControl          3.0.16
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleBacklightExpert          1.0.3
    com.apple.driver.AppleThunderboltEDMSink          1.1.3
    com.apple.driver.AppleThunderboltEDMSource          1.1.3
    com.apple.kext.ATI6000Controller          7.1.8
    com.apple.kext.ATISupport          7.1.8
    com.apple.iokit.IONDRVSupport          2.3.2
    com.apple.driver.AppleIntelSNBGraphicsFB          7.1.8
    com.apple.iokit.IOGraphicsFamily          2.3.2
    com.apple.driver.AppleThunderboltDPOutAdapter          1.5.9
    com.apple.driver.AppleThunderboltDPInAdapter          1.5.9
    com.apple.driver.AppleThunderboltDPAdapterFamily          1.5.9
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.2.1
    com.apple.driver.BroadcomUSBBluetoothHCIController          4.0.3f12
    com.apple.driver.AppleUSBBluetoothHCIController          4.0.3f12
    com.apple.iokit.IOBluetoothFamily          4.0.3f12
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.0.3
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.7
    com.apple.iokit.IOCDStorageFamily          1.7
    com.apple.iokit.IOAHCISerialATAPI          2.0.1
    com.apple.iokit.IOUSBHIDDriver          4.4.5
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.0.3
    com.apple.iokit.IOUSBMassStorageClass          3.0.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.0.3
    com.apple.driver.AppleUSBMergeNub          4.5.3
    com.apple.driver.AppleUSBComposite          4.5.8
    com.apple.driver.XsanFilter          403
    com.apple.driver.AppleThunderboltNHI          1.3.2
    com.apple.iokit.IOThunderboltFamily          1.7.4
    com.apple.iokit.IOUSBUserClient          4.5.8
    com.apple.iokit.IOFireWireFamily          4.4.5
    com.apple.iokit.IOEthernetAVBController          1.0.0d5
    com.apple.iokit.IO80211Family          412.2
    com.apple.iokit.IONetworkingFamily          2.0
    com.apple.iokit.IOAHCIFamily          2.0.7
    com.apple.iokit.IOUSBFamily          4.5.8
    com.apple.driver.AppleEFIRuntime          1.5.0
    com.apple.iokit.IOHIDFamily          1.7.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          177.3
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          331.3
    com.apple.iokit.IOStorageFamily          1.7
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.4
    com.apple.iokit.IOPCIFamily          2.6.8
    com.apple.iokit.IOACPIFamily          1.4
    Model: iMac12,1, BootROM IM121.0047.B1D, 4 processors, Intel Core i5, 2.7 GHz, 12 GB, SMC 1.71f22
    Graphics: AMD Radeon HD 6770M, AMD Radeon HD 6770M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x02FE, 0x45424A3230554638424353302D444A2D4620
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x02FE, 0x45424A3230554638424353302D444A2D4620
    Memory Module: BANK 0/DIMM1, 4 GB, DDR3, 1333 MHz, 0x859B, 0x435435313236344243313333392E4D313646
    Memory Module: BANK 1/DIMM1, 4 GB, DDR3, 1333 MHz, 0x859B, 0x435435313236344243313333392E4D313646
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.61.4-P2P
    Bluetooth: Version 4.0.3f12, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: ST31000528AS, 1 TB
    Serial ATA Device: HL-DT-STDVDRW  GA32N
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x850b, 0xfa200000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 5
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 4
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfd110000 / 3
    What could be causing these crashes?
    Thanks for your help.

    com.avast.PacketForwarder          1.3
    com.avast.AvastFileShield          1.0.1
    As a first step I'd suspect Avast - try fully uninstalling it, you don't need it.
    You could try a 'safe boot' which should boot the Mac without loading the non-Apple stuff. Test web-browsing to see if the kernel panics go away.
    To Safe Boot: restart holding down the shift key until the grey progress bar appears. The Mac should boot in 'stripped down mode' allowing you to run a few tests web-browsing. Restart as normal from the Apple menu when you're done.
    If the Mac came with no disks you are probably running OS X 10.7.x Lion. You can check/repair your disk by booting while holding down Command+R which takes you to Lion's recovery mode. You can run Disk Utility from there to verify/repair your disk should you ever need to.
    If you feel you want some anti-virus software the one that is most often recommended on these forums as being trouble-free on Macs is the free/donationware clamXav: www.clamxav.com

  • Safari Crashes when browsing after update 1.1.1?

    My Iphone has been randomly crashing safari when browsing/loading webpages. is anyone else experiencing this problem? i havent yet tried to restore but have turned the device off for a period of 10 minutes and the problem remains. is there a fix besides doing a restore?

    I have uninstalled a Wacom Bamboo plug-in and the problem has stopped.

Maybe you are looking for