Ceisteanna leis an gclib seo á dtaispeáint: Taispeáin gach ceist
  • Réitithe
  • Cartlannaithe

Google pages (Gmail, YouTube, etc.) won't load if I am using VPN (PIA)

I am using Firefox with the uBlock Origin and Cookie AutoDelete extensions enabled. When I try and load Gmail or any other Google site, I get a blank page and nothing loa… (tuilleadh eolais)

I am using Firefox with the uBlock Origin and Cookie AutoDelete extensions enabled. When I try and load Gmail or any other Google site, I get a blank page and nothing loads at all. This only occurs when my VPN is on (I use Private Internet Access). However, even with the VPN on, Chrome will still load those sites. Disabling the VPN means that the sites load normally.

My guess is it might be some sort of privacy setting in Firefox, but I don't understand what it could be. The only thing that breaks/fixes the sites is connecting and disconnecting the VPN, irrespective of which country I try and connect from.

Asked by Minimal Gravitas 1 bhliain ó shin

Answered by Minimal Gravitas 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

Flightradar24.com issue.

Since Firefox update 19.0,1 flightradar website freezes when I click on an aircraft... Using brave browser no problems. windows 10 laptop with windows security all upda… (tuilleadh eolais)

Since Firefox update 19.0,1 flightradar website freezes when I click on an aircraft...

Using brave browser no problems.

windows 10 laptop with windows security all updated.

Asked by Shortcircuit44 1 bhliain ó shin

Answered by cor-el 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

Animation CSS on my web site doesn't work on firefox

Hello, I made animations CSS on my web site and everything was working great on all browsers. I just see that it doesn't work anymore only in firefox... here is my code:… (tuilleadh eolais)

Hello, I made animations CSS on my web site and everything was working great on all browsers. I just see that it doesn't work anymore only in firefox...

here is my code:


/* -------------------------------------- */ /* ANIMATION ANE */ @keyframes mouvement-uniforme {

   0% 		{ animation-timing-function: linear; transform: translateX(-500px); }
   100% 	{ animation-timing-function: linear; transform: translateX(30px); }

}

@-webkit-keyframes webkit-mouvement-uniforme { 0% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(30px ) translateY(-2px ) rotate(-2deg); } 2% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(60px ) translateY(2px ) rotate(2deg); } 4% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(90px ) translateY(-2px ) rotate(-2deg); } 6% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(120px ) translateY(2px ) rotate(2deg); } 8% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(150px ) translateY(-2px ) rotate(-2deg); } 10% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(180px ) translateY(2px ) rotate(2deg); } 12% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(210px ) translateY(0px ) rotate(-1deg); } 14% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(240px ) translateY(1px ) rotate(1deg); } 18% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(0deg) translateX(240px) translateY(2px ); } 24% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(1deg) translateX(240px) translateY(-2px ); } 28% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(0deg) translateX(240px) translateY(3px ); } 32% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(0deg) translateX(240px) translateY(-1px ); } 34% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(1deg) translateX(245px); } 36% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(0deg) translateX(-2px); } 38% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(-2px) translateY(2px ); } 40% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(-245px); } 42% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(-245px) rotate(1deg) translateY(-2px ); } 43% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(-245px) rotate(-3deg); } 100% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(0px); } }


@-moz-keyframes moz-mouvement-uniforme { 0% { -moz-transform: translateX(30px ) translateY(-2px ) rotate(-2deg); } 2% { -moz-transform: translateX(60px ) translateY(2px ) rotate(2deg); } 4% { -moz-transform: translateX(90px ) translateY(-2px ) rotate(-2deg); } 6% { -moz-transform: translateX(120px ) translateY(2px ) rotate(2deg); } 8% { -moz-transform: translateX(150px ) translateY(-2px ) rotate(-2deg); } 10% { -moz-transform: translateX(180px ) translateY(2px ) rotate(2deg); } 12% { -moz-transform: translateX(210px ) translateY(0px ) rotate(-1deg); } 14% { -moz-transform: translateX(240px ) translateY(1px ) rotate(1deg); } 18% { -moz-transform: rotate(0deg) translateX(240px) translateY(2px ); } 24% { -moz-transform: rotate(1deg) translateX(240px) translateY(-2px ); } 28% { -moz-transform: rotate(0deg) translateX(240px) translateY(3px ); } 32% { -moz-transform: rotate(0deg) translateX(240px) translateY(-1px ); } 34% { -moz-transform: rotate(1deg) translateX(245px); } 36% { -moz-transform: rotate(0deg) translateX(-2px); } 38% { -moz-transform: translateX(-2px) translateY(2px ); } 40% { -moz-transform: translateX(-245px); } 42% { -moz-transform: translateX(-245px) rotate(1deg) translateY(-2px ); } 43% { -moz-transform: translateX(-245px) rotate(-3deg); } 100% { -moz-transform: translateX(0px); } }



@-ms-keyframes ms-mouvement-uniforme {

   0% 		{ -ms-animation-timing-function: linear; -ms-transform: translateX(-500px); }
   100% 	{ -ms-animation-timing-function: linear; -ms-transform: translateX(0px); }

} @-o-keyframes o-mouvement-uniforme {

   0% 		{ -o-animation-timing-function: linear; -o-transform: translateX(-500px); }
   100% 	{ -o-animation-timing-function: linear; -o-transform: translateX(0px); }

}


.position { position: relative; top: -200px; left: -280px; float:left; }

.bouge { animation: mouvement-uniforme 60s ; -webkit-animation: webkit-mouvement-uniforme 20s ; -webkit-animation-iteration-count: infinite; -webkit-animation-fill-mode: forwards; -webkit-animation-duration: 15s; -webkit-animation-delay: 0s; -webkit-overflow-scrolling: auto!important;

-moz-animation: moz-mouvement-uniforme 20s; -moz-animation-iteration-count: infinite; -moz-animation-fill-mode: forwards; -moz-animation-duration: 15s; -moz-animation-delay: 0s;

-ms-animation: ms-mouvement-uniforme 10s ;

-o-animation: o-mouvement-uniforme 10s ; }



It was working fine before on firefox. it works on other browsers (opera, Edge,..) Do something changed? it's a long time that i didn't chek it so...

this is the page where a donkey should appear at the bottom of the page:

https://www.campingnoroc.com/en/our-campsite/


Thanks a lot for your help!!

Asked by Pierre MARTIN 11 mí ó shin

Answered by Pierre MARTIN 11 mí ó shin

  • Réitithe
  • Cartlannaithe

Google Drive doesn't show info

For a while Google Drive's cloud interface hasn't been able to show "information" about files, i.e. pictures, text, file-data. The fault is not present in Android, Chrome… (tuilleadh eolais)

For a while Google Drive's cloud interface hasn't been able to show "information" about files, i.e. pictures, text, file-data. The fault is not present in Android, Chrome and Edge so it is not Google Drive that is buggy. I'd rather not change to another web browser. Please present a fix. Janne G win 10 home, v 22H2, OS-v 19045.3570, Windows Feature Experience Pack 1000.19052.1000.0

Asked by Jannne 1 bhliain ó shin

Answered by cor-el 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

Firefox shows [object Object] on pages with code blocks

Since a couple of months I see only [object Object] instead of code blocks on (almost) all web pages. For example on StackOverflow. Any ideas what could cause this? … (tuilleadh eolais)

Since a couple of months I see only [object Object] instead of code blocks on (almost) all web pages. For example on StackOverflow.

Any ideas what could cause this?

Asked by witek 1 bhliain ó shin

Answered by witek 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

Firefox always sets address to https

I assume that it's the same problem as this: https://support.mozilla.org/en-US/questions/1388431 but there is no solution. https only mode is not active browser.fixup.a… (tuilleadh eolais)

I assume that it's the same problem as this: https://support.mozilla.org/en-US/questions/1388431 but there is no solution.

https only mode is not active

browser.fixup.alternate.protocol is set to http from https browser.urlbar.autoFill is set to false

Nothing helped.

I get that this default makes sense but since so many local tools don't use http there should be at least 1 working option to disable this behavior at least for certain sites.

Asked by danielw90.dw+firefox 1 bhliain ó shin

Answered by Terry 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

Can no longer view YouTube videos while in Firefox browser

I can no longer view YouTube videos in Firefox browser because they think I have some kind of add blocker installed. I have never installed such a thing and have no idea … (tuilleadh eolais)

I can no longer view YouTube videos in Firefox browser because they think I have some kind of add blocker installed. I have never installed such a thing and have no idea how to fix what they are demanding I must fix in order to continue with YouTube in the FireFox browser. In the mean time I have to use some other unfamiliar browser just for YouTube. It appears that some kind of incompatibility has evolved in the recent two or three weeks between Firefox and YouTube.

Asked by timjurek 1 bhliain ó shin

Answered by zeroknight 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

Cannot Edit Google Docs on Firefox Destop

For some reason I cannot type anything in Google Docs on the Firefox Desktop Browser. In fact, it seems like the browser doesn't recognize that I'm using Google Docs at a… (tuilleadh eolais)

For some reason I cannot type anything in Google Docs on the Firefox Desktop Browser. In fact, it seems like the browser doesn't recognize that I'm using Google Docs at all - in my attempts to see what was up I tried to bold a word to see what would happen, but the Ctrl + B shortcut opened the Firefox bookmarks tab instead. This is happening across all my Google Accounts, but only on Firefox and only in Docs - I can edit sheets and forms without issue, I can edit them all on my Android through the google apps, and I can edit them in another browser.

This is an issue that happened suddenly yesterday and I cannot think of anything that's caused it. I double checked that I had editing permissions on these docs, asked the people who owned them to remove me and re-add me but no luck. I have cleared cache and cookies, logged out and back, restarted the browser, and restarted my computer. Though I haven't changed anything with my extensions recently, I tried deactivating and reactivating everything I had. None of this caused any difference and I still cannot edit. I've also tried a user-agent switcher to see if that could help, but no dice. It really does seem like the issue is firefox not recognizing Google Docs is Google Docs and I'm not sure what the fix for that would be. Any advice would be greatly appreciated.

Asked by sparkyoungupstart 8 mí ó shin

Answered by sparkyoungupstart 8 mí ó shin

  • Réitithe
  • Faoi Ghlas
  • Cartlannaithe

Firefox searching instead of dns resolving internal websites

I have multiple internal websites, which all follow the pattern of [site.one.two] which resolves fine using the internal DNS server i have configured by going to https://… (tuilleadh eolais)

I have multiple internal websites, which all follow the pattern of [site.one.two] which resolves fine using the internal DNS server i have configured by going to https://site.one.two and through other programs via site.one.two, and all the [one.two] suffixes are blacklisted from being resolved with DoH in firefox, but it still forces a web-search, even with searching from address bar being turned off, instead of resolving through my local DNS server (local server resolves local domain suffixes, anything else gets resolved through cloudflare DNS). I haven't found a fix in any other forums, and there are enough unique internal addresses that manually adding each and [every site.one.two] as an exception would be something i would like to avoid. Is there any way to tell firefox to resolve through DNS first for addresses or domain suffixes?

Asked by sydmackintosh 1 bhliain ó shin

Answered by jscher2000 - Support Volunteer 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

Google ReCAPTCHA does not work

Hey, Google reCaptcha is not working for about 1 day, but no problem in Chrome browser. Does anyone else experience this? I use the latest firefox browser. reCaptcha de… (tuilleadh eolais)

Hey,

Google reCaptcha is not working for about 1 day, but no problem in Chrome browser. Does anyone else experience this? I use the latest firefox browser.

reCaptcha demo: https://www.google.com/recaptcha/api2/demo

Asked by jankec08 1 bhliain ó shin

Answered by Paul 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

Amazon via Firefox

When I go to Amazon.com in Firefox, the URL is changed to this: https://www.amazon.com/?smdm-noredirect=true I cannot change it back - it continues to apply ?smdm-no… (tuilleadh eolais)

When I go to Amazon.com in Firefox, the URL is changed to this: https://www.amazon.com/?smdm-noredirect=true I cannot change it back - it continues to apply ?smdm-noredirect=true

When I try to log in via that path, I get this message:

Looking for Something? We're sorry. The Web address you entered is not a functioning page on our site Go to Amazon.com's Home Page

This does not happen on Chrome.

Asked by John Jacobs 1 bhliain ó shin

Answered by zeroknight 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

firefox browser cannot open folder selection

I'm using firefox 119.0.1 Version on a Steam deck(SteamOS) and installed using the Discover app when in browser i cannot click on the "Open the file browser" icon that a… (tuilleadh eolais)

I'm using firefox 119.0.1 Version on a Steam deck(SteamOS) and installed using the Discover app

when in browser i cannot click on the "Open the file browser" icon that appears on websites. Also i cannot open the Downloads folder within the Menu bar from firefox I tried entering into safe-mode and still couldn't open I also tried using another User Profile under "Right click Firefox -> firefox profile manager" to try to see if it was something from my user profile that was causing the issue but i also couldnt open in another profile.

I also tried on a different browser to see if it was my device problem but i could open it. i tried on Brave and Chrome and it worked.

i dont know what to do, this was working normally last week and now it doesnt work, Even in another profile with no configuration done no extension and not logged in the "Open file" button doesnt work

Asked by wolmaner00 1 bhliain ó shin

Answered by zeroknight 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

Amazon Prime Video won't play

The 125.0.2 update broke Amazon Prime Video. Firefox refuses to play ANY video, causes website to return a "That shouldn't have happened" error page. Prime Video plays … (tuilleadh eolais)

The 125.0.2 update broke Amazon Prime Video. Firefox refuses to play ANY video, causes website to return a "That shouldn't have happened" error page. Prime Video plays just fine on Safari 16.6.1, macOS 11.7.10. Amazon says just to use Safari, but I want Firefox to work right.

Asked by steveaaayyy 1 bhliain ó shin

Answered by gwendrenee 9 mí ó shin

  • Réitithe
  • Cartlannaithe

Radio buttons on some websites neither display nor update when clicked. FireFox 113.0.2 (64-bit) on Mac OS X 10.13.6 (High Sierra)

Radio buttons on some websites neither display nor update when the area in which is should have displaed is clicked. FireFox 113.0.2 (64-bit) on Mac OS X 10.13.6 (High … (tuilleadh eolais)

Radio buttons on some websites neither display nor update when the area in which is should have displaed is clicked. FireFox 113.0.2 (64-bit) on Mac OS X 10.13.6 (High Sierra). This problem has been present for some time. On other websites the radio buttons do display and do upate when clicked by toggling the dark center. The minority of websites which don't work seems random, but does include some banking websites and the IRS.gov website. Often using SAFARI will work when FireFox doesn't.

The CheckBox at the end of this page "Email me when someone answers the thread" appears but does not respond to a click.

Asked by garth4 1 bhliain ó shin

Answered by garth4 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

Firefox and Firefox-Dev crashes on google maps.

I use Firefox-Dev(129.0b9 (64-bit)) and Firefox (128.0.3 (64-bit)) as default browsers on my Gentoo Linux system with an Intel i7. Both Firefox-Dev and Firefox crash will… (tuilleadh eolais)

I use Firefox-Dev(129.0b9 (64-bit)) and Firefox (128.0.3 (64-bit)) as default browsers on my Gentoo Linux system with an Intel i7. Both Firefox-Dev and Firefox crash will visiting some websites. Especially Google maps. I have a Gentoo Laptop with and i3 where I run both Firefox-Dev and Firefox and things run fine. I have more software installed on the Intel i7. Video cards ar different of course.

Here is my ldd: opt/firefox $ ldd firefox linux-vdso.so.1 (0x00007ffc8e584000) libpthread.so.0 => /lib64/libpthread.so.0 (0x00007f0161fe7000) libc.so.6 => /lib64/libc.so.6 (0x00007f0161e08000) /lib64/ld-linux-x86-64.so.2 (0x00007f0162007000)


Here is the crash report: AdapterDeviceID: 0x6613 AdapterDriverVendor: mesa/radeonsi AdapterDriverVersion: 24.1.3.0 AdapterVendorID: 0x1002 Add-ons: formautofill%40mozilla.org:1.0.1,pictureinpicture%40mozilla.org:1.0.0,webcompat-reporter%40mozilla.org:2.1.0,webcompat%40mozilla.org:129.3.0,default-theme%40mozilla.org:1.3,addons-search-detection%40mozilla.com:2.0.0 AvailablePageFile: 98520420352 AvailablePhysicalMemory: 57304293376 AvailableSwapMemory: 68719472640 AvailableVirtualMemory: 65166487552 BackgroundTaskMode: 0 BuildID: 20240726091552 ContentSandboxCapabilities: 119 ContentSandboxCapable: 1 ContentSandboxLevel: 4 CrashTime: 1722173712 DOMFissionEnabled: 1 DOMIPCEnabled: 1 DesktopEnvironment: xfce EMCheckCompatibility: true GpuSandboxLevel: 0 GraphicsNumActiveRenderers: 1 GraphicsNumRenderers: 1 HeadlessMode: 0 InstallTime: 1722086601 IsWayland: 0 LastStartupWasCrash: 1 LinuxUnderMemoryPressure: 0 Notes: Gentoo LinuxFP(D00-L1000-W0000000-T01) WR? WR+ EGL? EGL- GL Context? GL Context+ WebGL? WebGL+ ProductID: {ec8030f7-c20a-464f-9b0e-13a3a9e97384} ProductName: Firefox RDDProcessStatus: Running ReleaseChannel: aurora SafeMode: 0 SecondsSinceLastCrash: 324 StartupCacheValid: 0 StartupCrash: 0 StartupTime: 1722173401 SubmittedFrom: Client TelemetryClientId: 8d5032ba-a1c3-4acb-b235-847bd4545b87 TelemetryEnvironment: {"build":{"applicationId":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","applicationName":"Firefox","architecture":"x86-64","buildId":"20240726091552","version":"129.0","vendor":"Mozilla","displayVersion":"129.0b9","platformVersion":"129.0","xpcomAbi":"x86_64-gcc3","updaterAvailable":true},"partner":{"distributionId":null,"distributionVersion":null,"partnerId":null,"distributor":null,"distributorChannel":null,"partnerNames":[]},"system":{"memoryMB":64259,"virtualMaxMB":null,"cpu":{"count":12,"cores":6,"vendor":"GenuineIntel","name":"Intel(R) Core(TM) i7-3930K CPU @ 3.20GHz","family":6,"model":45,"stepping":7,"l2cacheKB":256,"l3cacheKB":12288,"speedMHz":5700,"extensions":["hasMMX","hasSSE","hasSSE2","hasSSE3","hasSSSE3","hasSSE4_1","hasSSE4_2","hasAVX","hasAES"]},"os":{"name":"Linux","version":"6.6.38-gentoo","locale":"en-US","distro":"Gentoo","distroVersion":"2.15"},"hdd":{"profile":{"model":null,"revision":null,"type":null},"binary":{"model":null,"revision":null,"type":null},"system":{"model":null,"revision":null,"type":null}},"gfx":{"D2DEnabled":null,"DWriteEnabled":null,"ContentBackend":"Skia","Headless":false,"EmbeddedInFirefoxReality":null,"TargetFrameRate":60,"adapters":[{"description":"OLAND (radeonsi, , LLVM 18.1.8, DRM 2.50, 6.6.38-gentoo)","vendorID":"0x1002","deviceID":"0x6613","subsysID":null,"RAM":0,"driver":null,"driverVendor":"mesa/radeonsi","driverVersion":"24.1.3.0","driverDate":null,"GPUActive":true}],"monitors":[{"screenWidth":1920,"screenHeight":1080}],"features":{"compositor":"webrender","hwCompositing":{"status":"available"},"gpuProcess":{"status":"unused"},"webrender":{"status":"available"},"wrCompositor":{"status":"blocked:FEATURE_FAILURE_DISABLE_RELEASE_OR_BETA"},"openglCompositing":{"status":"available"},"omtp":{"status":"unused"}}},"appleModelId":null,"hasWinPackageId":null},"settings":{"blocklistEnabled":true,"e10sEnabled":true,"e10sMultiProcesses":8,"fissionEnabled":true,"telemetryEnabled":true,"locale":"en-US","intl":{"requestedLocales":["en-US"],"availableLocales":["en-US"],"appLocales":["en-US"],"systemLocales":["en-US"],"regionalPrefsLocales":["en-US"],"acceptLanguages":["en-US","en"]},"update":{"channel":"aurora","enabled":true,"autoDownload":true,"background":true},"userPrefs":{"browser.search.region":"US","browser.search.widget.inNavBar":false,"browser.urlbar.autoFill":true,"browser.urlbar.autoFill.adaptiveHistory.enabled":false,"browser.urlbar.dnsResolveSingleWordsAfterSearch":0,"browser.urlbar.quicksuggest.dataCollection.enabled":false,"browser.urlbar.suggest.quicksuggest.nonsponsored":true,"browser.urlbar.suggest.quicksuggest.sponsored":true,"media.gmp-gmpopenh264.enabled":false,"media.gmp-gmpopenh264.lastInstallStart":1721840659,"media.gmp-gmpopenh264.lastDownload":1721840660,"media.gmp-gmpopenh264.lastUpdate":1721840660,"media.gmp-manager.lastCheck":1722086677,"media.gmp-manager.lastEmptyCheck":1722086677,"network.trr.strict_native_fallback":false,"widget.content.gtk-high-contrast.enabled":true},"sandbox":{"effectiveContentProcessLevel":4,"contentWin32kLockdownState":3},"addonCompatibilityCheckEnabled":true,"isDefaultBrowser":true,"defaultSearchEngine":"google-b-1-d","defaultSearchEngineData":{"loadPath":"[app]google@search.mozilla.org","name":"Google","origin":"default","submissionURL":"https://www.google.com/search?client=firefox-b-1-d&q="}},"profile":{"creationDate":19928,"firstUseDate":19928},"addons":{"activeAddons":{"formautofill@mozilla.org":{"version":"1.0.1","scope":1,"type":"extension","updateDay":19926,"isSystem":true,"isWebExtension":true,"multiprocessCompatible":true,"blocklisted":false,"description":null,"name":"Form Autofill","userDisabled":false,"appDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"installDay":19926,"quarantineIgnoredByApp":true,"quarantineIgnoredByUser":false},"pictureinpicture@mozilla.org":{"version":"1.0.0","scope":1,"type":"extension","updateDay":19926,"isSystem":true,"isWebExtension":true,"multiprocessCompatible":true,"blocklisted":false,"description":"Fixes for web compatibility with Picture-in-Picture","name":"Picture-In-Picture","userDisabled":false,"appDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"installDay":19926,"quarantineIgnoredByApp":true,"quarantineIgnoredByUser":false},"webcompat-reporter@mozilla.org":{"version":"2.1.0","scope":1,"type":"extension","updateDay":19926,"isSystem":true,"isWebExtension":true,"multiprocessCompatible":true,"blocklisted":false,"description":"Report site compatibility issues on webcompat.com","name":"WebCompat Reporter","userDisabled":false,"appDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"installDay":19926,"quarantineIgnoredByApp":true,"quarantineIgnoredByUser":false},"webcompat@mozilla.org":{"version":"129.3.0","scope":1,"type":"extension","updateDay":19926,"isSystem":true,"isWebExtension":true,"multiprocessCompatible":true,"blocklisted":false,"description":"Urgent post-release fixes for web compatibility.","name":"Web Compatibility Interventions","userDisabled":false,"appDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"installDay":19926,"quarantineIgnoredByApp":true,"quarantineIgnoredByUser":false}},"theme":{"id":"default-theme@mozilla.org","blocklisted":false,"description":"Follow the operating system setting for buttons, menus, and windows.","name":"System theme — auto","userDisabled":false,"appDisabled":false,"version":"1.3","scope":4,"foreignInstall":false,"hasBinaryComponents":false,"installDay":19928,"updateDay":19928},"activeGMPlugins":{}},"experiments":{"upgrade-spotlight-rollout":{"branch":"treatment","type":"nimbus-rollout"}}} TelemetryServerURL: https://incoming.telemetry.mozilla.org TelemetrySessionId: aba8ef58-e31e-4fc6-b7a6-a5473f7d83d7 Throttleable: 1 TotalPageFile: 136099627008 TotalPhysicalMemory: 67380154368 URL: https://www.google.com/maps?authuser=0 UptimeTS: 311.090528 UtilityProcessStatus: Running Vendor: Mozilla Version: 129.0 useragent_locale: en-US This report also contains technical information about the state of the application when it crashed.

Asked by Icebowl67 9 mí ó shin

Answered by Icebowl67 9 mí ó shin

  • Réitithe
  • Cartlannaithe

Netflix says incorrect password only in Firefox.

Just switched to firefox as my default and found that I can't sign in to netflix. It always gives me the "incorrect password" message. I've tried resetting the password, … (tuilleadh eolais)

Just switched to firefox as my default and found that I can't sign in to netflix. It always gives me the "incorrect password" message. I've tried resetting the password, clearing cookies, restarting, turning the DNS proection off, restarting my computer, etc to no avail. Anyone else have this issue or know a potential solution?

Asked by Mckenzie Boyle 1 bhliain ó shin

Answered by Mckenzie Boyle 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

I can't access Goodnotes Web if I try to login via iCloud

This is a problem that I have since months, still unresolved. If I try using a different browser (like Brave) it works, so it's a Firefox issue or Apple issue with Firefo… (tuilleadh eolais)

This is a problem that I have since months, still unresolved. If I try using a different browser (like Brave) it works, so it's a Firefox issue or Apple issue with Firefox.

Basically if I go to https://web.goodnotes.com/login and I login via iCloud, a window opens up which asks me iCloud email and password, then it asks me for the sms code received, then I put it and then I get a BLANK page (the image that I uploaded) with in up right corner "Login performed as my name". And then nothing happens. But instead with Brave it opens up the Apple authorization to accept the Browser and then I finally can enter in Goodnotes web. With Firefox I'm stuck in that blank white page.

Since it's an issue that I have since months, I think I should report this and here I am.

Asked by a.geno 1 bhliain ó shin

Answered by cor-el 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

Cannot Log Into Google

When I try to log into Google I get this message: This browser or app may not be secure. Try using a different browser. I am using Firefox 91.13.0 ESR (64bit). I have … (tuilleadh eolais)

When I try to log into Google I get this message:

This browser or app may not be secure. Try using a different browser.

I am using Firefox 91.13.0 ESR (64bit). I have been using the 91.x ESR releases for a while now and this is a new problem that I never had before.

Asked by Jerry Attric 2 bhliain ó shin

Answered by Jerry Attric 2 bhliain ó shin

  • Cartlannaithe

Error code: PR_END_OF_FILE_ERROR

I have had to migrate many sites to another browser because Firefox won't load them. That is the error that appears. I want to use Firefox, but am frustrated by the fai… (tuilleadh eolais)

I have had to migrate many sites to another browser because Firefox won't load them. That is the error that appears.

I want to use Firefox, but am frustrated by the failure of various fix attempts to solve the problem.

Please help.

Lorin Cary

Asked by writeoncary 1 bhliain ó shin

Last reply by zeroknight 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

Montserrat font ignores font-weight

For some reason Montserrat fonts ignore font-weight for me on all websites. In happens on my main browser profile, with a new clean one with no add-ons and even in Tor Br… (tuilleadh eolais)

For some reason Montserrat fonts ignore font-weight for me on all websites. In happens on my main browser profile, with a new clean one with no add-ons and even in Tor Browser. Pictures 1 and 2 illustrate the problem. If i go into page inspector and replace "font-family: 'Montserrat', sans-serif;" with "font-family: 'Segoe UI';" the parameter works as expected and the alternative font is rendered properly.

Reinstalling fonts from fontsource.org didn't help.

OS: Windows 10 1607, FF - 120.0, issue was present for many versions before.

Asked by Burning_Chair 1 bhliain ó shin

Answered by zeroknight 1 bhliain ó shin