Prikaz označenih pitanja:

something making my computer slow down

Just recently when logged onto Hotcopper.com.au have been getting a message that reads "This page is slowing Firefox down. To speed up this browser, stop this page." Ther… (pročitajte više)

Just recently when logged onto Hotcopper.com.au have been getting a message that reads "This page is slowing Firefox down. To speed up this browser, stop this page." There is a STOP button, that helps for a moment or two only. When I open the program with MS Edge, the problem does nor occur. I was going to remove the Firefox App but saw the repair option. Repairing did not stop the problem. Any suggestions? John I have a near new Acer laptop running Win 11.

Open 86

win 7 ultimate, using fire fox 115 esr, linkedin window squished to top left corner in a square, internet archive site does not signin as blue button doesn't function

I am using win 7 ultimate, with fire fox 115.32.1 ESR,. The LinkedIn main window gets squished to top left corner in a small square, other pages open up normally. Interne… (pročitajte više)

I am using win 7 ultimate, with fire fox 115.32.1 ESR,. The LinkedIn main window gets squished to top left corner in a small square, other pages open up normally. Internet archive site does not sign me in as the blue button of sign-in doesn't function. I can't change pass words nor sign-in. Website Cell Press opens research papers in a single verticle line in left corner, downloaded pdf papers open normally. Other browsers like Comodo and Chrome do not cause such issues.

Open 1 105

Is there a webkit compatibility mode to make Firefox try to listen to -webkit css flags?

Or is the only option - as a web developer, to make duplicate css flags? I.e: https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Selectors/::-webkit-slider-runnab… (pročitajte više)

Or is the only option - as a web developer, to make duplicate css flags?

I.e: https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Selectors/::-webkit-slider-runnable-track & https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Selectors/::-webkit-slider-thumb Where firefox supports the behavior, but under different flag names https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Selectors/::-moz-range-thumb & https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Selectors/::-moz-range-track

Im also looking for recommendations on barebones/simple parsers that can help make my html/css/js more compatible without messing up the code too much. Im hoping to avoid having to use a build system.

Thank you

Open 1 170

sites don't load

firefox is keeping me from accessing certain sites. why. do i need to switch to safari to access the sites. they do load on safari. can it be fixed or do i need to chan… (pročitajte više)

firefox is keeping me from accessing certain sites. why. do i need to switch to safari to access the sites. they do load on safari. can it be fixed or do i need to change?

Open 1 169

Firefox power management inhibit functionality broken by lichess.org

While playing chess at lichess.org, browser power management inhibit messaging to the system gets stuck on its current status. That is, if power management is inhibited … (pročitajte više)

While playing chess at lichess.org, browser power management inhibit messaging to the system gets stuck on its current status. That is, if power management is inhibited by media playing on another tab while I play a game, it will get stuck in the inhibited state. If power management is uninhibited while I play (no media playing), it will get stuck in the uninhibited state. This persists until the browser is restarted even if all tabs are closed.

I don't believe it to be a system issue, as the problem clears as soon as the browser is closed. Chrome based browsers do not exhibit the behavior for me, but I tried a Firefox fork (LibreWolf) and it has the same issue. I don't experience this issue at any other website I visit.

Only certain areas of lichess.org cause this behavior, primarily playing a game against a human opponent. I tried progressively blocking media and script requests to narrow down offenders, but I always break site functionality before I can pinpoint anything.

I'm not so much looking for a solution (although that would be great) as I am troubleshooting advice. Is there any way to narrow down exactly what it is about this specific website that is causing the issue?

Open 1 97

Layout and font spacing issue in Firefox

I’m seeing a layout and font spacing issue in Firefox that doesn’t appear in Chrome or Edge. The page loads, but some elements shift after render and text spacing looks o… (pročitajte više)

I’m seeing a layout and font spacing issue in Firefox that doesn’t appear in Chrome or Edge. The page loads, but some elements shift after render and text spacing looks off.

I’ve tested in a private window, disabled extensions, and cleared cache, so it doesn’t seem profile-related. Any suggestions on what Firefox settings or DevTools checks might help?

Page where the issue is reproducible: dbrosmenu.com Thanks.

Open 1 112

An error occured while loading

How do you avoid/deal with Firefox website incompatibilities? This happened on consecutive visits to two different websites today before I posted here. In the first one… (pročitajte više)

How do you avoid/deal with Firefox website incompatibilities? This happened on consecutive visits to two different websites today before I posted here.

In the first one, I disabled Ublock, cleared cache and cookies, and the site loaded, I then enabled Ublock with no error prompted.

Then I got a tab crash on Youtube. I wouldn't call tab crashes a daily occurrence for me, but I'm accustomed to them

Gmail tab crash just now. It just happened now with another website tab crash. i'm reverting back to 147.01

Is there any way to get the root of this. The only recent changes I can think of are browser (147.0.2 yesterday) and addon updates. Should I post my list of addons?

Open 1 98

I cannot open my gmail account on firefox--get message "numeric code 4"

I am running the latest firefox version 147.0.3 64-bit. Gmail opens and runs fine on duck duck go and brave. Cannot find any info on how to solve/fix/override/whatever on… (pročitajte više)

I am running the latest firefox version 147.0.3 64-bit. Gmail opens and runs fine on duck duck go and brave. Cannot find any info on how to solve/fix/override/whatever on "numeric code 4" but seems like other folks experience, too. I appreciate your help.

Open 1 97

Firefox multipart/form‑data upload stalls (0 bytes sent) to Next.js pages/api endpoint — works in Edge/Chromium

Summary: Uploading a file to a custom webapp with Chromium (Edge) works but consistently fails in Firefox. In Firefox the request is created, and times out. The server re… (pročitajte više)

Summary: Uploading a file to a custom webapp with Chromium (Edge) works but consistently fails in Firefox. In Firefox the request is created, and times out. The server receives no file and logs “missing file.” The same webapp code is running on both Chromium and Firefox.

Environment:

  • Next.js app (pages/api route)
  • Endpoint: POST /api/file-upload
  • Client: fetch(url, { method: "POST", body: FormData, credentials: "include" })
  • Server: export const config = { api: { bodyParser: false } } + multipart parsing (formidable)
  • Edge/Chromium: Version 141.0.3537.85
  • Firefox Version 147.0.3 (64-bit)
  • OS: Ubuntu 22 / Linux

Steps to reproduce:

  1. Create a FormData object and append a local file:
  const fd = new FormData();
  fd.append("template", file, file.name);
  fetch(`/api/file-upload`, {
    method: "POST",
    body: fd,
  1. In Edge/Chrome, upload succeeds. Server receives multipart body and parses the file. Actual behavior in Firefox:
  • Transferred: 0 B
  • No response status/body
  • Client times out (Upload times out)
  • File upload request received
  • No bytes read server‑side.

Evidence:

  • Edge request logs:
    • content-type: multipart/form-data; boundary=----WebKitFormBoundary...
    • bytesRead ~1.69MB
  • Firefox request logs:
    • Transferred 0 B
    • File upload missing file field

Notes:

  • Client FormData is valid; we log file.name and file.size right before fetch.
  • There is a CSP report‑only warning (frame‑ancestors) when using a fallback iframe approach, but we are not using iframe in the failing case.

Question: Is there a known issue where Firefox blocks or fails to send and multipart/body can be stripped before it leaves the browser? Is there a recommended workaround that does not rely on browser sniffing?

Moderator note: This question has been edited to correct the formatting.

Open 1 160

meet.goto.com does not support Firefox, I must use Chrome or Edge to enter a telecon

I need to have a telecon from the provider meet.goto.com using Firefox on my PC running Linux Mint mint-001-1.0 147.0.1 (64 bit) but I get an error message browser not su… (pročitajte više)

I need to have a telecon from the provider meet.goto.com using Firefox on my PC running Linux Mint mint-001-1.0 147.0.1 (64 bit) but I get an error message browser not supported. What can I do? Thanks

Open 1 88

https://efile.azcourts.gov doesn't work using Firefox

The website commonly used by Arizonans to make filings for court, will not work properly with Firefox, even after turning off Enhanced Tracking Protection. I had to use C… (pročitajte više)

The website commonly used by Arizonans to make filings for court, will not work properly with Firefox, even after turning off Enhanced Tracking Protection. I had to use Chrome instead.

Open 1 94