Showing questions for topic:
Showing questions tagged:

Yahoo mail

I am unable to sign in to my yahoo mail account. It gives me a fault that "something went wrong, please try another device". I can use brave as my browser and sign in wi… (read more)

I am unable to sign in to my yahoo mail account. It gives me a fault that "something went wrong, please try another device". I can use brave as my browser and sign in with no problem but not with firefox. Any idea why?

Open 16 238

Bank of America login

I can no longer enter a password on the login page at https://secure.bankofamerica.com/login/sign-in/signOnV2Screen.go. I was able to change my password but it didn't he… (read more)

I can no longer enter a password on the login page at https://secure.bankofamerica.com/login/sign-in/signOnV2Screen.go. I was able to change my password but it didn't help. A BofA agent could not identify the problem and walked me through the login using Chromium.

Archived 16 293

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… (read more)

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 Archived 15 341

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… (read more)

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 13 118

Sites only working in Chrome.

Hello all Firstly I have been using Firefox for about 2 decades and it has always worked perfectly - you can take a bow. Now for my problem I have been using Firefox for… (read more)

Hello all

 Firstly I have been using Firefox for about 2 decades and it has always worked perfectly - you can take a bow.
Now for my problem
I have been using Firefox for internet banking for many years without any problems - the usual login, password ans secret questions. Just after Xmas my bank updated it's website and suddenly nothing works. I was told that it now only works on Chrome and NOTHING else - not Firefox, Edge or anything else. I am able to log-in but can't see my account balances or perform any other functions - it just jams up to the point that I even have trouble closing Firefox.
I use Firefox exclusively because I don't trust Chrome or Google - they are just a massive data collection/sharing operation. I have Chrome Mask installed but it just doesn't make any difference.
 Is there anything that I can do or add-on to over-ride this problem?

I am running Mint Linux 22.2 with Firefox 151.0.1

Solved 13 65

Sites in the latest versions stopped opening.

After upgrading my 128 esr to 140 esr, some sites stopped opening. In regular versions, it has not opened for a long time. There are many such sites, for example, qwen3.a… (read more)

After upgrading my 128 esr to 140 esr, some sites stopped opening. In regular versions, it has not opened for a long time. There are many such sites, for example, qwen3.app or temp-mail.io. It thinks for a long time and finally a message that the time has expired. Chromium is ok.

Archived 10 283

Data Tables open but close immedaitely

I have an Investors.com account and a feature they offer is a stock sector data table that shows recent performance and other information. When I try to open these tables… (read more)

I have an Investors.com account and a feature they offer is a stock sector data table that shows recent performance and other information. When I try to open these tables they close immediately, but if I use my tablet with a different browser they will remain open. I believe this is a simple setting that I need to adjust, but I don't know enough to figure it out.

Archived 8 239

There are Dozens of open issues on Bugzilla about YouTube. Will they ever be addressed?

I have at least one question on the support forum which has never been answered. So I went to Bugzilla, and discovered dozens of YouTube issues under the Open/Unconfirmed… (read more)

I have at least one question on the support forum which has never been answered. So I went to Bugzilla, and discovered dozens of YouTube issues under the Open/Unconfirmed status.

I can reproduce my problems. I'm sure others can reproduce their problems. Nothing is done. NOT EVEN admitting there is a problem.

If I can't use YouTube on Firefox (I can't), then why am I using FF? It is one of the biggest sites on all of the internet. But FF apparently doesn't care if it doesn't work.

What. Is. Going. On?

(See the attached image... the big blank space is where the video should display)

Open 8 396

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… (read more)

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 Archived 8 1450

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.… (read more)

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 Archived 8 403

icloud sign in fails with firefox: "Failed to verify your identity. Try again."

Hi, I'm using Firefox 142 on Ubuntu 24.04. It's a fresh install. I cannot sign in icloud.com with Firefox even though it works with other browsers like Brave. I deleted a… (read more)

Hi, I'm using Firefox 142 on Ubuntu 24.04. It's a fresh install. I cannot sign in icloud.com with Firefox even though it works with other browsers like Brave. I deleted all cookies and site data and disabled extensions (KeePassXC). It doesn't help. I tried in new private window. No success. I copy my password from a password manager, so, no, I haven't mistyped it.

Here's what I do:

  1. Open Firefox and go to icloud.com
  2. Click on the "Sign In" button
  3. Enter my Apple-ID and click on the arrow on the right end of the "Email or Phone Number" field

At this point Brave behaves differently than Firefox. See below for how Brave behaves.

Firefox: -> A "Password" field appears (no buttons "Continue with Password" and "Sign in with Passkey")

  1. Enter my password and click on the arrow on the right end of the "Password" field

-> Error message "Failed to verify your identity. Try again" appears. See icloud.png

Brave: -> Two buttons "Continue with Password" and "Sign in with Passkey" appear. See icloud-with-brave.png

  1. Click on button "Continue with Password"

-> A "Password" field appears.

  1. Enter my password and click on the arrow on the right end of the "Password" field

-> 2FA code is sent to my iPhone -> "Two-Factor Authentication" form opens... etc. complete sign in successfully

Please help!

Unfortunately I cannot attach the HAR file from the login sequence because the password is included. However, I attached some screenshots from the Web Developer Tools. It seems to me that the login flow with Firefox is broken. I can't tell who's to blame, Apple of Firefox. The error message with Firefox is always the same, no matter whether I enter the correct password or rubbish. In Brave, however, there is a more precise error message when I enter a bad password. See icloud-with-brave-wrong-password.png

Archived 7 756

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… (read more)

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 Archived 7 638

Videos hang on BBC News website

They play for a couple of seconds, then the panel they are playing in goes black. They used to work a month or two ago. Videos play fine in YouTube. They also play fine i… (read more)

They play for a couple of seconds, then the panel they are playing in goes black. They used to work a month or two ago. Videos play fine in YouTube. They also play fine in apps like VideoPlayer and VLC. They play fine in Chromium based browsers Opera, Brave and Vivaldi. My graphics card requires switching acceleration off. I can’t find a switch for that in Firefox.

Problem Videos start playing, then after a few seconds the video panel turns black. Audio may continue. Refreshing does not help.

Environment

   OS: Fedora Linux 43
   Firefox 147.0.1 (also tested Firefox Flatpak)
   Display server: Wayland and X11 (both tested)
   Hardware acceleration: on and off (tested)
   Media Source Extensions: enabled (disabling MSE triggers an “unsupported device” error)

What works

   BBC News videos play correctly in Chromium-based browsers (Brave, Vivaldi)
   Videos play correctly in mpv/VLC
   Other video sites (e.g., YouTube) play correctly in Firefox

What I’ve tried in Firefox

   Disabling hardware acceleration
   Disabling VA-API
   Disabling WebRender
   Disabling RDD sandbox
   Running Firefox under X11
   Using the Firefox Flatpak build

None of these measures help. This suggests the issue is related to Firefox’s interaction with BBC’s player on Linux. Has anyone else seen this, or is there a known workaround?

Open 7 209

Differences between implementation of :has between FF and Chrome.

FF bug (?) (my own tests), Chrome works as expected, was also gemini ai discussed.: Why for the following css rule (new FF): header:has(~ noscript) ~ * div[class*="-sl… (read more)

FF bug (?) (my own tests), Chrome works as expected, was also gemini ai discussed.:

 Why for the following css rule (new FF):
 header:has(~ noscript) ~ * div[class*="-slider"] {width: calc(var(--number-of-slides) * 100%);}
 the --number-of-slides is defined and visible:
 header:has(~ noscript) ~ * div[class*="-slider"] {--number-of-slides: 1}
 but this one isn't at all:
 header:has(~ noscript:has([value="1"])) ~ * div[class*="-slider"] {--number-of-slides: 1}
 And all remembering that in the noscript there is direct descendant having value="1"

As mentioned it works as expected (so average person naturally may think it sould) well for Chrome - noscript is visible, js disabled, controls are visible. Sophisticated use case of :has() but it sort of "has right" to happen.

Locked Archived 6 45

I get an edgesuite.net error from many sites using Firefox ESR

I have CentOS Stream release 8 on my laptop and desktop, with firefox-115.11.0-1.el8.x86_64 If I connect to some sites, such as signin.costco.com, www.tesla.com/modely, w… (read more)

I have CentOS Stream release 8 on my laptop and desktop, with firefox-115.11.0-1.el8.x86_64

If I connect to some sites, such as signin.costco.com, www.tesla.com/modely, www.airindia.com, www.meijer.com, I get errors such as You don't have permission to access "http://www.tesla.com/modely" on this server. Reference #18.71951eb8.1774502305.1a7c7680 https://errors.edgesuite.net/18.71951eb8.1774502305.1a7c7680 You don't have permission to access "http://www.airindia.com/" on this server. Reference #18.c50e2017.1774501671.2dadbdb4 https://errors.edgesuite.net/18.c50e2017.1774501671.2dadbdb4

The error appears invariant of my IP address (different IPv4 addresses after rebooting my router, or an IPv6 address via a proxy). I have Firefox 60.7.2esr and 78.5.0esr on an older machine. Those sometimes work to some of these sites, but don't support all the site functionality, e.g. I can't actually login to Costco. www.tesla.com/modely works in 78.5.0esr. The Firefox on my Android tablet works for tesla; I haven't checked all the other sites. In conversation with my ISP (Starlink) customer service AI, I have tried deleting cookies and disabling plugins (only H264 and Widevine) with no effect. It suggests there is a problem with Akamai fingerprinting the browser.

I get edgesuite errors using Lynx or elinkx or curl also

Solved 6 1 305

Icloud Website

For some reason, I was unable to verify my account. I even thought I was wrong with my password, but that was not the case. When I use a different browser, Apple does not… (read more)

For some reason, I was unable to verify my account. I even thought I was wrong with my password, but that was not the case. When I use a different browser, Apple does not just ask me for a password but also a key; however, this option was not available on Firefox. With this, I can't log in to my iCloud on my Firefox Linux app.

Archived 5 137

Upon sign-in to Hotmail, Firefox reports "you have tried to sign in too many times with wrong password", which is not true, and password works with chrome.

I have had this problem in the past, but now its back again. At first I just reset my password every time, then I set up the password to be auto-filled. I have had no sig… (read more)

I have had this problem in the past, but now its back again. At first I just reset my password every time, then I set up the password to be auto-filled. I have had no sign-in failures for months. At one point i did figure out how to check my sign in history to see the failed attempts, and there were none. That was a long time ago, and I have since forgotten how to check this. The problem does seem to be with firefox as it does not happen with chrome.

Open 5 27

After update from 149.0.2 to 150.0 signin to https://id.bund.de leads to "internal error"

I am using Linux Mint, firefox and "Reiner SCT" hardware to sign in to german government sites using my identity card. All worked fin until firefox update from 149.0.2 to… (read more)

I am using Linux Mint, firefox and "Reiner SCT" hardware to sign in to german government sites using my identity card. All worked fin until firefox update from 149.0.2 to 150.0. Now I always get the error message "internal_error". I know, this message does not help much, but that is all I have. Is there anything I can try to get firefox 150.0 running or shoud I try to deinstall firefox 150.0 an install firefox 149.0.2 again? Thanks very much in advance!

Solved 5 128

Stuck loading page (specifically on chess.com)

After many years of using Firefox and then trying other browsers I decided to stick with Firefox now, and immediately I encounter a persistent flaw. Mainly I browse on ch… (read more)

After many years of using Firefox and then trying other browsers I decided to stick with Firefox now, and immediately I encounter a persistent flaw.

Mainly I browse on chess.com, I mention this because there the thing occurs and I can imagine it is quite a 'complicated' website. Stick with me. I administrate clubs and play chess there so open pages regularly, in new tabs, still generally only three simultaneously.

Every 1 in 5 times the page just gets stuck loading. Only parts appear and the little refresh icon up there doesn't show because the X stays (the one to stop loading the page). This is quite annoying. Simply by refreshing it immediately loads properly. But it is ridiculous to keep having to press F5 every couple of minutes before one can get on. As I also used Beta channel on my win11 machine I figured maybe it's that but after several updates it persisted. Now I am using the Normal channel and a Linux Mint OS and exactly the same keeps happening. I have tried a dozen remedies. Like adding an exception to the enhanced tracking in Firefox and several others and nothing fixed this. Does anyone knows how this happens?

And will Mozilla fix this? Or is it completely at the bottom of priorities because it is site specific?

Thanks for any replies (OS most recent Linux Mint Cinnamon. browser version mint-001 1.0 firefox 147.2) (Happened on Windows 11, Firefox Beta as well)

Open 5 238

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 … (read more)

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 27