Getoonde gelabelde vragen: Alle vragen tonen
  • Gearchiveerd

Firefox every tab getting crashed

https://crash-stats.mozilla.org/report/index/711afc4a-b3ab-4c6d-8aec-7dd660211214 kindly check this link. this is crashed report. … (meer info)

Gevraagd door Afnan Mahmud, 1 jaar geleden

Laatst beantwoord door FredMcD, 1 jaar geleden

  • Gearchiveerd

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 … (meer info)

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>

Gevraagd door dwillis840, 1 jaar geleden

Laatst beantwoord door jonzn4SUSE, 1 jaar geleden

  • Gearchiveerd

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… (meer info)

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

Gevraagd door Mohak Bhatt, 1 jaar geleden

Laatst beantwoord door jonzn4SUSE, 1 jaar geleden

  • Gearchiveerd

FireFox started crashing at FireFox launch.

FireFox started crashing at FireFox launch. Tried reboot, tried refresh, uninstalled and re-installed, tried Safe Mode. Thought it was a new extension, but apparently n… (meer info)

FireFox started crashing at FireFox launch. Tried reboot, tried refresh, uninstalled and re-installed, tried Safe Mode. Thought it was a new extension, but apparently not.

Windows 7

Gevraagd door rbryant67, 1 jaar geleden

Laatst beantwoord door FredMcD, 1 jaar geleden

  • Gearchiveerd

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… (meer info)

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

Gevraagd door mhinck1, 1 jaar geleden

Laatst beantwoord door FredMcD, 1 jaar geleden