Firefox 17 randomly crashes and produces an unusable dump file

Firefox has been crashing on me several times a day. As you can see from the list of installed plugins I've been trying to switch on and off extensions without a great deal of joy, as the crashes are unpredictable - can be an hour or two or can be 5 minutes.
Moreover, when it crashes, it pretty consistently produces an unusable dump file:
Here are the latest ones:
<pre><nowiki>bp-354aec94-d7be-46e1-8f60-cf1832121230
bp-9509a369-bd98-4036-ab76-761d42121229
bp-643f0ddb-ea70-44af-8b51-b5c782121229
bp-dd0008bc-f499-49c1-9e58-e73472121229
bp-a5b5f4bc-6065-440c-bebe-f049a2121229
bp-e2c72fda-55a5-4119-aca1-01b022121229</nowiki></pre>
And they all say:
Firefox 17.0.1 Crash Report [@ EMPTY: no crashing thread identified; corrupt dump ]
This is a brand new install of firefox on a brand new pc but I've copied the profile from the old machine. And much as I'd enjoy recreating a profile from scratch, unless there's a way of dumping your saved passwords, it's going to be /very/ tedious.

Try to disable hardware acceleration in Firefox.
*Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
*https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
*https://hacks.mozilla.org/2010/09/hardware-acceleration/
See also:
*http://kb.mozillazine.org/Firefox_crashes
*https://support.mozilla.org/kb/Firefox+crashes

Similar Messages

  • My phone randomly crashed and it won't turn back on. Why?

    My iPhone 4 is running on 4.2 software, I believe. It just randomly crashed and after about 30 minutes it hasn't responded. I've had this happen twice before, the first time, I ultimately had to get a new phone. The previous time, it just came back to normal after 10 minutes. What do I do now?

    Hard Reset.
    - Hold down the Home Button (Circle button with White Square in it)
    - Wait for the 'Slide to Unlock' screen pops up
    Turn your phone off once a week for about 10 minutes

  • Camera video preview - Random crashes and green screens

    Hello everyone,
    I am currently working on a Windows Phone 8.1 app and I need to preview video from the phone's back camera. For quite some time I've been struggling with random crashes and green screens. When these green screens appear, all camera apps become affected and
    the device needs to be restarted. Occasionally the phone freezes and only recovers after battery removal. I test the app on my Lumia 620.
    After some web search, I found references to the same problem by many users/developers of different apps. I'm really frustrated as I've tried many possible solutions with no avail.
    Here is part of my code:
    //in App.xaml.cs:
    MediaCaptureInitializationSettings settings;
    public static MediaCapture captureMgr;
    public static bool UnableToInitializeCamera = false;
    public async Task InitializeVideoCapture()
    DeviceInformation backWebcam = await GetCameraDeviceInfoAsync(Windows.Devices.Enumeration.Panel.Back);
    if(captureMgr!=null) captureMgr.Dispose();
    captureMgr = new MediaCapture();
    settings = new MediaCaptureInitializationSettings();
    settings.StreamingCaptureMode = StreamingCaptureMode.Video;
    settings.PhotoCaptureSource = PhotoCaptureSource.VideoPreview;
    settings.AudioDeviceId = "";
    if (backWebcam != null)
    settings.VideoDeviceId = backWebcam.Id;
    else
    var _messageDialog = new MessageDialog("Back panel camera not found");
    _messageDialog.Commands.Add(new UICommand("OK"));
    _messageDialog.ShowAsync();
    try
    await captureMgr.InitializeAsync(settings);
    captureMgr.SetPreviewRotation(VideoRotation.Clockwise90Degrees);
    UnableToInitializeCamera = false;
    catch
    UnableToInitializeCamera = true;
    Debug.WriteLine("HANDLED EXCEPTION: camera could not be initialized");
    var _messageDialog = new MessageDialog("Unable to initialize camera");
    _messageDialog.Commands.Add(new UICommand("OK"));
    _messageDialog.ShowAsync();
    protected override async void OnLaunched(LaunchActivatedEventArgs e)
    //.... other app initialization code
    await InitializeVideoCapture();
    Window.Current.Activate();
    private async void OnResuming(object sender, object e)
    AppIsResuming = true;
    FinishedCameraInitialize = false;
    await Task.Delay(TimeSpan.FromSeconds(0.5));//this makes crashes less frequent
    await InitializeVideoCapture();
    FinishedCameraInitialize = true;
    if(WasPreviewingCamera)
    WasPreviewingCamera = false; //the following line allows time for SetupPage._captureElement to be assigned before video preview starts while (!SetupPage.CaptureElementSourceAssigned) await Task.Delay(TimeSpan.FromMilliseconds(1));
    SetupPage.CaptureElementSourceAssigned = false;
    try
    Debug.WriteLine("trying to restart video preview");
    await captureMgr.StartPreviewAsync();
    SetupPage.PreviewingCamera = true;
    catch
    Debug.WriteLine("HANDLED EXCEPTION: unable to start previewing");
    SetupPage.PreviewingCamera = false;
    GC.Collect();
    AppIsResuming = false;
    private async void OnSuspending(object sender, SuspendingEventArgs e)
    var deferral = e.SuspendingOperation.GetDeferral();
    while (AppIsResuming) await Task.Delay(TimeSpan.FromMilliseconds(1));//prevents crash when app is suspended right after it is resumed
    await CleanupCaptureResources();
    TimeOfLastSuspend = DateTime.Now;
    FinishedCameraInitialize = false;
    GC.Collect();
    deferral.Complete();
    public async Task CleanupCaptureResources()
    if (SetupPage.PreviewingCamera)
    await captureMgr.StopPreviewAsync();
    WasPreviewingCamera = true;
    SetupPage.PreviewingCamera = false;
    else WasPreviewingCamera = false;
    if (captureMgr != null) captureMgr.Dispose();
    //in SetupPage.xaml.cs
    void OnSuspending(object sender, Windows.ApplicationModel.SuspendingEventArgs e)
    var deferral = e.SuspendingOperation.GetDeferral();
    _captureElement.Source = null;
    CaptureElementSourceAssigned = false;
    GC.Collect();
    deferral.Complete();
    private async void OnResuming(object sender, object e)
    ProgressRing2.Visibility = Visibility.Visible;
    ProgressRing2.IsActive = true;
    while (!App.FinishedCameraInitialize) await Task.Delay(TimeSpan.FromMilliseconds(1));
    App.FinishedCameraInitialize = false;
    captureElement.Source = App.captureMgr;
    CaptureElementSourceAssigned = true;
    GC.Collect();
    ProgressRing2.Visibility = Visibility.Collapsed;
    ProgressRing2.IsActive = false;
    Any help towards a solution will be greatly appreciated.
    Thank you

    I will also advice that you start by following the
    Windows Store app sample.
    Is this a Windows Phone app?
    The crash/green screen only manifests itself when I suspend my app and switch to the default camera app (could be any other camera app perhaps). It happens roughly 1 out of 8 times. That's why I posted the suspension and resuming handlers, which I wrote
    according to the msdn instructions.
    I found
    this page with a sample that demonstrates the MediaCapture API for Windows Phone. Some developers have reported problems similar as mine. Has Microsoft dealt with this issue?
    I've spent quite a few weeks trying to investigate this problem, without actually knowing if it is my code that needs to be debugged. That's why I'm asking if other developers are facing similar problems.
    Thank you
    Edit: It seems that the crash/green screen can appear when suspending/switching to any app (regardless if it uses the camera or not). Also, all works fine when the app is running on the debugger.

  • MacBook Pro 13-inch 2012 Yosemite - Random Crashes and restarts

    Good afternoon,
    My Macbook Pro 2012 running Yosemite randomly crashes and restarts itself with no pattern or discernible cause.  It has previously gone into the Apple Store several times for fault finding and come back with nothing that they could find. 
    Attached to the MacBook are a large monitor and a Evoluent upright USB mouse. 
    I typically run LibreOffice, iwork numbers and Adobe Reader, in addition to emails, calendar and safari
    MacBook Specs:
    - Intel HD Graphics 4000 1024 MB
    - 4 GB 1600 MHz DDR3
    - 2.5 GHz Intel Core i5
    The latest crash report is below.  If anyone has any similar experience, advice or fixes it would be most appreciated. 
    Thanks,  Dave
    Anonymous UUID:       1E7E6C3A-E6C3-92F7-7519-CAC5E2191747
    Mon Mar  2 12:58:30 2015
    *** Panic Report ***
    panic(cpu 2 caller 0xffffff8026170d0d): "a freed zone element has been modified in zone kalloc.1024: expected 0xffffff803d762000 but found 0xffffff8000000004, bits changed 0x3d762004, at offset 0 of 1024 in element 0xffffff803c6d1000, cookies 0x3f0011d5cfbffc4e 0x53521653487aa65"@/SourceCache/xnu/xnu-2782.10.72/osfmk/kern/zalloc.c:496
    Backtrace (CPU 2), Frame : Return Address
    0xffffff80bffe3df0 : 0xffffff802612fe41
    0xffffff80bffe3e70 : 0xffffff8026170d0d
    0xffffff80bffe3ee0 : 0xffffff802616d7b1
    0xffffff80bffe3f90 : 0xffffff80261cc899
    0xffffff80bffe3fb0 : 0xffffff8026214dd7
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    14C109
    Kernel version:
    Darwin Kernel Version 14.1.0: Mon Dec 22 23:10:38 PST 2014; root:xnu-2782.10.72~2/RELEASE_X86_64
    Kernel UUID: DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5
    Kernel slide:     0x0000000025e00000
    Kernel text base: 0xffffff8026000000
    __HIB  text base: 0xffffff8025f00000
    System model name: MacBookPro9,2 (Mac-6F01561E16C75D06)
    System uptime in nanoseconds: 16255983705917
    last loaded kext at 10182456763629: com.apple.driver.AppleUSBCDC 4.2.2b5 (addr 0xffffff7fa892a000, size 20480)
    last unloaded kext at 10242562627083: com.apple.driver.AppleUSBCDC 4.2.2b5 (addr 0xffffff7fa892a000, size 16384)
    loaded kexts:
    com.apple.filesystems.smbfs 3.0.0
    com.apple.filesystems.afpfs 11.0
    com.apple.nke.asp-tcp 8.0.0
    com.apple.driver.AppleUSBDisplays 372.1
    com.apple.driver.AudioAUUC 1.70
    com.apple.driver.AGPM 100.15.5
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.filesystems.autofs 3.0
    com.apple.iokit.IOBluetoothSerialManager 4.3.2f6
    com.apple.driver.AppleOSXWatchdog 1
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleUpstreamUserClient 3.6.1
    com.apple.driver.AppleHDA 269.25
    com.apple.iokit.IOUserEthernet 1.0.1
    com.apple.driver.AppleMikeyDriver 269.25
    com.apple.driver.AppleBacklight 170.5.0
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleHV 1
    com.apple.driver.AppleSMCPDRC 1.0.0
    com.apple.driver.AppleThunderboltIP 2.0.2
    com.apple.driver.AppleMCCSControl 1.2.11
    com.apple.driver.AppleSMCLMU 2.0.7d0
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.3.2f6
    com.apple.driver.AppleIntelHD4000Graphics 10.0.2
    com.apple.driver.AppleIntelFramebufferCapri 10.0.2
    com.apple.driver.AppleLPC 1.7.3
    com.apple.driver.SMCMotionSensor 3.0.4d1
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleIRController 327.5
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.iokit.SCSITaskUserClient 3.7.3
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.7.0
    com.apple.iokit.AppleBCM5701Ethernet 10.1.3
    com.apple.driver.AppleSDXC 1.6.5
    com.apple.driver.AirPort.Brcm4360 910.26.12
    com.apple.driver.AppleUSBHub 705.4.2
    com.apple.driver.AppleFWOHCI 5.5.2
    com.apple.driver.AppleAHCIPort 3.1.0
    com.apple.driver.AppleUSBEHCI 705.4.14
    com.apple.driver.AppleUSBXHCI 710.4.11
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleACPIButtons 3.1
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 3.1
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 218.0.0
    com.apple.nke.applicationfirewall 161
    com.apple.security.quarantine 3
    com.apple.security.TMSafetyNet 8
    com.apple.driver.AppleIntelCPUPowerManagement 218.0.0
    com.apple.security.SecureRemotePassword 1.0
    com.apple.iokit.IOUSBHIDDriverPM 710.4.7
    com.apple.driver.AppleUSBAudio 295.23
    com.apple.driver.AppleThunderboltDPOutAdapter 4.0.6
    com.apple.driver.AppleThunderboltPCIUpAdapter 2.0.2
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSerialFamily 11
    com.apple.driver.DspFuncLib 269.25
    com.apple.kext.OSvKernDSPLib 1.15
    com.apple.iokit.IOFireWireIP 2.2.6
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.iokit.IOUSBUserClient 705.4.0
    com.apple.driver.AppleHDAController 269.25
    com.apple.iokit.IOHDAFamily 269.25
    com.apple.iokit.IOAudioFamily 203.3
    com.apple.vecLib.kext 1.2.0
    com.apple.driver.AppleSMBusController 1.0.13d1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.3.2f6
    com.apple.iokit.IOBluetoothFamily 4.3.2f6
    com.apple.iokit.IOSurface 97
    com.apple.iokit.IOAcceleratorFamily2 156.6
    com.apple.AppleGraphicsDeviceControl 3.8.6
    com.apple.driver.AppleBacklightExpert 1.1.0
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.driver.IOPlatformPluginFamily 5.8.1d38
    com.apple.driver.AppleSMC 3.1.9
    com.apple.driver.AppleUSBMultitouch 245.2
    com.apple.iokit.IOUSBHIDDriver 705.4.0
    com.apple.driver.AppleUSBMergeNub 705.4.0
    com.apple.driver.AppleUSBComposite 705.4.9
    com.apple.driver.CoreStorage 471.10.6
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.7.3
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.driver.AppleThunderboltDPInAdapter 4.0.6
    com.apple.driver.AppleThunderboltDPAdapterFamily 4.0.6
    com.apple.driver.AppleThunderboltPCIDownAdapter 2.0.2
    com.apple.iokit.IOAHCISerialATAPI 2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.7.3
    com.apple.iokit.IOEthernetAVBController 1.0.3b3
    com.apple.driver.AppleThunderboltNHI 3.1.7
    com.apple.iokit.IOThunderboltFamily 4.2.1
    com.apple.iokit.IO80211Family 710.55
    com.apple.driver.mDNSOffloadUserClient 1.0.1b8
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOFireWireFamily 4.5.6
    com.apple.iokit.IOAHCIFamily 2.7.5
    com.apple.iokit.IOUSBFamily 710.4.14
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 300.0
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.AppleMobileFileIntegrity 1.0.5
    com.apple.driver.AppleCredentialManager 1.0
    com.apple.driver.DiskImages 396
    com.apple.iokit.IOStorageFamily 2.0
    com.apple.iokit.IOReportFamily 31
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 3.1
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.Libm 1
    com.apple.kec.pthread 1
    com.apple.kec.corecrypto 1.0

    Good afternoon,
    My Macbook Pro 2012 running Yosemite randomly crashes and restarts itself with no pattern or discernible cause.  It has previously gone into the Apple Store several times for fault finding and come back with nothing that they could find. 
    Attached to the MacBook are a large monitor and a Evoluent upright USB mouse. 
    I typically run LibreOffice, iwork numbers and Adobe Reader, in addition to emails, calendar and safari
    MacBook Specs:
    - Intel HD Graphics 4000 1024 MB
    - 4 GB 1600 MHz DDR3
    - 2.5 GHz Intel Core i5
    The latest crash report is below.  If anyone has any similar experience, advice or fixes it would be most appreciated. 
    Thanks,  Dave
    Anonymous UUID:       1E7E6C3A-E6C3-92F7-7519-CAC5E2191747
    Mon Mar  2 12:58:30 2015
    *** Panic Report ***
    panic(cpu 2 caller 0xffffff8026170d0d): "a freed zone element has been modified in zone kalloc.1024: expected 0xffffff803d762000 but found 0xffffff8000000004, bits changed 0x3d762004, at offset 0 of 1024 in element 0xffffff803c6d1000, cookies 0x3f0011d5cfbffc4e 0x53521653487aa65"@/SourceCache/xnu/xnu-2782.10.72/osfmk/kern/zalloc.c:496
    Backtrace (CPU 2), Frame : Return Address
    0xffffff80bffe3df0 : 0xffffff802612fe41
    0xffffff80bffe3e70 : 0xffffff8026170d0d
    0xffffff80bffe3ee0 : 0xffffff802616d7b1
    0xffffff80bffe3f90 : 0xffffff80261cc899
    0xffffff80bffe3fb0 : 0xffffff8026214dd7
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    14C109
    Kernel version:
    Darwin Kernel Version 14.1.0: Mon Dec 22 23:10:38 PST 2014; root:xnu-2782.10.72~2/RELEASE_X86_64
    Kernel UUID: DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5
    Kernel slide:     0x0000000025e00000
    Kernel text base: 0xffffff8026000000
    __HIB  text base: 0xffffff8025f00000
    System model name: MacBookPro9,2 (Mac-6F01561E16C75D06)
    System uptime in nanoseconds: 16255983705917
    last loaded kext at 10182456763629: com.apple.driver.AppleUSBCDC 4.2.2b5 (addr 0xffffff7fa892a000, size 20480)
    last unloaded kext at 10242562627083: com.apple.driver.AppleUSBCDC 4.2.2b5 (addr 0xffffff7fa892a000, size 16384)
    loaded kexts:
    com.apple.filesystems.smbfs 3.0.0
    com.apple.filesystems.afpfs 11.0
    com.apple.nke.asp-tcp 8.0.0
    com.apple.driver.AppleUSBDisplays 372.1
    com.apple.driver.AudioAUUC 1.70
    com.apple.driver.AGPM 100.15.5
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.filesystems.autofs 3.0
    com.apple.iokit.IOBluetoothSerialManager 4.3.2f6
    com.apple.driver.AppleOSXWatchdog 1
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleUpstreamUserClient 3.6.1
    com.apple.driver.AppleHDA 269.25
    com.apple.iokit.IOUserEthernet 1.0.1
    com.apple.driver.AppleMikeyDriver 269.25
    com.apple.driver.AppleBacklight 170.5.0
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleHV 1
    com.apple.driver.AppleSMCPDRC 1.0.0
    com.apple.driver.AppleThunderboltIP 2.0.2
    com.apple.driver.AppleMCCSControl 1.2.11
    com.apple.driver.AppleSMCLMU 2.0.7d0
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.3.2f6
    com.apple.driver.AppleIntelHD4000Graphics 10.0.2
    com.apple.driver.AppleIntelFramebufferCapri 10.0.2
    com.apple.driver.AppleLPC 1.7.3
    com.apple.driver.SMCMotionSensor 3.0.4d1
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleIRController 327.5
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.iokit.SCSITaskUserClient 3.7.3
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.7.0
    com.apple.iokit.AppleBCM5701Ethernet 10.1.3
    com.apple.driver.AppleSDXC 1.6.5
    com.apple.driver.AirPort.Brcm4360 910.26.12
    com.apple.driver.AppleUSBHub 705.4.2
    com.apple.driver.AppleFWOHCI 5.5.2
    com.apple.driver.AppleAHCIPort 3.1.0
    com.apple.driver.AppleUSBEHCI 705.4.14
    com.apple.driver.AppleUSBXHCI 710.4.11
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleACPIButtons 3.1
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 3.1
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 218.0.0
    com.apple.nke.applicationfirewall 161
    com.apple.security.quarantine 3
    com.apple.security.TMSafetyNet 8
    com.apple.driver.AppleIntelCPUPowerManagement 218.0.0
    com.apple.security.SecureRemotePassword 1.0
    com.apple.iokit.IOUSBHIDDriverPM 710.4.7
    com.apple.driver.AppleUSBAudio 295.23
    com.apple.driver.AppleThunderboltDPOutAdapter 4.0.6
    com.apple.driver.AppleThunderboltPCIUpAdapter 2.0.2
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSerialFamily 11
    com.apple.driver.DspFuncLib 269.25
    com.apple.kext.OSvKernDSPLib 1.15
    com.apple.iokit.IOFireWireIP 2.2.6
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.iokit.IOUSBUserClient 705.4.0
    com.apple.driver.AppleHDAController 269.25
    com.apple.iokit.IOHDAFamily 269.25
    com.apple.iokit.IOAudioFamily 203.3
    com.apple.vecLib.kext 1.2.0
    com.apple.driver.AppleSMBusController 1.0.13d1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.3.2f6
    com.apple.iokit.IOBluetoothFamily 4.3.2f6
    com.apple.iokit.IOSurface 97
    com.apple.iokit.IOAcceleratorFamily2 156.6
    com.apple.AppleGraphicsDeviceControl 3.8.6
    com.apple.driver.AppleBacklightExpert 1.1.0
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.driver.IOPlatformPluginFamily 5.8.1d38
    com.apple.driver.AppleSMC 3.1.9
    com.apple.driver.AppleUSBMultitouch 245.2
    com.apple.iokit.IOUSBHIDDriver 705.4.0
    com.apple.driver.AppleUSBMergeNub 705.4.0
    com.apple.driver.AppleUSBComposite 705.4.9
    com.apple.driver.CoreStorage 471.10.6
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.7.3
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.driver.AppleThunderboltDPInAdapter 4.0.6
    com.apple.driver.AppleThunderboltDPAdapterFamily 4.0.6
    com.apple.driver.AppleThunderboltPCIDownAdapter 2.0.2
    com.apple.iokit.IOAHCISerialATAPI 2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.7.3
    com.apple.iokit.IOEthernetAVBController 1.0.3b3
    com.apple.driver.AppleThunderboltNHI 3.1.7
    com.apple.iokit.IOThunderboltFamily 4.2.1
    com.apple.iokit.IO80211Family 710.55
    com.apple.driver.mDNSOffloadUserClient 1.0.1b8
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOFireWireFamily 4.5.6
    com.apple.iokit.IOAHCIFamily 2.7.5
    com.apple.iokit.IOUSBFamily 710.4.14
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 300.0
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.AppleMobileFileIntegrity 1.0.5
    com.apple.driver.AppleCredentialManager 1.0
    com.apple.driver.DiskImages 396
    com.apple.iokit.IOStorageFamily 2.0
    com.apple.iokit.IOReportFamily 31
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 3.1
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.Libm 1
    com.apple.kec.pthread 1
    com.apple.kec.corecrypto 1.0

  • I'm using firefox 1.0.6 on a Mac OSX 10.3. Firefox is crashing and freezing frequently. I've heard that My firefox version is too old to update and I also need a new computer. What can I do? Thanks.

    I'm using firefox 1.0.6 on a Mac OSX 10.3. Firefox is crashing and freezing frequently. I've heard that My firefox version is too old to update and I should get a new computer. I can't upload art to my website. News articles freeze constantly. Firefox shuts down when I go to certain websites. What can I do? Thanks.

    I'm using firefox 1.0.6 on a Mac OSX 10.3. Firefox is crashing and freezing frequently. I've heard that My firefox version is too old to update and I should get a new computer. I can't upload art to my website. News articles freeze constantly. Firefox shuts down when I go to certain websites. What can I do? Thanks.

  • Computer randomly crashing and restarting.

    I recently upgraded my 2010 Macbook Pro to Mountain Lion OSX. Ever since I upgraded my computer has been randomly crashing and restarting itself. I have looked online for many solutions. I have tried editing settings in system prefereneces, a hard drive repair, a fresh instal of the operating system, and even bringing the laptop into a local apple store. They did some diagnostic checks and a hard drive repair and sent me on my way. Even after all this it is still randomly crashing and restarting itself.
    The issue most often happens after being in sleep mode for a little while, atlhough it still occurs randomly throughout the day.I will bring it out of sleep mode and it will restart itself in the next minute or so.
    I copied a crash report since I have seen many people posting them here. I hope that you guys can help me identify the problem and fix it. I need to use this computer for school and I have many urgent projects coming up. I am covered under apple care, so a part replacement is not an issue. Any insight into the issue would be greatly appreciated. Thanks - Andy
    Crash Report
    Interval Since Last Panic Report:  652009 sec
    Panics Since Last Report:          26
    Anonymous UUID:                    01A39A60-7EC3-7EF0-E13B-CB5A3447CA73
    Thu Apr  4 09:53:29 2013
    panic(cpu 3 caller 0xffffff7f8a7637f2): NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff808460a000 0x0a5480a2, D0, P3/4
    Backtrace (CPU 3), Frame : Return Address
    0xffffff808387af80 : 0xffffff8008c1d626
    0xffffff808387aff0 : 0xffffff7f8a7637f2
    0xffffff808387b0b0 : 0xffffff7f8a8603b9
    0xffffff808387b110 : 0xffffff7f8a86042e
    0xffffff808387b180 : 0xffffff7f8ab78c82
    0xffffff808387b2b0 : 0xffffff7f8a886fe8
    0xffffff808387b2f0 : 0xffffff7f8a76b567
    0xffffff808387b3a0 : 0xffffff7f8a76905a
    0xffffff808387b5a0 : 0xffffff7f8a76a983
    0xffffff808387b670 : 0xffffff7f8ad68790
    0xffffff808387b730 : 0xffffff7f8ad93f98
    0xffffff808387b7b0 : 0xffffff7f8ad7b308
    0xffffff808387b810 : 0xffffff7f8ad7bbe9
    0xffffff808387b860 : 0xffffff7f8ad7c09b
    0xffffff808387b8d0 : 0xffffff7f8ad7c8d1
    0xffffff808387b910 : 0xffffff7f8ad4834f
    0xffffff808387ba90 : 0xffffff7f8ad78e39
    0xffffff808387bb50 : 0xffffff7f8ad46de8
    0xffffff808387bba0 : 0xffffff80090650c9
    0xffffff808387bbc0 : 0xffffff8009066670
    0xffffff808387bc20 : 0xffffff800906408f
    0xffffff808387bd70 : 0xffffff8008c984a1
    0xffffff808387be80 : 0xffffff8008c20aed
    0xffffff808387beb0 : 0xffffff8008c10448
    0xffffff808387bf00 : 0xffffff8008c1961b
    0xffffff808387bf70 : 0xffffff8008ca5dd6
    0xffffff808387bfb0 : 0xffffff8008ccdd43
          Kernel Extensions in backtrace:
    com.apple.NVDAResman(8.1)[A26D2A3D-C06F-3A0F-BCFF-901A98C93C3D]@0xffffff7f8a706 000->0xffffff7f8aa12fff
    dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f89217000
    dependency: com.apple.iokit.IONDRVSupport(2.3.7)[38C214C0-83C8-3594-8A4C-DC6AC3FEC163]@0xff ffff7f8a10c000
    dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[74E3E50F-E50A-3073-8C96-06F854292A91]@0 xffffff7f8a074000
    com.apple.nvidia.nv50hal(8.1)[5F021999-8B18-3BD5-9B98-90617E638A63]@0xffffff7f8 aa13000->0xffffff7f8ad34fff
    dependency: com.apple.NVDAResman(8.1.0)[A26D2A3D-C06F-3A0F-BCFF-901A98C93C3D]@0xffffff7f8a7 06000
    dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f89217000
    com.apple.GeForce(8.1)[A15BB65E-3501-340F-87CB-2FD2BAD33E35]@0xffffff7f8ad35000 ->0xffffff7f8ae01fff
    dependency: com.apple.NVDAResman(8.1.0)[A26D2A3D-C06F-3A0F-BCFF-901A98C93C3D]@0xffffff7f8a7 06000
    dependency: com.apple.iokit.IONDRVSupport(2.3.7)[38C214C0-83C8-3594-8A4C-DC6AC3FEC163]@0xff ffff7f8a10c000
    dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f89217000
    dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[74E3E50F-E50A-3073-8C96-06F854292A91]@0 xffffff7f8a074000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    12D78
    Kernel version:
    Darwin Kernel Version 12.3.0: Sun Jan  6 22:37:10 PST 2013; root:xnu-2050.22.13~1/RELEASE_X86_64
    Kernel UUID: 3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6
    Kernel slide:     0x0000000008a00000
    Kernel text base: 0xffffff8008c00000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 36964227183510
    last loaded kext at 31891623958718: com.seagate.driver.PowSecDriverCore            5.2.3 (addr 0xffffff7f8aec6000, size 233472)
    last unloaded kext at 31965341281584: com.apple.iokit.IOFireWireSBP2            4.2.2 (addr 0xffffff7f8aeab000, size 110592)
    loaded kexts:
    com.logmein.hamachi            1.0
    com.Cycling74.driver.Soundflower            1.5.2
    com.razer.common.razerhid            5.52
    com.apple.filesystems.smbfs            1.8
    com.apple.driver.AppleHWSensor            1.9.5d0
    com.apple.iokit.IOUserEthernet            1.0.0d1
    com.apple.driver.AppleUpstreamUserClient            3.5.10
    com.apple.iokit.IOBluetoothSerialManager            4.1.3f3
    com.apple.driver.AppleMikeyHIDDriver            122
    com.apple.driver.AudioAUUC            1.60
    com.apple.driver.AGPM            100.12.87
    com.apple.GeForce            8.1.0
    com.apple.driver.AppleIntelHDGraphics            8.1.0
    com.apple.driver.AppleHDA            2.3.7fc4
    com.apple.Dont_Steal_Mac_OS_X            7.0.0
    com.apple.driver.AppleMikeyDriver            2.3.7fc4
    com.apple.driver.AppleSMCPDRC            1.0.0
    com.apple.iokit.AppleBCM5701Ethernet            3.6.0b1
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport            4.1.3f3
    com.apple.driver.AppleSMCLMU            2.0.3d0
    com.apple.driver.AirPort.Brcm4331            614.20.16
    com.apple.driver.AppleMuxControl            3.3.0
    com.apple.driver.ApplePolicyControl            3.3.0
    com.apple.driver.ACPI_SMC_PlatformPlugin            1.0.0
    com.apple.driver.AppleLPC            1.6.0
    com.apple.driver.AppleIntelHDGraphicsFB            8.1.0
    com.apple.driver.AppleMCCSControl            1.1.11
    com.apple.driver.SMCMotionSensor            3.0.3d1
    com.apple.filesystems.autofs            3.0
    com.apple.driver.AppleUSBTCButtons            237.1
    com.apple.driver.AppleUSBTCKeyboard            237.1
    com.apple.driver.AppleIRController            320.15
    com.apple.driver.AppleUSBCardReader            3.1.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless            1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib            1.0.0d1
    com.apple.BootCache            34
    com.apple.iokit.SCSITaskUserClient            3.5.5
    com.apple.driver.XsanFilter            404
    com.apple.iokit.IOAHCIBlockStorage            2.3.1
    com.apple.driver.AppleUSBHub            5.5.5
    com.apple.driver.AppleAHCIPort            2.5.1
    com.apple.driver.AppleFWOHCI            4.9.6
    com.apple.driver.AppleUSBEHCI            5.5.0
    com.apple.driver.AppleEFINVRAM            1.7
    com.apple.driver.AppleSmartBatteryManager            161.0.0
    com.apple.driver.AppleACPIButtons            1.7
    com.apple.driver.AppleRTC            1.5
    com.apple.driver.AppleHPET            1.8
    com.apple.driver.AppleSMBIOS            1.9
    com.apple.driver.AppleACPIEC            1.7
    com.apple.driver.AppleAPIC            1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient            196.0.0
    com.apple.nke.applicationfirewall            4.0.39
    com.apple.security.quarantine            2
    com.apple.driver.AppleIntelCPUPowerManagement            196.0.0
    com.apple.iokit.IOSurface            86.0.4
    com.apple.iokit.IOSerialFamily            10.0.6
    com.apple.nvidia.nv50hal            8.1.0
    com.apple.NVDAResman            8.1.0
    com.apple.driver.DspFuncLib            2.3.7fc4
    com.apple.driver.AppleUSBAudio            2.9.0f6
    com.apple.iokit.IOAudioFamily            1.8.9fc11
    com.apple.kext.OSvKernDSPLib            1.6
    com.apple.iokit.IOEthernetAVBController            1.0.2b1
    com.apple.iokit.IOFireWireIP            2.2.5
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport            4.1.3f3
    com.apple.driver.AppleHDAController            2.3.7fc4
    com.apple.iokit.IOHDAFamily            2.3.7fc4
    com.apple.iokit.IO80211Family            522.4
    com.apple.iokit.IONetworkingFamily            3.0
    com.apple.driver.AppleBacklightExpert            1.0.4
    com.apple.driver.AppleGraphicsControl            3.3.0
    com.apple.iokit.IONDRVSupport            2.3.7
    com.apple.driver.AppleSMBusPCI            1.0.11d0
    com.apple.driver.IOPlatformPluginLegacy            1.0.0
    com.apple.driver.IOPlatformPluginFamily            5.3.0d51
    com.apple.driver.AppleSMBusController            1.0.11d0
    com.apple.iokit.IOGraphicsFamily            2.3.7
    com.apple.driver.AppleSMC            3.1.4d2
    com.apple.kext.triggers            1.0
    com.apple.driver.IOBluetoothHIDDriver            4.1.3f3
    com.apple.iokit.IOBluetoothFamily            4.1.3f3
    com.apple.driver.AppleUSBMultitouch            237.3
    com.apple.iokit.IOUSBHIDDriver            5.2.5
    com.apple.iokit.IOUSBMassStorageClass            3.5.1
    com.apple.driver.AppleUSBMergeNub            5.5.5
    com.apple.driver.AppleUSBComposite            5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice            3.5.5
    com.apple.iokit.IOBDStorageFamily            1.7
    com.apple.iokit.IODVDStorageFamily            1.7.1
    com.apple.iokit.IOCDStorageFamily            1.7.1
    com.apple.iokit.IOSCSIBlockCommandsDevice            3.5.5
    com.apple.iokit.IOAHCISerialATAPI            2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily            3.5.5
    com.apple.iokit.IOUSBUserClient            5.5.5
    com.apple.iokit.IOAHCIFamily            2.3.1
    com.apple.iokit.IOFireWireFamily            4.5.5
    com.apple.iokit.IOUSBFamily            5.5.5
    com.apple.driver.AppleEFIRuntime            1.7
    com.apple.iokit.IOHIDFamily            1.8.1
    com.apple.iokit.IOSMBusFamily            1.1
    com.apple.security.sandbox            220.2
    com.apple.kext.AppleMatch            1.0.0d1
    com.apple.security.TMSafetyNet            7
    com.apple.driver.DiskImages            345
    com.apple.iokit.IOStorageFamily            1.8
    com.apple.driver.AppleKeyStore            28.21
    com.apple.driver.AppleACPIPlatform            1.7
    com.apple.iokit.IOPCIFamily            2.7.3
    com.apple.iokit.IOACPIFamily            1.4
    com.apple.kec.corecrypto            1.0

    You have the MacBookPro6,2, the Edsel of Macs. You might be able to resolve the problem by reinstalling OS X. Try that first, if you haven't done so already. Otherwise, you may be covered by this program:
    MacBook Pro (15-inch, Mid 2010): Intermittent black screen or loss of video
    Make a "Genius" appointment at an Apple Store to have the machine tested. The routine hardware diagnostics used by service providers may not detect the fault. There is a specific test for this issue.
    Print the first page of the panic report, and the support page linked above, and bring them with you.
    Back up all data on the internal drive(s) before you hand over your computer to anyone. If privacy is a concern, erase the data partition(s) with the option to write zeros* (do this only if you have at least two complete, independent backups, and you know how to restore to an empty drive from any of them.) Don’t erase the recovery partition, if present.
    *An SSD doesn't need to be zeroed.
    You may be able to stop the panics by disabling automatic graphics switching in the Energy Saver preference pane, but that's not a solution. 
    Most likely, the logic board will be replaced. Sometimes the replacement is also defective, so be prepared for that possibility.

  • I just installed CS 6 and now my Acrobat Pro is crashing. I marked several spots to redact and when I applied the redaction, it crashed and produced a report.  How do I get it to stop crashing.

    I just installed CS 6 and now my Acrobat Pro is crashing. I marked several spots to redact and when I applied the redaction, it crashed and produced a report.  How do I get it to stop crashing? I am on OS 10.9.4

    Report the problem to Adobe Acrobat Support along with sample PDFs and detailed description of the steps you perform.

  • Curve 8520 os: 5.0.0.681 randomly crashing and only shows white screen and unable to reboot unless plugged in

    Anyone else suffering from their curve 8520 os: 5.0.0.681 randomly crashing and only showing a white screen as well as it being unable to reboot unless it is plugged in? It often occurs when I'm playing media, using apps and maps. Had the same problem with my previous phone so it was sent in for repair and replaced but I'm still suffering from the same problem with the replacement handset! Any ideas how it fix this?
    Thanks

    Hello Me_Again
    Welcome to BlackBerry Support Community Forums
    Since you got a replacement it the same old Battery you are using or its a new Battery  with your replacement device.Sometime this white Screen or unable to reboot happen because of weak battery .I suggest if you can arrange a good quality Battery then try running your device a few hours to see if the problem is within the device or its just Battery issue.
    Prince
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.

  • Firefox keeps crashing and keep getting do not trust all sites on firefox

    Firefox keeps crashing and I keep getting this
    This Connection is Untrusted
    You have asked Firefox to connect securely to www.mozilla.org, but we can't confirm that your connection is secure.
    Normally, when you try to connect securely, sites will present trusted identification to prove that you are going to the right place. However, this site's identity can't be verified.
    What Should I Do?
    If you usually connect to this site without problems, this error could mean that someone is trying to impersonate the site, and you shouldn't continue.

    Hello,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information. <br>
    '''Note''': ''This will cause you to lose any Extensions and some Preferences.''
    *Open websites will not be saved in Firefox versions lower than 25.
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • MY hard drive crashed and i lost all my files. How do i move my files from my phone or ipad back to my new hard drive?

    MY hard drive crashed and i lost all my files. How do i move my files from my phone or ipad back to my new hard drive

    See Recover your iTunes library from your iPod or iOS device.
    tt2

  • I have a video that I created for my daughter's first birthday.  The hard drive on my computer crashed and I lost the video file.  The only place I have it is on my iPod Classic.  How can I transfer the video from my iPod to my new hard drive?

    I have a video that I created for my daughter's first birthday.  The hard drive on my computer crashed and I lost the video file.  The only place I have it is on my iPod Classic.  How can I transfer the video from my iPod to my new hard drive?

    You are in luck, Refer to this recent post by tt2, on recovering media using 3rd Party Software.
    He has made a comprehensive list, browse through them and decide which  suits your requirements.
    Have a nice day!

  • How do I recover a Muse site back to my computer after it has crashed and I've lost the files?

    How do I recover a Muse site that was uploaded to Business Catalyst back to my computer after my system crashed and I've lost the files?

    Regardless of being in development or not, "Captain Obvious" is is correct and the working .muse file is lost, meaning that you will have to start again from scratch.
    All the BC will contain is the published HTML and support files, not the .muse file which you would require to recover the site design.
    Might want to look into Time Machine or another automatic, timed backup source while you work.

  • FireFox 5 crashes everytime when open a PDF file

    FireFox 5 crashes everytime when open a PDF file in the browser.
    Adobe Acrobat plug-in installed.

    Please post this in the correct forum, such as here (Mac OS X 10.4 Tiger):
    http://discussions.apple.com/category.jspa?categoryID=160

  • My old computer crashed and deleted my iTunes media file with all my playlist. However, my iPod has the playlist I lost on the computer. How can I replace (reverse synch?) my iPod media information back onto my (now reinstalled) virgin iTunes media folder

    My old computer crashed and deleted my iTunes media file with all my playlist.However, my iPod has the playlist I lost on the computer. How can I replace (reverse synch?) my iPod media information back onto my (now reinstalled) virgin iTunes media folder?

    Yes it's possible to sync music back from a iPod back into iTunes that (I assume) wasn't purchased on the iTunes Store.
    Apple allows iTunes Store purchases on devices to be reversed back into iTunes, just not cd rips and stuff like that. For that it's a one way trip to the device from iTunes.
    I likely can't suggest such software here, but if you visit iLounge you can ask what is the latest software that works for your platform.
    Really it only takes a mere few minutes to backup your iTunes Library and stick in a few cd/dvd's or a external drive. iTunes even has a menu command for it to make it oh so simple. Please use it and backup all your data.
    Hard drives fail, computers burn up, thieves steal, stuff gets forgotten. Plan for something happening because it will.
    Good Luck

  • 4s random crashes and freezes, even with DFU restore

    I have a 3 week old 4s and have since had to take the phone to Fresno genius bar three times. My phone has had random crashes (preferences, mobile safari, messages, app store, words). Each time I was told that a DFU restore would fix this problem. The last they did was on Dec 21. It is now Dec 27 and my phone has crashed 6 times with the last one requiring a hard reset as the phone froze while using Safari. I understand that phones are computers and it will crash at times. However, this is a 3 week old phone, it has been less than a week from a full restore, and there does not seem to be a pattern on which apps crashes. I also clear my unused apps (double click home button and clear apps on the background) every day, so it's not like memory is tied up. And besides, a 4s shouldn't be concerned about that, right. I also have several friends that have 4Ss and have had not had this problem to the extent I've had so far? Have any of you guys experienced this?

    The symptoms that you describe could definitely be caused by a failing power supply unit (PSU).  It can cause many problems that don't appear to be related to the PSU.  Here is a guide to help you troubleshoot it. 
    Here is a guide to help you test the hard driver using the SMART diagnostics in the BIOS.
    Test the memory by removing all of the modules and replacing them one at a time and booting.  Place the single memory module in the slot closest to the Processor.
    Please click the "Thumbs Up+ button" if I have helped you and click "Accept as Solution" if your problem is solved.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

Maybe you are looking for

  • IMovie: My options are greyed out in content library. Help!

    I have iMovie 10.0.6 and I have used iMovie in previous versions. When I go to window > content library all the options are greyed out. How do I fix this?!

  • Partition Table Query taking Too Much Time

    I have created partition table and Created local partition index on a column whose datatype is DATE. Now when I Query table and use index column in the where clause It is scaning all the table (Full scan) . The quey is : Select * From mytable where t

  • JTable Custom Renderer not working after sort

    Hi All, I have a JTable which has a default renderer. The point of the renderer is to color the background based on the second column. It all words fine, until I sort by any of the columns. Clicking on a column header sorts, but the original backgrou

  • CIF of SA is not consistent for Validity End Date

    Hello gurus, Our company is quite new in using SNC, and we bumped into this problem (see description below), and hopefully this forum can help us. <Description>: When the Scheduling Agreement is CIFed from R/3 (ECC) to SNC, the Validity End Date does

  • Close an apple id and change apple id username

    Hi ive a pain in the arse problem that Apple have failed to solve twice now. Ive addressed now an then but failed over several years. Thought id bring it up here again. My appple id is my old email address. This is not recommended by apple, so im try