Showing questions tagged: Show all questions
  • Archived

How to troubleshoot crashes when no crash report is generated?

I'm having an issue where Firefox (Linux, 96.0.3) will crash after it's been running for a while but no crash report is generated. This is on an older Intel NUC with 2GB … (read more)

I'm having an issue where Firefox (Linux, 96.0.3) will crash after it's been running for a while but no crash report is generated. This is on an older Intel NUC with 2GB RAM running Clear Linux and intended to be used as a digital sign. No other applications are running. There is only a single tab loading a single page from localhost. No extensions are installed. The page is a simple layout using CSS grid. Javascript is used to create a slider with four slides, to cycle through a series of videos hosted locally, and periodically check for content updates. Below is the JS in it's entirety.

My feeling is that it's a memory issue, possibly to do with the video playlist, but I've been monitoring memory usage via about:performance and the tab with the sign has never used more than about 5MB. I've also been monitoring the system resources via htop and I've never seen it go higher than about 1000MB. How can I track down this issue?

Thanks in advance!


<script>

   const swiper = new Swiper('.swiper', {
       autoplay:{delay:10000},
       loop:true,
       effect: 'fade',
       fadeEffect:{crossFade:true}
   });
   
   let video = document.querySelector('video'),
       source = video.querySelector('source'),
       vids = Object.values(JSON.parse('!getVideos')),
       i = 1; //start at 1 instead of 0 because the first is already playing
       
   video.addEventListener('ended', function(){
       source.src = vids[i++];
       if(i == vids.length) i = 0;
       video.load();
       video.play();
   });
   
   //check for content updates
   let seconds = 60,
       lastUpdate = null;
       
   setInterval(() => {
       let req = new Request('~6'),
           headers = new Headers();
           
       headers.append('cache-control', 'no-store, must-revalidate');
       
       fetch(req, {method:'GET', headers:headers})
           .then(response => response.json())
           .then(data => {
               let updated = JSON.stringify(data)
               if(lastUpdate === null) lastUpdate = updated;
               
               if(lastUpdate !== updated) location.reload();
               
           }).catch(console.error);
   }, (seconds * 1000));

</script>

Asked by dwillis840 1 year ago

Last reply by jonzn4SUSE 1 year ago

  • Archived

Firefox crashing in Windows 11

So i downloaded firefox from the website... it doesnt even open! i tried to reinstall which didnt solve the problem.. then i uninstalled and installed it from the MS Stor… (read more)

So i downloaded firefox from the website... it doesnt even open! i tried to reinstall which didnt solve the problem.. then i uninstalled and installed it from the MS Store... it opened once and i used it for a day, but then the next day.. it again crashed and didnt open.. i didn't have extensions nor any themes. PLease help.. i used it everyday in win10... but in win11, edge or chrome is the only option.. pls fix it ASAP

Asked by Mohak Bhatt 1 year ago

Last reply by jonzn4SUSE 1 year ago

  • Archived

Firefox keeps crashing upon watching Twitch, YouTube, or browsing Reddit

Hi, I'm very lost as to why Firefox has suddenly starting crashing on me very frequently over the past 3 or so days, after Firefox's latest update. I first noticed it whe… (read more)

Hi, I'm very lost as to why Firefox has suddenly starting crashing on me very frequently over the past 3 or so days, after Firefox's latest update. I first noticed it when I tried watching streams on Twitch, then I also noticed it on YouTube, and then when casually browsing Reddit. I've gone through all the troubleshooting steps:

  • I've made sure Windows is up to date
  • Firefox is up to date
  • My drivers are all up to date
  • There are no viruses/malware/any issues with my firewall settings and computer security, I've tested and checked everything
  • The crashes DO still happen in Troubleshooting Mode
  • I've checked my RAM using Windows Memory Diagnostic for errors and there are none
  • I've refreshed Firefox, I've cleared my cache, I've done an entire clean uninstall and reinstall of Firefox
  • I'm able to watch streams, videos, and browse Reddit just fine on my other devices and on Google Chrome. This is only an issue I'm encountering with Firefox, which is super disappointing because I've never had a single issue in the past several years I've been using it as my browser ):

I've submitted so many crash reports because it's been crashing so often, but here's the Report ID of the most recent: bp-0b0dac91-ec69-4c9e-a8c0-a622b0220116

I'm so confused and have no idea why this is happening. Any help at all would be greatly appreciated. Thanks!

Asked by BumbleBreeBee 1 year ago

Last reply by jonzn4SUSE 1 year ago

  • Archived

Overwhelming Number of Crashes

I just installed firefox on a brand new Windows 11 PC and Firefox continually crashes. I did a clean install and still I can't go a couple of minutes without a tab crash… (read more)

I just installed firefox on a brand new Windows 11 PC and Firefox continually crashes. I did a clean install and still I can't go a couple of minutes without a tab crashing.

Here are a bunch of the most recent: 44ff3780-ddbd-4fa7-88a3-a606a364988b 3b24eea5-9a72-46dd-a635-273a20269eb3 056a49bf-0388-4b16-ab5e-9e023ebfb3d8 08b199d3-9631-4cfe-9b3b-44a8869c3949 02cf78b7-9c94-4905-9c0e-49e38998453f 66220c6a-3466-4fed-b394-f8d00a0cdee5 26c2bfba-1f66-4257-b4a5-76ac54a7dc65 532a5cda-40b2-4dff-aae9-2bb387e5d64f 32670407-0436-47f1-9728-ac9730a3b320

Asked by mhinck1 1 year ago

Last reply by FredMcD 1 year ago

  • Archived

Firefox 95.x Crashes Immediately in Google Street View, Facebook 3D Photos

Greetings, For a few months I've been experiencing consistent crashing in Firefox 95.x versions. At first the crashing happened "randomly" while browsing Facebook, but I… (read more)

Greetings,

For a few months I've been experiencing consistent crashing in Firefox 95.x versions. At first the crashing happened "randomly" while browsing Facebook, but I eventually identified a pattern and learned that the crashes would happen when a Facebook 3D photo attempted to render in the feed.

Since then, I'm able to consistently reproduce the same crashing issue by opening Google Maps and launching street view. The crash happens immediately when street view attempts to load (unsuccessfully). This happens even with all plugins disabled.

Unfortunately I've had to failover to Google Chrome due to the stability issues in Firefox, though I would like to return to Firefox if this issue can be resolved. The issue does not present itself in other browsers.

I'm currently on Firefox v95.0.1 64-bit on MacOS Catalina 10.15.7, and my GPU is an integrated Intel HD Graphics 4000 1536 MB with a dedicated NVIDIA GeForce GT 650M.

Thanks for your support.

Asked by djbowen08 1 year ago

Last reply by cor-el 1 year ago