Showing questions tagged: Show all questions
  • Solved
  • Archived

Shaw Webmail error: Security Check Failed. Clear your browser cache and retry.

When signing in to online Shaw Webmail, message says 'Security Check Failed. Clear your browser cache and retry'. Screenshot attached. Have done so in "Clear browsing an… (read more)

When signing in to online Shaw Webmail, message says 'Security Check Failed. Clear your browser cache and retry'. Screenshot attached. Have done so in "Clear browsing and data history", (as per Firefox guidelines) multiple times, for all History and cache. Did not resolve issue. Contacted Shaw Support; they instructed to try logging in with Chrome browser. Worked fine. Issue appears to be strictly with Firefox Browser (on multiple devices). I prefer Firefox over Chrome. Any advice greatly appreciated.

Asked by Jorge Mandango 6 months ago

Answered by Jorge Mandango 6 months ago

  • Solved

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: //im… (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.

Asked by phobrain 5 months ago

Answered by Paul 5 months ago

  • Solved

Using Firefox for searching has recently rendered a message including the reCaptcha I'm not a robot

I'm afraid I picked up malware despite Sophos due to this message upon routine searches, e.g. "Where's the nearest pet store". About this page Our systems have detected … (read more)

I'm afraid I picked up malware despite Sophos due to this message upon routine searches, e.g. "Where's the nearest pet store". About this page Our systems have detected unusual traffic from your computer network. This page checks to see if it's really you sending the requests, and not a robot. Why did this happen? IP address: 206.194.252.88 Time: 2026-01-13T22:42:41Z URL: https://www.google.com/search?q=Pettstores+near+33069&ud m=14&sei=YMpmafbPMZyKwbkPzc23sAE

It's preceded by the reCaptcha request to check the box stating I'm not a robot.

I'm afraid to enter any passwords on here, to order anything, and especially engage in banking. I'm in a rental using WiFi, Thank You, Eileen

Asked by emcinerney80 6 days ago

Answered by Denys 4 days ago

  • Solved

Accuracy of calendars in some websites.

Hi, I started to notice recently that calendars in some websites I browse with Mozilla are inaccurate. The dates like months, days,... are in a mess. Then I used Google … (read more)

Hi,

I started to notice recently that calendars in some websites I browse with Mozilla are inaccurate. The dates like months, days,... are in a mess. Then I used Google Chrome instead of Mozilla and it went right. It was accurate with Chrome browsing those sites. Did you hear of the same problems with Mozilla ? What can be wrong ?

Thanks for your insights,

All the best,

Denis

Asked by dcoolfriend 4 months ago

Answered by Denys 3 months ago

  • Solved
  • Archived

Login problems with Strava.com

The errors I get are kind of all over the place though. I've completely deleted and reinstalled Firefox, and removed all extensions too. It will loop to the login screen… (read more)

The errors I get are kind of all over the place though. I've completely deleted and reinstalled Firefox, and removed all extensions too.

It will loop to the login screen over and over, or I get the message 'An error has happened, try again later'...

I used the browser console and didn't get anything that seemed usable. I use Strava nearly every day so I'm having to use Safari. And this issue is on all of the mac and Windows systems I use. 'Troubleshooting Mode' didn't work either.

Help!

Asked by gonzoid 6 months ago

Answered by jonzn4SUSE 6 months ago

  • Solved

one drive "on this day" wont load/play

I have contacted Microsoft. After testing the link/page loads in Edge, Chome (with and without addins same in ff) and Brave. But does not load in FF (with addon's disable… (read more)

I have contacted Microsoft. After testing the link/page loads in Edge, Chome (with and without addins same in ff) and Brave. But does not load in FF (with addon's disabled) nor in Private browsing FF (no addins obviously) they said to reach out to FireFox for support. See below for email exchange: FROM MS (most recent reply):

Thank you for your response. We hope you are doing well. We sincerely apologize for the inconvenience and frustration this issue has caused, especially with the unexpected autoplay of music and the inability to exit the slideshow in Firefox. We completely understand how disruptive this can be, particularly in quiet environments or when you're on the go. Based on your detailed testing across browsers, it does appear that this issue is isolated to Firefox. Since the same content works as expected in Chrome (even with ad blockers enabled), the problem may be related to a recent Firefox. As the issue appears to be specific to Firefox, while the same functionality works as expected in other browsers like Chrome (even with ad blockers enabled). We genuinely want to help resolve this, but since the issue is browser-specific and not reproducible outside of Firefox, we kindly recommend reaching out to the Firefox Support Team for further assistance. They may be able to identify any recent updates, settings, or compatibility concerns that could be affecting the page behavior. We are truly sorry for the inconvenience and are grateful for your understanding.

MY EMAIL TO THEM (in response to them saying try in edge private etc): Apparently this is a FIREFOX only issue?

I tried in edge (regular, not private) and it plays the stupid slideshow with music just fine, and I can get out of it and view the regular memory page that I want (Music really!? What if you’re viewing while someone around you is asleep? Or otp in public??? Smh) Chrome – WITH Adblockplus and Ublock Origin ON it works (not in private) > weblink gyazo video of it working with ublock and abp enabled…. https://gyazo.com/2afbdf7e27357a375ca7613b197f17ce Firefox – with adblock plus off, ublock off, and ghostery OFF does not work > weblink gyazo video of it just refreshing grey, black grey black and goes nowhere forever https://gyazo.com/8da9258f36457901df66f99e87fe7560 Firefox – in private browsing (no addons) – does not work > weblink gyazo video of it just refreshing grey, black forever https://gyazo.com/f9119907e5127ede48797d9eacb1fed6 Since attaching a video to an email would be very large.. hope you can click outside links 😉

Asked by smithcr01 4 months ago

Answered by Denys 2 months ago

  • Solved

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 … (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!

Asked by phobrain 5 months ago

Answered by phobrain 5 months ago

  • Solved

ChatGPT not working after new browser update

After being prompted to update the browser this morning, and after I updated it, I can no longer use ChatGPT. Chat GPT will open, but it's unresponsive, can't log in, the… (read more)

After being prompted to update the browser this morning, and after I updated it, I can no longer use ChatGPT. Chat GPT will open, but it's unresponsive, can't log in, the arrow button to submit an inquiry doesn't work, and none of the other features of ChatGPT are working

Asked by pankewycz 3 days ago

Answered by Denys 3 days ago

  • Solved

I am unable to sign into my own web page. Initially the web host welcomes me. When I click on "open cPanel" i am taken to a sign in page. I can sign in to my web page using Safari.

I am unable to sign into my own web page. Initially the web host welcomes me. When I click on "open cPanel" i am taken to a sign-in page. I can sign in to my web page … (read more)

I am unable to sign into my own web page. Initially the web host welcomes me. When I click on "open cPanel" i am taken to a sign-in page. I can sign in to my web page using Safari. You can help by solving this problem for me.

Asked by glennview 4 months ago

Answered by glennview 4 months ago

  • Solved

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~bu… (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"

Asked by 97cweb 2 months ago

Answered by George Kitsoukakis 2 months ago

  • Solved

DOMexception on OneDrive page

Hi, when I try to access the Gallery photos page on OneDrive, especially in the 'For you' section, I get a gray screen and nothing happens. When I check the console, it… (read more)

Hi,

when I try to access the Gallery photos page on OneDrive, especially in the 'For you' section, I get a gray screen and nothing happens. When I check the console, it shows the issues I've captured in the screenshot. I tried this on Mac and Ubuntu with a fresh profile and a clear internet connection. Does anyone have an idea why this is happening? Firefox Version is the latest 142.0.1 No problem with Vivaldi, Chrome etc.

Thanks, Dirk

Asked by dirmme 4 months ago

Answered by Denys 2 months ago

  • Solved
  • Archived

secure sign in to government accounts

Hello With the new update to Firefox v137 I am no longer able to sign in to Government sites using my bank as a sign in partner. Google Chrome will sign in so it has s… (read more)

Hello

With the new update to Firefox v137 I am no longer able to sign in to Government sites using my bank as a sign in partner. Google Chrome will sign in so it has something to do with the new update. I have cleared cache and all data and still no luck with the sign in. Any help would be appreciated because Firefox has been my default browser for years and I'm not interested in changing.

Regards

Roger Flagg

Asked by rogerflagg 9 months ago

Answered by jonzn4SUSE 9 months ago

  • Solved

Firefox version 115.31.0esr

I'm experiencing problems across numerous sites using the above version of Firefox, detailed below. Other browsers are OK, as are other versions of Firefox on different … (read more)

I'm experiencing problems across numerous sites using the above version of Firefox, detailed below. Other browsers are OK, as are other versions of Firefox on different devices.

Outlook365 email - "Your message can't be displayed right now" Fantasy Premier League - unable to log in, hitting 'Log in' doesn't respond Faceboook - content does not load Ebay - html on formatting in listings is screwed up Duckduckgo non-functional - returns the message "Ugh, it happened again! The server encountered an error and could not complete your request." The Guardian - images do not load Nextdoor - messages do not load

Asked by Phil Strictly 1 week ago

Answered by jonzn4SUSE 1 week ago

  • Solved

Continued failure of Firefox v 144 to cop with Web Forms

I run a mac mini with OS X Catalina. I keep to that operating system as a number of my work apps work better. I am on the latest version of Firefox (64 bit) 144.0 In the… (read more)

I run a mac mini with OS X Catalina. I keep to that operating system as a number of my work apps work better. I am on the latest version of Firefox (64 bit) 144.0

In the last couple of years I have found webforms on Firefox seem to omit links or progress buttons like CONTINUE. When I check with the issuer or my colleagues I find they all use CHROME.

I have wasted a great deal of time on what I would have thought is a Minimum requirement issue.

Please give me one reason why I should stay with Firefox and not change to Chrome

thank you

Asked by ad16 3 months ago

Answered by ad16 2 months ago

  • Solved
  • Archived

two websites' appearance is wrong

Two financial websites I normally look at with firefox suddenly have no images anymore. I think it's the last Firefox update that caused it. Both websites look okay with … (read more)

Two financial websites I normally look at with firefox suddenly have no images anymore. I think it's the last Firefox update that caused it. Both websites look okay with Chrome.

Asked by pdreyfuss 10 months ago

Answered by pdreyfuss 10 months ago

  • Solved

can't validate icloud.com signin

when I go to icloud.com to view and download photos and all my icloud stuff on my phone, I can no longer sign in using firefox. I turned off the shield security but no he… (read more)

when I go to icloud.com to view and download photos and all my icloud stuff on my phone, I can no longer sign in using firefox. I turned off the shield security but no help. There used to be a pop-up that let you enter the code apple emailed you so you could access your icloud stuff on the web. Now there is no place to enter the code they send you. I enabled pop-ups too, but that didn't work. Help! I need my photos! And I use that site pretty much constantly-

Asked by NJTW 4 months ago

Answered by jbr 4 months ago

  • Solved

Our systems have detected unusual traffic from your computer network

When I try to make a Google search I get the following message, "I'm not a robot" with a reCAPTCHA: "Our systems have detected unusual traffic from your computer network… (read more)

When I try to make a Google search I get the following message, "I'm not a robot" with a reCAPTCHA: "Our systems have detected unusual traffic from your computer network. This page checks to see if it's really you sending the requests, and not a robot. Why did this happen?". This happens on Firefox, but not Chrome or Edge. If I 'Allow' Google in the 'Exceptions - Cookies and Site Data' then I do not get the message, but it takes several seconds for Google display the resulting page. However, if I delete the cookies/cache the message will return and I have to redo the reCAPTCHA. I have scanned with Malwarebytes, Bitdefender, Hitman Pro, Trend Micro House Call and Microsoft Defender, nothing detected. Running Win 10 (64) with 'Extended Security Updates', Firefox 147.0 (64), no additional Extensions or Plugins. Also I uninstalled and reinstalled Firefox.

Asked by Runky Rodo 5 days ago

Answered by Denys 4 days ago

  • Solved

Google Search reCaptcha

128.13.0esr This is probably a huge long shot I know, because every forum etc on the internet has nothing that ever helps with this, but as it only happens in FF I though… (read more)

128.13.0esr This is probably a huge long shot I know, because every forum etc on the internet has nothing that ever helps with this, but as it only happens in FF I thought it was worth a try.

Yesterday I changed my Privacy settings to 'delete cookies when FF is closed' and added a few exceptions. Then this Google Search reCaptcha thing started. Changed it back to what it was, basically the default setting there, but it was still happening. It only happens in FF [doesn't happen with Edge] and only on one pc, all other pc's and phones in the house are fine [all using the same network, router etc]. So I uninstalled FF altogether, reinstalled it...this thing was still happening regardless of what settings I use re cookies etc. If I actually complete the super annoying reCaptcha it goes away for about 1 or 2 searches, then comes back.

If I'm signed in to a Google account it doesn't happen.

I even did a fresh Windows install [which actually fixed this the other time this was happening about 6 months ago] but that didn't fix it this time. There is no malware, no VPN, no extensions that I haven't been using for years. Nothing that could ever possibly be considered 'bot-like' behaviour.

Thanks

Asked by Haruna 5 months ago

Answered by Haruna 5 months ago

  • Solved

Strange log-in for my local newspaper

For some strange reason, I get this response when logging in to local newspaper on Firefox..image one. When loading the same newspaper on Edge, I see this instead...imag… (read more)

For some strange reason, I get this response when logging in to local newspaper on Firefox..image one. When loading the same newspaper on Edge, I see this instead...image two. I've been in contact with the newspaper but the techs there can't figure what's happening. Is there a setting I have wrong on Firefox? Thanks for your time.

Asked by bbartrug 1 week ago

Answered by jonzn4SUSE 1 week ago

  • Solved
  • Archived

Problems loading websites with latest version of Firefox

Is anyone else having problems with the latest version of Firefox not rendering Google Calender, Amazon.com and other websites? … (read more)

Is anyone else having problems with the latest version of Firefox not rendering Google Calender, Amazon.com and other websites?

Asked by mdelapa 6 months ago

Answered by jonzn4SUSE 6 months ago