Hotmail Gone Blank

I am once again having issue with Hotmail and Firefox. It's working perfectly fine in Pale Moon, but it's gone totally blank in Firefox. It worked totally fine yesterday,… (Lesen Sie mehr)

I am once again having issue with Hotmail and Firefox. It's working perfectly fine in Pale Moon, but it's gone totally blank in Firefox. It worked totally fine yesterday, but today I cannot access ANYTHING in Hotmail. Firefox says it's up to date, but usually when I start having issues with Hotmail, it's because Firefox needs to update. Please help fix this problem! All other websites work fine! Thank you!

Gefragt von Delenn vor 4 Monaten

Letzte Antwort von zeroknight vor 4 Monaten

Dead tabs on Firefox v121 for Windows

I have a frequent problem with dead tabs in FF v121 on Win 10. I tend to have many tabs open (like 15 say) and it sometimes happens that a tab becomes completely unrespon… (Lesen Sie mehr)

I have a frequent problem with dead tabs in FF v121 on Win 10. I tend to have many tabs open (like 15 say) and it sometimes happens that a tab becomes completely unresponsive. It could be a new tab that I open or an existing one that I click on. When this happens I can't do anything. Page reload, clicking on links, entering an address by hand ... nothing happens. The tab is simply dead. The tab is essentially dead. After some time (usually 1-2 minutes) the problem resolves itself. However, it is very annoying as it happens almost every day and sometimes even several times a day. So I am looking for a way to solve, otherwise I will have to move to Brave or some other alternative. Any ideas what could be the problem? I also do not want to restart my browser several times a day as that logs me out of all websites I use including Whatsapp (I delete cookies when closing FF).

Gefragt von Pete vor 3 Monaten

Letzte Antwort von zeroknight vor 2 Monaten

Chase

I can open the Chase bank site, but cannot log into my account. I can log into my Chase account using Edge. This may have happened after the most recent update to Firefo… (Lesen Sie mehr)

I can open the Chase bank site, but cannot log into my account. I can log into my Chase account using Edge. This may have happened after the most recent update to Firefox. Any ideas how to fix this?

Gefragt von ggfossen vor 1 Woche

Letzte Antwort von cor-el vor 1 Woche

Dont know why some pages shows me in russian language

Hello. I have put my language everywhere on the settings which is latvian. For possible translations i have only put english. Some pages, for example, whatsapp web is sho… (Lesen Sie mehr)

Hello. I have put my language everywhere on the settings which is latvian. For possible translations i have only put english. Some pages, for example, whatsapp web is showing in russian ( i mean the app data for sure, not the messages), also some homepages i use open automatically in russian. How can i put latvian by default or if its not available for the homepage, put english automatically?

Gefragt von Edgars Rudzītis vor 2 Wochen

Letzte Antwort von zeroknight vor 1 Woche

Cannot connect to YouTube - DoH Issue?

I just tried to connect to YouTube & get "You're offline. Check your connection." I assume this is due to a DoH connection issue. I can connect in Chrome. My Firef… (Lesen Sie mehr)

I just tried to connect to YouTube & get "You're offline. Check your connection." I assume this is due to a DoH connection issue. I can connect in Chrome. My Firefox Mozilla Connection Settings are "Use system proxy settings", though I have set this to "No proxy" in an attempt to fix this - didn't help.

Under Privacy & Security: "Enable HTTPS-Only Mode in all windows", "Enable secure DNS using: Increased Protection" - tried "Default Protection" - no help. Using Cloudflare default.

It has been a few months since I tried YouTube - not sure what's up. It works in Firefox on my phone..

Gefragt von theHook vor 4 Monaten

Letzte Antwort von jonzn4SUSE vor 4 Monaten

Lost tabs sent from other device in Firefox when force-closing browser

I recently sent a lot of tabs from my phone to my computer. However, when I started Firefox on my computer, since Firefox tried to load the content of all sent tabs immed… (Lesen Sie mehr)

I recently sent a lot of tabs from my phone to my computer. However, when I started Firefox on my computer, since Firefox tried to load the content of all sent tabs immediately instead loading them lazily (which I think probably should be the default behavior), it took a very long time for Firefox to display even the tab that was currently selected, and I therefore decided to kill Firefox and reopen it, in the hope that all new tabs would load lazily. Instead, when I reopened Firefox, none of the new tabs where there anymore; it was as if they had never been sent. I would like to get them back, but I have no idea how to. Does anyone know if that is possible and, if so, how?

Gefragt von krikru vor 5 Monaten

Letzte Antwort von cor-el vor 5 Monaten

Sync not working due to a downed server

For now one week, I cannot sync my browser using Firefox sync. When checking the logs, I always see : Sync.Resource WARN GET request to https://sync-788-us-west-2.s… (Lesen Sie mehr)

For now one week, I cannot sync my browser using Firefox sync. When checking the logs, I always see :

Sync.Resource WARN GET request to https://sync-788-us-west-2.sync.services.mozilla.com/1.5/208380794/info/collections failed: [Exception... "The connection was refused" nsresult: "0x804b000d (NS_ERROR_CONNECTION_REFUSED)" location: "<unknown>" data: no] No traceback available

I have tested on multiples wifi network and mobile data and still the same error. After checking, it seem that this server is down, and I don't know were to report this.

Is this the right place to report this or is it a thing I can do to fix that ?

Thanks

Gefragt von cfouche3005 vor 2 Monaten

Letzte Antwort von jonzn4SUSE vor 2 Monaten

Firefox does not display background color in option tags

I am trying to use a <select> tag to display a color selector. So each <option> has a background color to match its displayed text: ```<select id="stroke… (Lesen Sie mehr)

I am trying to use a <select> tag to display a color selector. So each <option> has a background color to match its displayed text:

```<select id="strokeColor" name="strokeColor" style="width: 10em;">

             <option value="black" style="background: #000000; text: #FFFFFF">
                     black
             </option>

<option value="aqua" style="background: #00FFFF">

                     aqua
             </option>

<option value="blue" style="background: #0000FF">

                     blue
             </option>

<option value="brown" style="background: #A52A2A">

                     brown
             </option>

<option value="gray" style="background: #808080">

                     gray
             </option>

<option value="green" style="background: #00FF00">

                     green
             </option>

<option value="magenta" style="background: #FF00FF">

                     magenta
             </option>

<option value="orange" style="background: #FFA500">

                     orange
             </option>

<option value="purple" style="background: #800080">

                     purple
             </option>

<option value="red" style="background: #FF0000">

                     red
             </option>

<option value="white" style="background: #FFFFFF">

                     white
             </option>

<option value="yellow" style="background: #FFFF00">

                     yellow
             </option>

<option value="#000000" selected="" style="background: #000000">

                     #000000
             </option>
         </select>```

On Chrome this displays as expected:

https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2024-04-18-22-02-25-eebbd5.png

But on Firefox the background colors are ignored:

https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2024-04-18-22-02-35-bd90ee.png

How can I get Firefox to display the background colors?

Gefragt von jamescobban vor 2 Wochen

Letzte Antwort von NoahSUMO vor 2 Wochen

Suggestion from Browsing History should not include "Base URL"

Hi all Firefoxers, There are a few sites that I always access via a URL that could look like : https://device.domain.com/admin/ When I went to visit that device, … (Lesen Sie mehr)

Hi all Firefoxers,

There are a few sites that I always access via a URL that could look like :

https://device.domain.com/admin/

When I went to visit that device, typing in the URL bar "device.domain..." , Firefox's 1st default suggestion shows as https://device.domain.com/

The problem is that I never visited that site, the way to access this device is https://device.domain.com/admin/ - there's no way to reconfigure the device and have an auto-redirect to .../admin location.

https://device.domain.com/ is not in my Browsing History nor do I have an open-tab. In the settings Privacy->Address Bar, disabling "Browsing History" removes https://device.domain.com/ from the suggestion list but it also removes all suggestion from the history. This is the expected behavior, the bug required fix isn't related to this.

If the "Base URL" isn't saved in the Browsing History, how can someone tell Firefox to only suggest absolute entries from the history?

Gefragt von somehacker vor 3 Monaten

Letzte Antwort von netjeff vor 2 Monaten

Bad/Rogue Current Session of Firefox (Windows 7) Redux

Sorry, posted recently and had then trouble finding out how to respond to help offered (jscher2000)! Noticed that the email version was "no-reply" so I didn't figure that… (Lesen Sie mehr)

Sorry, posted recently and had then trouble finding out how to respond to help offered (jscher2000)! Noticed that the email version was "no-reply" so I didn't figure that would work! So, I tried to 'cut and paste' my reply (on a smartphone) and I ended up losing even the email reply text so here is a reconstruction. I tried the suggestions in order and the first one didn't have a "Restore previous session" option and the second one had "Recently closed windows" greyed out! And, when I entered "about.support" in the address bar (top rightish), I received a notice that I couldn't reach Google (Remember that I don't currently have internet access on my laptop). So, no joy there either! Can I not just change some current setting to prevent Firefox v 115.9lesr from saving the current 'Windows' and Tabs so that, when I again open Firefox, the previous session 'Windows' and Tabs would be used?!?

Gefragt von balls69bc vor 2 Wochen

Letzte Antwort von jscher2000 - Support Volunteer vor 1 Woche

Firefox Crashes Minutes After Start Up

I have been using an old version of Firefox (109.0.1). I am not typically using a newer version because of an essential - to me - add-on which hasn't been updated, and wh… (Lesen Sie mehr)

I have been using an old version of Firefox (109.0.1). I am not typically using a newer version because of an essential - to me - add-on which hasn't been updated, and which doesn't work in more recent versions.

On macOS Sierra this old version of Firefox crashes. Troubleshooting mode (I was prompted a number of times) and restarting the browser appears to eventually resolve the crash, but finally there is an issue with the memory and the browser doesn't "work."

The reason for the crash given is " MozCrashReason: Failed to load critical module "resource://gre/modules/WebNavigation.jsm" "

The crash report text is reproduced below: __________________________________________________________________________________________________________________

AdapterDeviceID: 0x6821 AdapterVendorID: 0x1002 Add-ons: support%40lastpass.com:4.126.0.1,%7Bd10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d%7D:3.23,%7B65e41d20-f092-41b7-bb83-c6e8a9ab0f57%7D:1.2.9,firefox-prod-suspender%40firefox-workona.com:1.1.0,%7B7d2676a5-0546-4e2a-9019-aa9d8345be1e%7D:0.4.5,%7B45f2dc53-96cd-4c41-91f6-f4a73a8fb2b0%7D:5.2.0,screenshots%40mozilla.org:39.0.1,webcompat%40mozilla.org:109.0.0,formautofill%40mozilla.org:1.0.1,pictureinpicture%40mozilla.org:1.0.0,amazondotcom%40search.mozilla.org:1.4,bing%40search.mozilla.org:1.4,ebay%40search.mozilla.org:1.4,google%40search.mozilla.org:1.3,wikipedia%40search.mozilla.org:1.2,ddg%40search.mozilla.org:1.3,default-theme%40mozilla.org:1.3,addons-search-detection%40mozilla.com:2.0.0 AvailablePhysicalMemory: 22274048 AvailableSwapMemory: 1025769472 BackgroundTaskMode: 0 BuildID: 20230127170202 ContentSandboxCapable: 1 ContentSandboxLevel: 3 CrashTime: 1709070070 DOMFissionEnabled: 1 DOMIPCEnabled: 1 EMCheckCompatibility: true EventLoopNestingLevel: 1 GpuSandboxLevel: 0 GraphicsNumRenderers: 6 HeadlessMode: 0 InstallTime: 1685805973 JSOutOfMemory: Reported MacAvailableMemorySysctl: 1 MacMemoryPressure: Normal MacMemoryPressureCriticalTime: Unset MacMemoryPressureNormalTime: 1709070001 MacMemoryPressureSysctl: 1 MacMemoryPressureWarningTime: Unset MozCrashReason: Failed to load critical module "resource://gre/modules/WebNavigation.jsm" Notes: FP(D00-L1000-W00000000-T000) WR? WR+ GL Context? GL Context+ ProductID: {ec8030f7-c20a-464f-9b0e-13a3a9e97384} ProductName: Firefox PurgeablePhysicalMemory: 15732736 ReleaseChannel: release SafeMode: 0 SecondsSinceLastCrash: 41204 StartupCrash: 0 StartupTime: 1709070000 SubmittedFrom: Client TelemetryEnvironment: {"build":{"applicationId":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","applicationName":"Firefox","architecture":"x86-64","buildId":"20230127170202","version":"109.0.1","vendor":"Mozilla","displayVersion":"109.0.1","platformVersion":"109.0.1","xpcomAbi":"x86_64-gcc3","updaterAvailable":true},"partner":{"distributionId":null,"distributionVersion":null,"partnerId":null,"distributor":null,"distributorChannel":null,"partnerNames":[]},"system":{"memoryMB":16384,"virtualMaxMB":null,"cpu":{"extensions":["hasMMX","hasSSE","hasSSE2","hasSSE3","hasSSSE3","hasSSE4_1","hasSSE4_2","hasAVX","hasAVX2","hasAES"]},"os":{"name":"Darwin","version":"16.7.0","locale":"en-US"},"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,"adapters":[{"description":null,"vendorID":"0x1002","deviceID":"0x6821","subsysID":null,"RAM":0,"driver":null,"driverVendor":null,"driverVersion":null,"driverDate":null,"GPUActive":true},{"description":null,"vendorID":"0x8086","deviceID":"0x0d26","subsysID":null,"RAM":0,"driver":null,"driverVendor":null,"driverVersion":null,"driverDate":null,"GPUActive":null}],"monitors":[{"screenWidth":1600,"screenHeight":1200,"scale":1}],"features":{"compositor":"none","hwCompositing":{"status":"available"},"gpuProcess":{"status":"unused"},"webrender":{"status":"available"},"wrCompositor":{"status":"available"},"openglCompositing":{"status":"available"},"omtp":{"status":"unused"}}},"appleModelId":"MacBookPro11,5","hasWinPackageId":null},"settings":{"blocklistEnabled":true,"e10sEnabled":true,"e10sMultiProcesses":8,"fissionEnabled":true,"telemetryEnabled":false,"locale":"en-US","intl":{},"update":{"channel":"release","enabled":true},"userPrefs":{"browser.cache.disk.capacity":1048576,"browser.fixup.alternate.enabled":false,"browser.search.region":"US","browser.search.widget.inNavBar":true,"browser.startup.page":3,"browser.urlbar.autoFill":true,"browser.urlbar.autoFill.adaptiveHistory.enabled":false,"browser.urlbar.dnsResolveSingleWordsAfterSearch":0,"browser.urlbar.quicksuggest.dataCollection.enabled":false,"browser.urlbar.showSearchSuggestionsFirst":false,"browser.urlbar.suggest.quicksuggest.nonsponsored":false,"browser.urlbar.suggest.quicksuggest.sponsored":false,"browser.urlbar.suggest.bestmatch":true,"doh-rollout.doorhanger-decision":"UIOk","extensions.formautofill.creditCards.used":2,"media.gmp-gmpopenh264.lastInstallStart":1708260927,"media.gmp-gmpopenh264.lastDownload":1700275645,"media.gmp-gmpopenh264.lastDownloadFailed":1708260927,"media.gmp-gmpopenh264.lastDownloadFailReason":"Error: Failed downloading via ServiceRequest, status: 0, reason: error","media.gmp-gmpopenh264.lastUpdate":1700275646,"media.gmp-manager.lastCheck":1708260927,"media.gmp-manager.lastEmptyCheck":1707770876,"network.trr.strict_native_fallback":false,"privacy.donottrackheader.enabled":true,"signon.rememberSignons":false,"widget.content.allow-gtk-dark-theme":false,"widget.content.gtk-high-contrast.enabled":true,"nimbus.qa.pref-1":"default","nimbus.qa.pref-2":"default"},"sandbox":{"effectiveContentProcessLevel":3,"contentWin32kLockdownState":3},"addonCompatibilityCheckEnabled":true,"isDefaultBrowser":null},"profile":{}} Throttleable: 1 TotalPhysicalMemory: 17179869184 URL: about:blank UptimeTS: 78.50175771 Vendor: Mozilla Version: 109.0.1 useragent_locale: en-US

This report also contains technical information about the state of the application when it crashed. __________________________________________________________________________________________________________________

Gefragt von Shawn Weiler vor 2 Monaten

Letzte Antwort von zeroknight vor 2 Monaten

After automatic update/installation of Firefox 125.0.3 recaptcha does not work on any website requiring this

I have tried all fixes suggested by others reporting similar problems with previous versions, but this was noticeable for me yesterday afternoon right after some downtime… (Lesen Sie mehr)

I have tried all fixes suggested by others reporting similar problems with previous versions, but this was noticeable for me yesterday afternoon right after some downtime and the latest version (for me) of Firefox was installed. Every time I try to use a site requiring recaptcha, the wheel spins and I get no choice to log in. I've cleared cookies and my cache, refreshed Firefox, etc. Nothing works.

Gefragt von sgabardi vor 6 Tagen

Letzte Antwort von James vor 5 Tagen

Help upgrading from Macintosh Firefox 78.15.0 esr (64 bit). Maybe also Thunderbird 60.9.1

WED 21FEB24 The urgent issue is that in the last few weeks, many web pages do not load content, just a grey or white screen. Some will load the header. I am the Executo… (Lesen Sie mehr)

WED 21FEB24 The urgent issue is that in the last few weeks, many web pages do not load content, just a grey or white screen. Some will load the header. I am the Executor for someone's estate, and I am having this trouble with some financial websites that I must access to do the job.

Its been many years since I upgraded anything. It might be that Macintosh Firefox 78.15.0 esr (64 bit) and Thunderbird 60.9.1 are the newest revs that work with OSX 10.11.6 El Capitan. I have a 2011 MacBookPro.

I don't like the changes in the user interface that Apple put into OSX after El Capitan. But I may be forced to upgrade. Too late in life to learn Linux.

Maybe the minimalist solution is to upgrade Firefox. But that may require upgrading OSX, and Apple has made it really hard to do that unless you go to the very newest. OTOH I don't know if the newer OSX will run on my 2011 MacBook Pro. If I clicked on "software update" in About This Mac, what would happen? would it just start doing it, or tell me about it first?

The last time I upgraded something, probably Thunderbird but maybe it was Firefox, I had to learn a complicated process to copy & save the User Profiles (they are in a hidden directory), and then install them into the new rev. I don't want to go through that again. I just want to run the dmg file.

There used to be a Mozilla web page with all the versions & you could download the dmg file you wanted.

If I still have problems, I would have to buy a much newer computer. A several year old MacBookPro. But I don't like the "new" disk formatting method Apple created. It saves space by not actually making copies of files, but uses a pointer to one copy. So there is a single point of failure, which makes copies pointless. I want to keep using OSX Extended (Journaled) and I would have to have the seller of the computer do that for me, before I used Migration Assistant to put my stuff on it. I also hate the welded-on hard drive; being able to pull the drive is the best "broken hardware" solution.

I don't recall if El Capitan has the "OSX Recovery" system or if that happened in a later rev.

I use SuperDuper to make a clone of my hard drive as a backup & archive. I wonder if I could connect a copy on an external drive and then startup using the external copy. Then I could upgrade Firefox and see if it works, then do the same for OSX if necessary, and Thunderbird.

Suggestions & how-to info needed. TIA

Gefragt von FireFoxSucks vor 2 Monaten

Letzte Antwort von jscher2000 - Support Volunteer vor 2 Monaten

Logins and password losts

My profile is not able to recover saved password. Logins.json file copied in the new profile but password not visible. In the default profile logins.json.corrupt appeared… (Lesen Sie mehr)

My profile is not able to recover saved password. Logins.json file copied in the new profile but password not visible. In the default profile logins.json.corrupt appeared. I am looking for a procedure to recover information in corrupted profile. Can you help?

Gefragt von Testone99 vor 4 Monaten

Letzte Antwort von cor-el vor 4 Monaten

Mozilla update crashed Mozilla

I turned my computer on; Mozilla wanted to update, so I said yes. Then I got this: XUL Runner Error: Platform version '120.0.1' is not compatible with minVersion&g… (Lesen Sie mehr)

I turned my computer on; Mozilla wanted to update, so I said yes. Then I got this:

XUL Runner Error: Platform version '120.0.1' is not compatible with minVersion>=120.0 maxVersion<=120.0

And now I have no Mozilla. Restarting the computer didn't help. How do I get the old version back? I really absolutely must have all my bookmarks back....I use them for work!

Gefragt von Sue L vor 4 Monaten

Letzte Antwort von cor-el vor 4 Monaten

Disable automatic download when browsing

How do I stop firefox from automatically downloading files from the internet when I click on them - without even asking me if I want to download them in the first place. … (Lesen Sie mehr)

How do I stop firefox from automatically downloading files from the internet when I click on them - without even asking me if I want to download them in the first place. In "Applications", selecting "Always Ask" in "Choose how firefox handles files etc" does not work. Firefox never asks. If it cannot be disabled, I will have to stop using Firefox.

Gefragt von whellebrand vor 1 Monat

Letzte Antwort von zeroknight vor 1 Monat

FireFox homepage background image

Hello there, Iam facing a problem with changing Firefox homepage background. I tried every solution, tutorial, oldposts etc. nothing seems to work, here is what I tried. … (Lesen Sie mehr)

Hello there, Iam facing a problem with changing Firefox homepage background. I tried every solution, tutorial, oldposts etc. nothing seems to work, here is what I tried. -1- The chrome folder is in the right folder. -2- the naming of both CSS files userChrome, userContent. -3- enabled CSS files at startup -4- search for both CSS files in the browser toolbox for some reason I cannot find both CSS files, even though they are in the chrome directory. Also, I have 2 chrome folders one of them is located here. "AppData\Roaming\Mozilla\Firefox\Profiles\shaf5qn0.default-release\storage\permanent\chrome" the other one I created myself which is here "AppData\Roaming\Mozilla\Firefox\Profiles\shaf5qn0.default-release\chrome" I tried to delete the first one but I cant, I get an error that this file is being used even though I did close Firefox. What I am missing here?

Gefragt von Yassen Redwan vor 3 Monaten

Letzte Antwort von Agent virtuel vor 3 Tagen

Offidocs

Offidocs has hijacked my Firefox browser making it impossible to read PDF files. I never added it and it does not appear in my extensions list. I've marked "always as… (Lesen Sie mehr)

Offidocs has hijacked my Firefox browser making it impossible to read PDF files. I never added it and it does not appear in my extensions list. I've marked "always ask" in the preferences for opening PDF files but to no avail. My antivirus and Malware bytes scans are negative. How can I get rid of this?

Gefragt von vetbird vor 4 Monaten

Letzte Antwort von jonzn4SUSE vor 4 Monaten

Update from tar.bz2 files extracted

Ark extracted Version 119 files into /home/Downloads/Firefox/Firefox. I tried ./update from the BASH command line, but didn't know which argument(s) to add to that comman… (Lesen Sie mehr)

Ark extracted Version 119 files into /home/Downloads/Firefox/Firefox. I tried ./update from the BASH command line, but didn't know which argument(s) to add to that command. I'm hoping to update Firefox 78.14 ESR to a recent version, whether ESR or not. Thanks for your help.

Gefragt von lee.hinkleman vor 2 Monaten

Letzte Antwort von jonzn4SUSE vor 2 Monaten