some websites won't open

recently some websites won't open. in other browsers sites open fine. problems with pinterest.com figma.com cleared the browser, deleted cookies and cache, reinstalled th… (διαβάστε περισσότερα)

recently some websites won't open. in other browsers sites open fine. problems with pinterest.com figma.com cleared the browser, deleted cookies and cache, reinstalled the browser everything opens in google chrome, i attach screenshots

Ερώτηση από Имя Пользователя 48 δευτερόλεπτα πριν

Autofill credit card details option not available

According to this article I should be able to activate autofill credit card details in my country https://support.mozilla.org/en-US/kb/credit-card-autofill But the optio… (διαβάστε περισσότερα)

According to this article I should be able to activate autofill credit card details in my country https://support.mozilla.org/en-US/kb/credit-card-autofill But the option is no where to be found and in about:config I can see it is restricted to a few countries mine not being one. I can not change the list with countries either, actually I can not change anything nor search in about:config. I am running Firefox 140.0.4 (64-bit) EDIT I made a a master password, which then made it possible for me to edit in about:config. I added my country to the extension and now I can activate it.

Ερώτηση από Morten 24 λεπτά πριν

Larger font in History

To view my Firefox browsing history, I click the three horizontal lines icon (in the top right corner of the window) to open the Menu panel. I then click History then cl… (διαβάστε περισσότερα)

To view my Firefox browsing history, I click the three horizontal lines icon (in the top right corner of the window) to open the Menu panel. I then click History then click Manage History.

How can I make the font larger?

(Ctrl++ does not increase the zoom-level) (Zoom does not increase the zoom-level)


I have a desktop PC Firefox 140.0.4 (64-bit) Windows 11

Ερώτηση από gcotterl 1 ώρα πριν

Flickering artifacts 14.0.4 certain scale

Hello, I am having an odd issue where I see flickering bands of cyan/purple blocks whenever I scroll on a page with some video embeds. At first I thought it was related… (διαβάστε περισσότερα)

Hello,

I am having an odd issue where I see flickering bands of cyan/purple blocks whenever I scroll on a page with some video embeds. At first I thought it was related to refresh rates (240hz) as some pages flickers but it occurs at 60hz as well.


2560 X 1600 Resolution with 125% windows scaling

Steps to reproduce: 1) have settings above 2) navigate to https://store.steampowered.com/ 3) view a storefront with a video embed 4) zoom to 180% 5) scroll up and down past the video


Specs: 64GB Ram AMD RYZEN AI 365 Geforce RTX 5080

Ερώτηση από KimbapCheezits 1 ώρα πριν

extension (add-on) session storage not saving between opening and closing popup when inPrivate window

I have a MV3 extension I created that has a popup and data that is stored in sessionstorage and extension storage. When I use the extension in a private window it does … (διαβάστε περισσότερα)

I have a MV3 extension I created that has a popup and data that is stored in sessionstorage and extension storage.

When I use the extension in a private window it does not work because data does not persist between each time I open and close the popup.

This causes problems, for example you have I have to login each time I open the popup, instead of the auth status persisting. It works fine in a normal window though.

Is there anything I can do that allows data for an extension running in an inPrivate window to persist. (Maybe some additional manifest code / changing the browser config)

Ερώτηση από admin467 1 ώρα πριν

session backups inadequate

I keep a lot of tabs open (~60) in any particular session - I find it's faster in this way to get back to a site. About every six months or so, I lose *all* these tabs b… (διαβάστε περισσότερα)

I keep a lot of tabs open (~60) in any particular session - I find it's faster in this way to get back to a site.

About every six months or so, I lose *all* these tabs because of Firefox's inadequate session backup system. It only saves two or three total backups, some of which are completely out of date. But the worst scenario is when (1) some site pops up a new window; (2) I mistakenly close my main window before the new window; (3) I open this new saved window once or twice by accident, causing my 60-tab session backup to be overwritten.

Using a third-party session manager (I have tried all the well-known ones) can mitigate this problem, but doesn't really solve it because the re-opened sessions aren't quite in the same format as Firefox sessions and so lose information. In particular, I often lose each tab's icon as well as metadata for Tree Style Tab.

Could Mozilla please consider a more robust session backup system for Firefox? All it would take (I think) is to allow the user to choose the total number of backup sessions and the frequency at which a new session is added. Thank you!

Ερώτηση από carl.andersen 3 ώρες πριν

Τελευταία απάντηση από carl.andersen 1 ώρα πριν

First letter typed when swapping tabs not appearing in text field.

I've recently swapped to Firefox from Chrome and I've noticed a huge hindrance. I use a chatroom website and when I swap to the tab and begin to type, the first letter i… (διαβάστε περισσότερα)

I've recently swapped to Firefox from Chrome and I've noticed a huge hindrance.

I use a chatroom website and when I swap to the tab and begin to type, the first letter is randomly eaten/won't be entered into the text field.

For instance I was typing the word "What" and the text field only displayed "hat". Or when typing "Either" only "ither" appeared.

I thought this may have been related to a hardware acceleration issue but both settings did not work. So I started to look at Hotkeys but none of them should be interfering.

Some others have stated they have this issue too and I've been unable to find any solution. Any help?

Ερώτηση από AstralBeast 2 ώρες πριν

Application error: a client-side exception has occurred (see the browser console for more information).

Fix for RangeError: invalid language tag and client-side exceptions in Firefox on Linux Hi everyone, I was experiencing persistent JavaScript errors in Firefox on Linux … (διαβάστε περισσότερα)

Fix for RangeError: invalid language tag and client-side exceptions in Firefox on Linux

Hi everyone, I was experiencing persistent JavaScript errors in Firefox on Linux when loading certain modern websites (e.g., built with React or Next.js). The browser console showed messages like:

   RangeError: invalid language tag: "chrome://global/locale/intl.properties"
   A client-side exception has occurred (see the browser console for more information)
   React error #418 with minified stack traces

This happened even in Safe Mode, with all extensions disabled, cookies/cache cleared, and Enhanced Tracking Protection off. ✅ Root cause and fix:

Turns out the issue was related to missing or broken locale configuration in Firefox. To fix it:

   Open about:config
   Create a new string entry:
       Name: intl.locale.requested
       Value: en-US (or fr, en-GB, etc. — any valid locale)
   Restart Firefox

After adding this key, all affected pages started working correctly. The invalid "chrome://global/locale/intl.properties" error in intl.accept_languages disappeared as well — it seems that was just a side effect of the missing locale setting. 🔁 Summary:

If you’re seeing RangeError: invalid language tag and React crashes, try adding intl.locale.requested manually. This fixed the issue entirely for me on Linux.

Hope this helps others!

Ερώτηση από Clément 6 ώρες πριν

History wiped on exit with options not working as per requirements.

Ok so I usually choose these option to remember history and from time to time delete Browsing & download history and Temporary cached files and pages. https://asset… (διαβάστε περισσότερα)

Ok so I usually choose these option to remember history and from time to time delete Browsing & download history and Temporary cached files and pages.

https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2025-06-28-08-45-55-a5277f.png

Note: I have "Open previous window and tabs" ticked in general settings which also has a restore previous session option in the history menu. This brings back previous session with tabs etc as is when I close FF. https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2025-06-28-08-45-51-cf2daf.png

I thought I could automate this on exit but don't think its working right. So I change the option to "use custom settings for history" and tick all three options:

Remember browsing and download history Remember search and form history Clear history when Firefox closes For "Clear history when Firefox closes" I ticked Browsing & download history and Temporary cached files and pages. https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2025-06-28-08-45-43-b10213.png

The issue is the restore session option is missing and FF opens with all previous tabs gone. I am frankly not even sure what else is missing such as cookies, site data etc. Is this meant to work like so?

Ερώτηση από Mrsash 2 εβδομάδες πριν

Τελευταία απάντηση από Mrsash 11 ώρες πριν

about:support page many configs are blank when i change my profile

I use scoop to install firefox. then i changed the default profile to the Scoop profile. Then i tried to log in the mozilla account but it keep saying that it cannot cont… (διαβάστε περισσότερα)

I use scoop to install firefox. then i changed the default profile to the Scoop profile. Then i tried to log in the mozilla account but it keep saying that it cannot continue because cookies or localstore are disabled. Then i checked the about:support page like i said in the titile, many configs are blank. Maybe some problems with the profile i guess. I also opened a issue in Scoop githup repo, they cant reproduce my problem. Where could go wrong? Any help would be appreciate!

And this is the issue i post on github https://github.com/ScoopInstaller/Extras/issues/15770

Ερώτηση από LOYINuts 12 ώρες πριν

The error in downloading files is causing abnormal web browsing.

There was an error when downloading files with the browser, indicating that there was a problem with the file directory. The download failed, and changing the file direct… (διαβάστε περισσότερα)

There was an error when downloading files with the browser, indicating that there was a problem with the file directory. The download failed, and changing the file directory was still ineffective. Then, it resulted in a situation where no web pages could be opened, as if the network was disconnected. After closing the browser and reopening it, it returned to normal, but the download still could not be used. This problem has existed since versions 115.24 and 115.25.

Ερώτηση από hyrjdq 13 ώρες πριν

pop setting

The pop settings in the browser show it is blocked but I can't find an option to unblock it

Ερώτηση από gippy3568 14 ώρες πριν

Firefox does not play sound despite being attributed to correct device. All other apps OK.

What the title says. Firefox just isn't playing any sound whatsoever. Troubleshooting: Volume mixer indicates that Firefox is using my speakers, along with all other… (διαβάστε περισσότερα)

What the title says. Firefox just isn't playing any sound whatsoever.

Troubleshooting:

  • Volume mixer indicates that Firefox is using my speakers, along with all other apps. When playing a YouTube video, the green bar is not bouncing. However, all other programs that play sound do so successfully and their green bars are bouncing (see attachment).
  • Other web browsers play sound successfully.
  • Restarting Firefox and my computer did not help.
  • Switching the default sound device and changing back did not help.
  • Changing to headphones made no change.
  • Tabs are not muted.
  • Autoplay settings in about:preferences showed that audio and video were disabled, however changing this setting to allow video and audio, then restarting both Firefox and the computer did not fix the problem. I have no idea how that setting was even changed to begin with. O_o
  • Started Firefox in troubleshooting mode; still no sound.
  • Started Firefox in a different profile; still no sound.
  • Started Firefox in private mode; still no sound.
  • Tried ending the audiodg.exe process in task manager and restarted; still no sound.
  • Double checked media.autoplay.blocking_policy, was set to 0.
  • Double checked media.block-autoplay-until-in-foreground -- changed from true to false, restarted Firefox; still no sound.
  • Disabled hardware acceleration; still no sound.
  • Refreshed Firefox; still no sound.
  • Complete uninstall, including the usage of BCUninstaller to uninstall "leftovers". Reinstalled. Still no sound.

I have Apollo installed on my computer and I've reached out to them before for similar issues, but the dev was insistent that Apollo does not cause sound issues. I'm somewhat sceptical, but they're not being helpful at all so I thought I'd ask here, and disclose usage of Apollo so that all bases are covered.

Thank you for your time.

Ερώτηση από Umbravita 2 ημέρες πριν

Τελευταία απάντηση από Umbravita 15 ώρες πριν