Ceisteanna leis an gclib seo á dtaispeáint:

Intermittent connectivity problems

Hi, I'm on Debian. In the last day I have intermittent connection problems on many websites which go away after a while. Any ideas? I'm using Quad9 for DNS but I don't kn… (tuilleadh eolais)

Hi, I'm on Debian. In the last day I have intermittent connection problems on many websites which go away after a while. Any ideas? I'm using Quad9 for DNS but I don't know where in the chain something is going wrong

Cartlannaithe 1 400

Customization of sidebar

Hi, is there a way to customize sidebar to move the controls to the top or bottom of the sidebar? With sidebar open there is a lot of wasted space with just 3 icons - set… (tuilleadh eolais)

Hi, is there a way to customize sidebar to move the controls to the top or bottom of the sidebar? With sidebar open there is a lot of wasted space with just 3 icons - settings, history and sideberry buttons. Not really an optimal situation.

Attached screenshot and another picture explaining where I would like to move the buttons. Either top or bottom of the sidebar is preferable than taking the side.

Solved Cartlannaithe 2 399

installing on Debian

I’m trying to install the latest version of Firefox on Debian, as described at https://support.mozilla.org/en-US/kb/install-firefox-linux#w_install-firefox-deb-package-fo… (tuilleadh eolais)

I’m trying to install the latest version of Firefox on Debian, as described at https://support.mozilla.org/en-US/kb/install-firefox-linux#w_install-firefox-deb-package-for-debian-based-distributions. I’ve tried twice, several days apart, but both times things fail at the third step, with the fingerprint not matching. Can I do anything besides try again later? I’m using Firefox ESR, as packaged by Debian, in the meantime.

Cartlannaithe 3 399

Linux mint firefox and google street view

Hello. I am using Linux Mint 21.3 cinnamon and Firefox 144.0.2 When I use Google maps and the yellow small pointer (cartoon) to go on a specific street, the window come b… (tuilleadh eolais)

Hello. I am using Linux Mint 21.3 cinnamon and Firefox 144.0.2 When I use Google maps and the yellow small pointer (cartoon) to go on a specific street, the window come black when shifting to street view. My only extension is disabled, hardware acceleration unchecked, cache cleared and cookies cleared. I have made fresh install and nothing help. Troubleshooting mode allow street view to work fine but normal mode don't work. Google chrome work good. Chromium work good. And finally, Firefox work ok on my Linux mint LMDE 6.

Any idea where to go to solve this issue?

Thanks for your support

André

Solved Cartlannaithe 15 397

How can I always show the translation icon in desktop Firefox?

Is there a setting to always show the translation icon in the Firefox desktop address bar? Scenario I'm visiting a website that is not in my native language. For examp… (tuilleadh eolais)

Is there a setting to always show the translation icon in the Firefox desktop address bar?

  1. Scenario

I'm visiting a website that is not in my native language. For example, I natively speak English, and the website contains Spanish text.

The Spanish website incorrectly sets lang="en" in the HTML. Here's an example: https://animalessinhogar.com.uy/

My browser's default language is set to US English. When Firefox sees the Spanish webpage declaring the lang="en" tag, it assumes the webpage is in English, and hides the translation icon from the address bar.

  1. Issue

The end result is I see this website in Spanish, there's no translation icon in the address bar, and also no way to force a full page translation. The best I can do is select parts of the text, right click, and ask for "Translation Selection to English". This gets very tedious, especially when I have automatic translations for Spanish websites already turned on (browser.translations.alwaysTranslateLanguages = es).

  1. Proposed solution

To work around these websites which mis-declare their language, is there a way to always show the translation icon in the address bar?

I had also thought of removing my browser's default language, so that the translation icon would always appear on every webpage. However, that would mean that websites that present different versions based on browser language wouldn't display my native language at first, or might not work at all? So this seems like a less good solution.

  1. Firefox details

140.4.0esr (64-bit) running on Debian Linux 13 (Trixie)

Here's some related Firefox config options for translations, and their settings on my browser. I think I've only changed the configuration option to always translate Spanish webpages.

browser.translation.neverForLanguages browser.translations.alwaysTranslateLanguages es browser.translations.automaticallyPopup true browser.translations.chaos.errors false browser.translations.chaos.timeoutMS 0 browser.translations.enable true browser.translations.logLevel Error browser.translations.mostRecentTargetLanguages en browser.translations.neverTranslateLanguages browser.translations.newSettingsUI.enable false browser.translations.panelShown true browser.translations.select.enable true browser.translations.simulateUnsupportedEngine false browser.translations.useHTML false browser.translations.useLexicalShortlist false gfx.canvas.remote.use-canvas-translator-event true services.settings.main.translations-models.last_check 1773722950 services.settings.main.translations-wasm.last_check 1773722950 toolkit.telemetry.translations.logLevel Error

Solved 2 396

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 be… (tuilleadh eolais)

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!

Cartlannaithe 6 390

Using canvas/context to scale an image that displays ok before removes the image data, ok in Chome/Safari.

The app sizes two adjacent images to the same height. Maybe there's a better approach? This works, in that I see the original image displayed at the wrong size: //img.… (tuilleadh eolais)

The app sizes two adjacent images to the same height. Maybe there's a better approach?

This works, in that I see the original image displayed at the wrong size:

   //img.src = imgsrc.src;

This sizes the image but without the data (black square for toDataURL w/ image/jpeg) in FF, but not Chrome and Safari:

   var canvas = document.createElement( 'canvas' );
   canvas.width = width;
   canvas.height = avail_height;
   var context = canvas.getContext( '2d' );
   // Tried/failed: Fill white background for JPEG export
   //context.fillStyle = '#fff';
   //context.fillRect(0, 0, canvas.width, canvas.height);
   context.drawImage( imgsrc, 0, 0, canvas.width, canvas.height);
   context.lineWidth = 150; // ??
   img.src = canvas.toDataURL('image/jpeg', 0.92);
   img.onmousedown = disableDragging; // for FF
   img.style.opacity = "1.0"

The page is the view.html one gets to via Enter on phobrain.com.

Solved Cartlannaithe 8 390

if you're asking what subject to entry on the Firefox support from --tell me what issu you're having

I'm trying to access a local web application (GoPhish) running at https://127.0.0.1:3333 on Kali Linux. Firefox is showing a security warning and won't let me access the … (tuilleadh eolais)

I'm trying to access a local web application (GoPhish) running at https://127.0.0.1:3333 on Kali Linux. Firefox is showing a security warning and won't let me access the site . How can l bypass this warning safely, or add an exception for local addresses with self-singned certificates?

Cartlannaithe 1 390

Second charachter on address bar stops autocomplete

Hi all, I'm using Firefox 140.0.4 (64-bit) on Debian Trixie and I'm getting a weird behavior with the auto-complete functionality of the address bar. If I type the first … (tuilleadh eolais)

Hi all, I'm using Firefox 140.0.4 (64-bit) on Debian Trixie and I'm getting a weird behavior with the auto-complete functionality of the address bar.

If I type the first character the address gets auto filled (see 20250711_First-character-auto-fill-working.png attachment), then if I type the second character the auto filled result disappears (see 20250711_Second-character-auto-fill-NOT-working.png).

I've tried any search option combination, but results doesn't change. At the moment I'm using for the address bar just "Browsing history" (see 20250711_Address-bar-settings.png).

The correct behavior would be, as in the past, that new characters confirming the address would leave things as they are. Do you have any suggestion on how to restore the original behavior?

Many thanks,

Raoul

Cartlannaithe 3 390

Chromebook Plus - Lenovo 14 2025 (ARM64) - Streaming video services issue

Trying to run Prime and Netflix in a Linux browser on my new Lenovo Chromebook Plus 14. Not that this is an ARM based unit (Kompanio Ultra 910). I can successfully downl… (tuilleadh eolais)

Trying to run Prime and Netflix in a Linux browser on my new Lenovo Chromebook Plus 14. Not that this is an ARM based unit (Kompanio Ultra 910).

I can successfully download Firefox for Linux: Mozilla Firefox Debian Package mozilla-deb-1.0 144.0 (aarch64)

But when I go to run streaming video services get: Prime Video is incompatible with your current operating system or web browser. You must update to watch Prime Video titles. Review the Prime Video system requirements. If the problem continues, please contact Amazon Customer Service and refer to error 7132.

Same with Netflix.

any ideas, thoughts, solutions?  :)

Cheers.

Cartlannaithe 4 389

firefox process will not start on ubuntu 24.04

i was using firefox with multiple tabs for most of today, had to shut pc down to run errands. When i restarted pc, firefox would not start, i have it pinned on my task ba… (tuilleadh eolais)

i was using firefox with multiple tabs for most of today, had to shut pc down to run errands. When i restarted pc, firefox would not start, i have it pinned on my task bar/start menu/whatever. I opened my system moniter to see what was going on when i tried to start firefox and the processes do not show up in the process list. I tried a reinstall with the ubuntu software store and no noticeable change in behavior. Not sure how to get into the profile section, the option for it with a right click on the firefox icon does nothing seemingly. Under normal operations i have seen two firefox processes listed.

Cartlannaithe 7 389

FF 146 stopped creating active links

Untill latest update when on a site was link, ex. http://site.site/repository/text.txt i could select the link and from context menu select "open link in new tab/window" … (tuilleadh eolais)

Untill latest update when on a site was link, ex. http://site.site/repository/text.txt i could select the link and from context menu select "open link in new tab/window" or "save link as". Now only "copy link" action is available. Im on Ubuntu 24.04.3 LTS Thanks for any response.

Cartlannaithe 1 387

Tabs Crashing Constantly in FF 146.x 147.x and 147.0.7esr

I've been using Firefox on Linux since it was Nautilus. Currently running EasyOS Linux Daedalus and Excalibur on different Lenovo ThinkCentre Tiny Core i3-8100t boxes and… (tuilleadh eolais)

I've been using Firefox on Linux since it was Nautilus. Currently running EasyOS Linux Daedalus and Excalibur on different Lenovo ThinkCentre Tiny Core i3-8100t boxes and different drives: A good Samsung SSD and two good flashdrives. 32G new RAM installed on each box. I've been using these boxes for over a year. For the last month or so, ever since updating to v. 146 my tabs have been crashing like crazy! I don't normally have more than 10 tabs open at once. But now, as soon as I open a 5th tab it crashes.

I'm running Top to watch CPU and RAM usage. I see nothing unusual. I've rebooted. Disabled all add-ons and run in Troubleshoot mode. Tabs still crash. My only add-ons are uBlock Origin, Temporary Containers and Dark Mode. It happens whether I have hardware acceleration turned on or off. I don't know what else to try. Here are my most recent crash reports. I hope you can figure out the problem. Thank you so much!

Submitted Crash Reports Report ID Date Submitted bp-570147ea-4ab1-4543-828a-d5b7d0260202 2/2/26, 12:04 PM View bp-6422cca3-a458-4b68-9d70-e4acc0260202 2/2/26, 12:00 PM View bp-6be58295-46a1-411d-a241-3f85b0260202 2/2/26, 2:52 AM View bp-afa98aeb-f15f-418b-abe5-06da80260202 2/1/26, 10:03 PM View bp-9c7632d5-db44-47e3-babf-a2bd70260202 2/1/26, 8:28 PM View bp-95d245df-f31d-4512-80bd-f0d180260202 2/1/26, 8:18 PM View bp-85752e77-2bb1-4f13-a2b5-68fdb0260202 2/1/26, 7:24 PM View bp-ae5d263d-608b-485e-867e-2aa190260202 2/1/26, 7:21 PM View bp-9efef3a5-b1ef-4279-b055-fa4760260202 2/1/26, 7:00 PM View bp-5b05d78e-26d2-4896-bbba-bea6a0260202 2/1/26, 6:58 PM View bp-acbd8424-5545-4e40-afbb-93ca90260201 2/1/26, 12:33 PM View bp-1415051a-9824-44d7-8f87-8fd270260124 1/24/26, 8:47 AM View bp-9c50b2a5-27a7-45f6-a65c-e45070260124 1/24/26, 8:47 AM View bp-28e5e55f-952f-45a9-9c99-44e300260124 1/23/26, 11:37 PM View bp-3b509a00-0a8f-4a67-94ec-fad500260124 1/23/26, 11:37 PM View bp-65b6d54d-cbf7-4045-b189-019fb0260124 1/23/26, 11:23 PM View bp-a5e110b3-6d7d-4aa4-b8a7-439f10260124 1/23/26, 9:32 PM View bp-d74bf5ce-fdcd-41e4-b2be-6ed990260124 1/23/26, 9:12 PM View bp-cebf5062-d3aa-4653-9d64-2ad0a0260124 1/23/26, 6:57 PM View bp-1bcd2f2e-2136-412b-8919-ed96c0260123 1/23/26, 5:54 PM View bp-50d66365-399c-464a-b6f4-8a3230260123 1/23/26, 5:32 PM View bp-95b5ab2b-35d4-4867-8f33-ba1b10260123 1/23/26, 5:26 PM View bp-b7c48b83-02cd-435f-b466-dab650260123 1/23/26, 5:26 PM View bp-1eccdf1e-184f-4cd8-8e1f-1d6cb0260123 1/23/26, 3:33 PM View bp-22b3fe80-9420-403b-84a4-4840c0260123 1/23/26, 12:26 PM View bp-aa6baadc-fa01-4c42-90d5-5d4120260202 2/2/26, 12:07 PM View bp-9cf8b3be-8be4-4fd2-a812-444540260202 2/2/26, 12:07 PM View bp-22f8081d-7052-4962-a699-66b600260202 2/2/26, 12:07 PM View

Solved Cartlannaithe 3 386

User.js file does not apply

I've installed firefox with pacman on Linux, and I installed arkenfox. It did not work, I tried other user.js', none worked. I've also tried wiping my entire firefox root… (tuilleadh eolais)

I've installed firefox with pacman on Linux, and I installed arkenfox. It did not work, I tried other user.js', none worked. I've also tried wiping my entire firefox root folder, then using arkenfox, but did not work.

Cartlannaithe 4 380

How can I pass the full url to the AI prompt?

I've found out that you can create custom prompts for the AI sidebar with the configuration `browser.ml.chat.prompts.*`. Usually, this is done with the selection text. Ho… (tuilleadh eolais)

I've found out that you can create custom prompts for the AI sidebar with the configuration `browser.ml.chat.prompts.*`. Usually, this is done with the selection text. However, I'd like to pass the URL instead. I could use `%url%`, but that does not include parameters after `?` and hence does not work for Youtube.

Is there any variable that I can use to pass the full URL including parameters of the URL?

Solved Cartlannaithe 2 380

Firefox/Apparmor

Hello, i was trying to check my apparmor stuff because of the warning on Linux. Now i tried duck.ai to instruct me , but created more damage than anything else. It said … (tuilleadh eolais)

Hello,

i was trying to check my apparmor stuff because of the warning on Linux. Now i tried duck.ai to instruct me , but created more damage than anything else. It said to set firefox in enforcement mode, now it wont start (well im using Firefox right now in complain mode)

How do I fix this problem that everything runs normally and safe?


Please help me! madmorph666@madmorph666-E14301:~$ sudo aa-complain /usr/bin/firefox /usr/bin/firefox wird in den Complain-Modus versetzt. madmorph666@madmorph666-E14301:~$ firefox ATTENTION: default value of option mesa_glthread overridden by environment. [Parent 72019, Main Thread] WARNING: gtk_widget_get_clipboard: assertion 'gtk_widget_has_screen (widget)' failed: 'glib warning', file /builds/worker/checkouts/gecko/toolkit/xre/nsSigHandlers.cpp:201

(firefox:72019): Gtk-CRITICAL **: 03:12:17.894: gtk_widget_get_clipboard: assertion 'gtk_widget_has_screen (widget)' failed [Parent 72019, Main Thread] WARNING: gtk_clipboard_request_contents: assertion 'clipboard != NULL' failed: 'glib warning', file /builds/worker/checkouts/gecko/toolkit/xre/nsSigHandlers.cpp:201

(firefox:72019): Gtk-CRITICAL **: 03:12:17.894: gtk_clipboard_request_contents: assertion 'clipboard != NULL' failed [Parent 72019, Main Thread] WARNING: gtk_widget_get_clipboard: assertion 'gtk_widget_has_screen (widget)' failed: 'glib warning', file /builds/worker/checkouts/gecko/toolkit/xre/nsSigHandlers.cpp:201

(firefox:72019): Gtk-CRITICAL **: 03:12:17.894: gtk_widget_get_clipboard: assertion 'gtk_widget_has_screen (widget)' failed [Parent 72019, Main Thread] WARNING: gtk_clipboard_request_contents: assertion 'clipboard != NULL' failed: 'glib warning', file /builds/worker/checkouts/gecko/toolkit/xre/nsSigHandlers.cpp:201

(firefox:72019): Gtk-CRITICAL **: 03:12:17.894: gtk_clipboard_request_contents: assertion 'clipboard != NULL' failed [Parent 72019, Main Thread] WARNING: gtk_widget_get_clipboard: assertion 'gtk_widget_has_screen (widget)' failed: 'glib warning', file /builds/worker/checkouts/gecko/toolkit/xre/nsSigHandlers.cpp:201

(firefox:72019): Gtk-CRITICAL **: 03:12:17.894: gtk_widget_get_clipboard: assertion 'gtk_widget_has_screen (widget)' failed [Parent 72019, Main Thread] WARNING: gtk_clipboard_request_contents: assertion 'clipboard != NULL' failed: 'glib warning', file /builds/worker/checkouts/gecko/toolkit/xre/nsSigHandlers.cpp:201

(firefox:72019): Gtk-CRITICAL **: 03:12:17.894: gtk_clipboard_request_contents: assertion 'clipboard != NULL' failed [Parent 72019, Main Thread] WARNING: gtk_widget_get_clipboard: assertion 'gtk_widget_has_screen (widget)' failed: 'glib warning', file /builds/worker/checkouts/gecko/toolkit/xre/nsSigHandlers.cpp:201

(firefox:72019): Gtk-CRITICAL **: 03:12:17.894: gtk_widget_get_clipboard: assertion 'gtk_widget_has_screen (widget)' failed [Parent 72019, Main Thread] WARNING: gtk_clipboard_request_contents: assertion 'clipboard != NULL' failed: 'glib warning', file /builds/worker/checkouts/gecko/toolkit/xre/nsSigHandlers.cpp:201

(firefox:72019): Gtk-CRITICAL **: 03:12:17.894: gtk_clipboard_request_contents: assertion 'clipboard != NULL' failed ATTENTION: default value of option mesa_glthread overridden by environment. ATTENTION: default value of option mesa_glthread overridden by environment. ATTENTION: default value of option mesa_glthread overridden by environment. ATTENTION: default value of option mesa_glthread overridden by environment. ATTENTION: default value of option mesa_glthread overridden by environment. ATTENTION: default value of option mesa_glthread overridden by environment. [Child 72430, Main Thread] WARNING: Unable to open /var/lib/flatpak/exports/share/dconf/profile/user: Keine Berechtigung: 'glib warning', file /builds/worker/checkouts/gecko/toolkit/xre/nsSigHandlers.cpp:201

(/usr/lib/firefox/firefox-bin:72430): dconf-WARNING **: 03:12:53.181: Unable to open /var/lib/flatpak/exports/share/dconf/profile/user: Keine Berechtigung ATTENTION: default value of option mesa_glthread overridden by environment. ATTENTION: default value of option mesa_glthread overridden by environment. ATTENTION: default value of option mesa_glthread overridden by environment. ATTENTION: default value of option mesa_glthread overridden by environment.

Cartlannaithe 9 380

"Bad request" following account authorization

I'm attempting to sync my account between a Windows host and a Linux host. Logging into my account on Linux brings up a "Authorize this sign-in" window that demands entry… (tuilleadh eolais)

I'm attempting to sync my account between a Windows host and a Linux host. Logging into my account on Linux brings up a "Authorize this sign-in" window that demands entry of a 7-char "Authorization Code" (not the same as a six-digit authentication code) which is emailed to me. After entering the authorization code, a window appears stating "Bad request - Something went wrong. Please close this tab and try again." This happens consistently, and only on the Linux host. Firefox 134.0.2 mint-001 1.0. Linux Mint 22.1. Any ideas about what went wrong?

Cartlannaithe 2 379

Trouble with streaming services(like youtube(only streams ), twitch, music streaming) on nightly

Trouble with streaming services(like youtube(only streams ), twitch, music streaming) on nightly Firefox Nightly 145.0a1 (2025-10-11) (x64) Cachy OS Binary from firefox.c… (tuilleadh eolais)

Trouble with streaming services(like youtube(only streams ), twitch, music streaming) on nightly Firefox Nightly 145.0a1 (2025-10-11) (x64) Cachy OS Binary from firefox.com

Solved Cartlannaithe 5 378

Lost all my pinned an open tabs

Firefuxxed was refusing to open new tabs so I shut it down and restarted it (always fixes it) and all my pinned and open tabs were gone with no way to recover them, it to… (tuilleadh eolais)

Firefuxxed was refusing to open new tabs so I shut it down and restarted it (always fixes it) and all my pinned and open tabs were gone with no way to recover them, it took me half an hour to manually restore the pinned ones one by one but not all of them as I cannot remember all of them let alone all the open tabs I had (hours of research gone down the toilet).

There should be a way to backup and restore pinned and open tabs so this doesn't happen, the history option does nothing.

OS: Linux Mint 22 fresh install from a week ago Previous version of Firefuxxed updated after this shamossel.

Locked Cartlannaithe 8 378