Showing questions for topic:
Kukhonjiswa imibuzo ethegiwe:

Trouble with Chase Bank

With Mozilla Firefox for Linux Mint 150.0 after logging into Chase Bank , when trying to pay off my credit card, I get a message: "It looks like this part of our site is … (funda kabanzi)

With Mozilla Firefox for Linux Mint 150.0 after logging into Chase Bank , when trying to pay off my credit card, I get a message: "It looks like this part of our site is not working right now". However the site works perfectly with Chrome, thus the problem must be with Firefox. I have cleared the Chase cookies and still getting the same result.

Solved 5 1 40

Cannot move answers to questions in an online test

Hi. I'm taking an online course for HVAC certification. Some test questions require to arrange the answers in a logic sequence. When I try to move the answers up or down,… (funda kabanzi)

Hi. I'm taking an online course for HVAC certification. Some test questions require to arrange the answers in a logic sequence. When I try to move the answers up or down, they 'snap back' into the original (wrong) position. Is there a solution to this issue? I'm using FireFox with Linux Mint Cinnamon.

Greetings, Matt

Solved 1

blogspot frame not displaying

Since the other day blogspot image frames are not displaying correctly (see attached screenshot) Everything works fine on Chromium... Name Firefox Version 148.0.2 Buil… (funda kabanzi)

Since the other day blogspot image frames are not displaying correctly (see attached screenshot)

Everything works fine on Chromium...

Name Firefox Version 148.0.2 Build ID 20260309125808 Distribution ID mint-001 Update Channel release-cck-mint User Agent Mozilla/5.0 (X11; Linux x86_64; rv:148.0) Gecko/20100101 Firefox/148.0 OS Linux 6.17.0-19-generic #19~24.04.2-Ubuntu SMP PREEMPT_DYNAMIC Fri Mar 6 23:08:46 UTC 2

Cinnamon is the UI

Solved 2 130

Why amazon musik unlimited do not work?

Hey, i am since 30. 03.2026 from windows 11 to linux mint changed, in firefox- browser amazon musik unlimited doesn`t work. But i have there all of my musik and i`ll miss… (funda kabanzi)

Hey, i am since 30. 03.2026 from windows 11 to linux mint changed, in firefox- browser amazon musik unlimited doesn`t work. But i have there all of my musik and i`ll missed it so. Is there no option to here my musik?

Solved 3 90

Your browser is not currently supported - twitch.tv

I updated firefox through apt, and since then, have not been able to log into twitch I am on ubuntu 24 apt list --installed | grep firefox firefox/mozilla,now 144.0.2~bui… (funda kabanzi)

I updated firefox through apt, and since then, have not been able to log into twitch I am on ubuntu 24

apt list --installed | grep firefox firefox/mozilla,now 144.0.2~build1 amd64 [installed]

Attempting to log in returns the generic "Your browser is not currently supported"

Solved Okugcinwe kunqolobane 8 2409

Some web based games laggy since Firefox 148

I play https://crazyshooters.com/ and https://crazyshooters2.com/ a lot! But the game became laggy since Firefox 148 and my ping spikes up. Other browsers play fine. I am… (funda kabanzi)

I play https://crazyshooters.com/ and https://crazyshooters2.com/ a lot! But the game became laggy since Firefox 148 and my ping spikes up. Other browsers play fine. I am on Linux Mint if that helps. (147 and below run fine)

Solved 11 60

Unable to play some YouTube videos on Firefox on Steam Deck

First off, apologies - I don't know if this is a YouTube problem, a Steam Deck problem or a Firefox problem. I haven't been able to figure out the cause of this problem f… (funda kabanzi)

First off, apologies - I don't know if this is a YouTube problem, a Steam Deck problem or a Firefox problem. I haven't been able to figure out the cause of this problem for months so I'm trying you guys because you're more responsive than YouTube has been so I'm really hoping it's a Firefox problem.

Basically since early June I've been getting "an error occurred" errors for YouTube videos of approximately an hour. Longer videos and shorter videos tend to play fine, but I get the issue with videos under ten minutes sometimes as well.

This only occurs in Firefox on my Steam Deck (SteamOS). Other browsers and other devices are fine.

I have cleared my cache, cleared cookies, disabled extensions and logged in and out of YouTube to no avail. The problem still occurs in troubleshoot mode and updating Firefox hasn't fixed it.

Would appreciate any troubleshooting tips and again, apologies if this ends up not being a Firefox problem, I just don't know what else to try at this point.

Solved Okugcinwe kunqolobane 2 702

Redirect back goes to wrong page

I have a Ruby on Rails app and whenever I click on a button in it that submits a POST request, instead of redirecting back, it sends me to a GET of the POST request. For … (funda kabanzi)

I have a Ruby on Rails app and whenever I click on a button in it that submits a POST request, instead of redirecting back, it sends me to a GET of the POST request. For example I am at /a, I make a POST request to /a/b, instead of redirecting back to /a, it sends me to /a/b which returns a 404 as there is only a POST defined at this route. I have tested this same site in Chromium and the redirects work properly, returning me back to /a

Solved 1 80

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… (funda kabanzi)

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 Okugcinwe kunqolobane 15 397

Images from canvas black or transparent: img.src = canvas.toDataURL(); // FF: 'image/jpeg'=black. Png,webp,default=transparent.

I don't know if this ever worked in FF, since I've been on Chrome a while. I tried canvas.toBlob() in FF without a solution. The behavior is the same whether the served i… (funda kabanzi)

I don't know if this ever worked in FF, since I've been on Chrome a while. I tried canvas.toBlob() in FF without a solution.

The behavior is the same whether the served image is jpg or webp. A Servlet delivers the image data, here in webp:

          response.setHeader("Content-Type", "image/webp");

On page, I use a canvas thus => see '// FIREFOX'

     var canvas = document.createElement( 'canvas' );
     canvas.width = width;
     canvas.height = avail_height;
     var context = canvas.getContext( '2d' );
     context.drawImage( imgsrc, 0, 0, width, avail_height);
     context.lineWidth = 150;
     // FIREFOX: canvas.toDataURL('image/jpeg')=black, png,webp,default=transparent
     img.src = canvas.toDataURL('image/jpeg');
     img.onmousedown = disableDragging; // for FF
     img.style.opacity = "1.0";
     console.log('setImg ok');

Inspecting a black jpeg:

        data:image/jpeg;base64,...

Thanks!

Solved Okugcinwe kunqolobane 7 687

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.… (funda kabanzi)

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 Okugcinwe kunqolobane 8 390

The last update broke gmail as well as e.g. https://www.radiofrance.fr

Firefox worked this morning, but stopped in the afternoon. I ran an update, but could not connect to my gmail account anymore, or listen to the Radio France podcasts All … (funda kabanzi)

Firefox worked this morning, but stopped in the afternoon. I ran an update, but could not connect to my gmail account anymore, or listen to the Radio France podcasts All this works from Google Chrome (not my default browser). All under the Mozilla VPN 2001:4860:7:150e::fc (why the IPv6 address?)

Firefox 148.0 (20260216153405) Details Installed on: 26 February 2026 at 18:55:57 Status: The Update was successfully installed

~> uptime

21:59:01 up  1:22,  1 user,  load average: 0.47, 0.38, 0.32

~> uname -a Linux tanya 6.8.0-101-generic #101-Ubuntu SMP PREEMPT_DYNAMIC Mon Feb 9 10:15:05 UTC 2026 x86_64 x86_64 x86_64 GNU/Linux ~> cat /etc/os-release PRETTY_NAME="Ubuntu 24.04.4 LTS" NAME="Ubuntu" VERSION_ID="24.04" VERSION="24.04.4 LTS (Noble Numbat)" VERSION_CODENAME=noble ID=ubuntu ID_LIKE=debian HOME_URL="https://www.ubuntu.com/" SUPPORT_URL="https://help.ubuntu.com/" BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" UBUNTU_CODENAME=noble LOGO=ubuntu-logo

Thanks, Marc

Solved Okugcinwe kunqolobane 3 99

I can no longer log in to discover card website; I could 2 weeks ago and I can login using other browsers.

Hello, I am using Linux Mint on a desktop with the latest version of Firefox. Two weeks ago I could login to the Discover website with no problems. Suddenly I can not l… (funda kabanzi)

Hello, I am using Linux Mint on a desktop with the latest version of Firefox. Two weeks ago I could login to the Discover website with no problems. Suddenly I can not log in, but get an error message that something is wrong and I can't login. I can login using Chrome on this machine. My wife gets the same message when she tried to login to her account on my computer. After several discussions with Discover, all I get is "it is not our problem."

I am having no problems logging into other accounts with Firefox on this computer.

I have not explicitly changed anything on the browser or computer. I have done some updates which included Firefox. I can login on a different Linux computer using an older version of Firefox. Of course the updates were also to the computer and I will ask the same question to the Linux forum.

I really like Firefox and would hate to have to change to Chrome.

Thanks so much for your help.

Bob Bulfin

Solved 12 150

Directv will not allow using Firefox to access

I have spent hours with Tech department and digital assistand department at Directv. Today they are telling me as long as I use Firefox I will be unable to access my acco… (funda kabanzi)

I have spent hours with Tech department and digital assistand department at Directv. Today they are telling me as long as I use Firefox I will be unable to access my account. I have paid to have my computer checked out and was told that it was updated and the system was working fine. How to I get Directv to recognize my system?

Solved Okugcinwe kunqolobane 3 339

My browser (latest nightly) thinks its a word processor. Enter key in Google search drops to a new line

My Firefox browser (nightly snap 154.0a1 on Ubuntu 24.04) has been misbehaving lately (~2 weeks now) and I'm at a loss why. First, when I scroll using the mouse wheel, th… (funda kabanzi)

My Firefox browser (nightly snap 154.0a1 on Ubuntu 24.04) has been misbehaving lately (~2 weeks now) and I'm at a loss why.

First, when I scroll using the mouse wheel, the scrollbar continuously shoots back to the top constantly during scrolling.

Second, when I type text in a Google box and hit enter key, it drops to the next line - like one would expect in a text processing application.

Third, when on YouTube, trying to rewind/forward video instead starts navigating to clickable links. Of particular note (see the attached screenshots) is the appearance of text (such as "Skip navigation" and "Volume" to name a few) - something I've never seen before.

This happens with a new profile as well.

Now, I know that nightly will sometimes have broken items but this is a weird one. I at one time thought the batteries on my wireless keyboard could be responsible but new batteries (confirmed new with a digital multimeter) did not change that.

I'm on Ubuntu 24.04 LTS fully patched. Anyone here with ideas on what it might be?

Solved 4 30

Firefox 141.0 (aarch64) won't load last 20% of AliExpress website

Hello, American website and the German website German website fail to load the last 20%. This causes important top row graphics like logins and accounts not showing. Fire… (funda kabanzi)

Hello, American website and the German website German website fail to load the last 20%. This causes important top row graphics like logins and accounts not showing. Firefox private window loads the AliExpress website 100%.

I wiped History cache from Firefox, however same issue. Other websites load normally. I can't log in to AliExpress to report the issue there.

Specs: 141.0 (aarch64) Mozilla Firefox fo Raspberry Pi OS raspberrypios - 1.0

Solved Okugcinwe kunqolobane 4 199