Kukhonjiswa imibuzo ethegiwe: Veza yonke imibuzo
  • Kusonjululiwe
  • Okugcinwe kunqolobane

SSL_ERROR_BAD_MAC_ALERT

A couple users at our site intermittently receive a SSL_ERROR_BAD_MAC_ALERT error when navigating to Google in Firefox. This happens in Version 99.0.1 (64-bit) on Windows… (funda kabanzi)

A couple users at our site intermittently receive a SSL_ERROR_BAD_MAC_ALERT error when navigating to Google in Firefox. This happens in Version 99.0.1 (64-bit) on Windows 10 computers. When the issue occurs, users can navigate to other websites without issues. Navigating to Google in a different browser works no problem. Restarting the browser will resolve the issue. Clearing cookies and site data has no effect. Users can also refresh the page after some time and the issue will go away.

Any idea as to why this is happening?

Asked by krisa15 1 unyaka odlule

Answered by cor-el 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

How do I stop that annoying url popping up at the bottom of my screen?

When I am watching a TV stream on my PC; when I hover on (some) pictures or videos, a supremely annoying pop-up url appears at the bottom of my screen. I have some learni… (funda kabanzi)

When I am watching a TV stream on my PC; when I hover on (some) pictures or videos, a supremely annoying pop-up url appears at the bottom of my screen. I have some learning problems and can not figure out the 'userChrome.css' method. I can not work with long streams of multiple overlapping instruction. I am not tech savvy. I do not understand 'layers' and stuff like that. I can do the 'about:config' thing, if anyone knows whether or not if I can fix it from there, I would be eternally grateful. Thanks.

Asked by mckendrick 2 iminyaka edlule

Answered by -elison- 2 iminyaka edlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Error in event Viewer......Event 2 Firefox Default Browser Agent

Hello all. Since the update to Version 113.0 I have been getting an error in my Event Viewer which is Event 2 Firefox Default Browser Agent . I am now on Version 113.0.1… (funda kabanzi)

Hello all. Since the update to Version 113.0 I have been getting an error in my Event Viewer which is Event 2 Firefox Default Browser Agent . I am now on Version 113.0.1 and still get this error. Firefox is my default browser. Below is an image of what I see in my Event Viewer and also the full view of the event itself. I seem to not be having any problems with the browser but I was wondering if anyone could shed some light on why this is happening or forward to the Devs.

Respectfully, Don


Log Name: Application Source: Firefox Default Browser Agent Date: 5/14/2023 4:19:42 PM Event ID: 2 Task Category: None Level: Error Keywords: Classic User: N/A Computer: DESKTOP- Description: The system cannot find the file specified. Event Xml: <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">

 <System>
   <Provider Name="Firefox Default Browser Agent" />
   <EventID Qualifiers="32775">2</EventID>
   <Version>0</Version>
   <Level>2</Level>
   <Task>0</Task>
   <Opcode>0</Opcode>
   <Keywords>0x80000000000000</Keywords>
   <TimeCreated SystemTime="2023-05-14T20:19:42.8333225Z" />
   <EventRecordID>9023</EventRecordID>
   <Correlation />
   <Execution ProcessID="0" ThreadID="0" />
   <Channel>Application</Channel>
   <Computer>DESKTOP-         </Computer>
   <Security />
 </System>
 <EventData>
   <Data>0x80070002 in RegistryDeleteValue:320</Data>
 </EventData>

</Event>

Asked by new_aged2perfection 11 izinyanga ezidlule

Answered by cor-el 11 izinyanga ezidlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

XUL Runner Error

Possibly there was an auto update of MOZILLA FIREFOX on our DELL LAPTOP (Windows 11). Now, we cannot get a Mozilla window to open - due to error message: XUL Runner Erro… (funda kabanzi)

Possibly there was an auto update of MOZILLA FIREFOX on our DELL LAPTOP (Windows 11). Now, we cannot get a Mozilla window to open - due to error message:

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

Can someone please help us get back to a previous version of Mozilla Fire. Perhaps it is a Windows error. I have no way of knowing. Please help me. My email is: [removed email from public] Thank you.

Asked by raem.kauai 6 izinyanga ezidlule

Answered by raem.kauai 6 izinyanga ezidlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Why do links not work in Firefox, but do on other browsers

The latest example is the button to sign into LinkedIn. It is not working in Firefox, but it does in other browsers. I have other examples just from today. I have used fi… (funda kabanzi)

The latest example is the button to sign into LinkedIn. It is not working in Firefox, but it does in other browsers. I have other examples just from today. I have used firefox as default for many years. I assume this is a security thing, but these are basic links. I have no add-ons or other complications. Most times, I do not even realize there is a problem, but when I feel something is wrong, I try another browser and it works. Thank you.

Asked by HnLA 1 unyaka odlule

Answered by HnLA 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

userChrome.css not working

I'm trying to take off this "Extension (Tabliss)" tag on my url. I have followed the instructions down below from another Firefox support forum: https://discourse.mozill… (funda kabanzi)

I'm trying to take off this "Extension (Tabliss)" tag on my url. I have followed the instructions down below from another Firefox support forum: https://discourse.mozilla.org/t/make-addressbar-text-extension-name-of-the-extension-shorter-or-hide/28026/3

The instructions I followed are listed below:

"Users can apply custom style rules to modify Firefox’s toolbar area by creating a userChrome.css file. This takes about 10 minutes so when you have time to take it slowly and carefully:

(1) Set up your chrome folder and userChrome.css file following the five six steps in this article:

https://www.userchrome.org/how-create-userchrome-css.html 45

I have a boring video there if you like demonstrations.

(2) This is the code to paste into the file. You can edit the file using Notepad or a better editor. Make sure to keep it in a plain text format with a .css file extension (not .css.txt).

See improved rule down in: Make addressbar text "Extension (Name Of The Extension)" shorter or hide

/*
   Hide Extension Name in the identity area unless
   hovered for half a second (updated for Fx80)
*/
#identity-box.extensionPage #identity-icon-labels,
#identity-box.extensionPage #identity-icon-label {
  visibility: collapse !important;
  transition: visibility 250ms ease-in-out;
}
#identity-box.extensionPage:hover #identity-icon-labels,
#identity-box.extensionPage:hover #identity-icon-label {
  visibility: visible !important;
  transition: visibility 250ms ease-in-out 500ms;
}

(3) Firefox should read the file at its next startup and apply it to every extension page you load."

Edit: So, yeah, I need help getting this tag off. I'm new to Firefox so it could be something obvious I'm missing. I have also tried CTRL+SHIFT+R to reload the page for changes and also closed and reopened my Firefox entirely.

Thanks in advance.

Asked by MaxwellQ 3 iminyaka edlule

Answered by Wesley Branton 3 iminyaka edlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Unable to Import Passwords From Chrome

Hello, since migrating from Chrome to Firefox, I have used the Import Wizard to successfully transfer over my bookmarks and history, but I just can't seem to get my login… (funda kabanzi)

Hello, since migrating from Chrome to Firefox, I have used the Import Wizard to successfully transfer over my bookmarks and history, but I just can't seem to get my logins/passwords over. The wizard finishes saying that it successfully imported saved logins and passwords, but nothing shows up in the password manager. I am running Windows 10 64bit and Firefox is up to date. Anybody have any suggestions?

Thanks

Asked by Brando 2 iminyaka edlule

Answered by Brando 2 iminyaka edlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Firefox doesn't remember the youtube login

I had the same problem like the link below when I use firefox. https://www.reddit.com/r/firefox/comments/tjxh7s/videos_freeze_when_window_isnt_in_focus/ So, did what th… (funda kabanzi)

I had the same problem like the link below when I use firefox.

https://www.reddit.com/r/firefox/comments/tjxh7s/videos_freeze_when_window_isnt_in_focus/

So, did what the instruction says and it solved the problem regarding discord.

But, since I changed that setting, firefox doesn't remember my google login or dark skin settings of other websites (it was always automatically logged in when I use YouTube. Not like it remembers the password).

How can I solve it? I resetted firefox multiple times.

Asked by bgh1234554 2 iminyaka edlule

Answered by FredMcD 2 iminyaka edlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Is Firefox being phased out as a browser?

I have just seen a clip on Youtube that concerns me. Is Firefox being phased out as a browser? I hope not. I have been using it for years and it is great. Please let me k… (funda kabanzi)

I have just seen a clip on Youtube that concerns me. Is Firefox being phased out as a browser? I hope not. I have been using it for years and it is great. Please let me know. Many thanks Anthony

Asked by avwood 2 iminyaka edlule

Answered by James 2 iminyaka edlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Disable download panel automatically opening?

My job requires me to download and open files in new tabs consistently. However, when I download these files, I don't want the download panel to obscure my vision. Can I … (funda kabanzi)

My job requires me to download and open files in new tabs consistently. However, when I download these files, I don't want the download panel to obscure my vision. Can I disable it?

Asked by thetitansilva 2 iminyaka edlule

Answered by TyDraniu 2 iminyaka edlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

How to get rid of Google login screen?

Greetings from North-East of France, since a few weeks ago I'm seeing a (sort of) pop-up window suggesting to login with a Google account (see the screenshot attached). I… (funda kabanzi)

Greetings from North-East of France, since a few weeks ago I'm seeing a (sort of) pop-up window suggesting to login with a Google account (see the screenshot attached). I've done some internet search to find out how to get rid of it, but the only suggestion I get is to modify an option in a Google account. However, I do not have a Google account! How to get rid of this disturbing pop-up? I already use Adblock Plus and uBlock Origin, yet Google passes through them! Thank you in advance for any help you may provide.

Asked by Massimo 1 unyaka odlule

Answered by user228126785451001171488420526897964190555 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Youtube Videos Now Stutter

Hi there I've had firefox for years and never had much issues. I've never had this issue before the most recent update where now youtube videos constantly stutter. It's … (funda kabanzi)

Hi there

I've had firefox for years and never had much issues. I've never had this issue before the most recent update where now youtube videos constantly stutter. It's just Firefox as other browsers work fine. I've updated my graphics card and did a little bit of research but none of the fixes quite did it for me. In the past couple days I've always had Firefox crash on me twice, which hasn't happened before either. So I'm not sure what's going on, but I'm prone to point fingers at an update. I don't install extensions or themes, so the only extension I have really is uBlock Origin but that's been there forever. I've restarted my computer as well. It is not my resources, they are more than fine my RAM and CPU and Graphics Card. Task manager shows nothing is even above 50% (CPU, GPU, Memory) when playing the video. I've also tried creating a new profile and opening up a new profile. Same issue.

Can anyone suggest any fixes or is this a firefox update bug?

EDIT: This appears to be for all videos I am playing on Firefox. It also does not matter if I set it to the lowest quality, even 144p, it will still stutter nonstop.

Asked by novashmtv 1 unyaka odlule

Answered by novashmtv 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Everything is WAY too big!

After updating to Firefox 103, everything in the browser including web pages, are way too big. Oversized. What the heck happened? Why do they do this? On the tool ba… (funda kabanzi)

After updating to Firefox 103, everything in the browser including web pages, are way too big. Oversized. What the heck happened? Why do they do this? On the tool bar with the address field, on the right, I have a zoom icon, etc., and they're all much bigger!

I could adjust zoom, but this is not right. It's all messed up!

Yes I went into Customize Tool bar - Density - and it was already set to "compact - not supported"

I went into about: config - browser.display.os-zoom-behavior - changed to zero. Nothing happened.

I went into the windows settings - display - set to 125% which it always was. Changing to 100% didn't do anything. Went into display - Make display bigger - and it's 160, where I always had it.

Not happening in Chrome or Windows. So it's Firefox.

Asked by Steve09 1 unyaka odlule

Answered by TyDraniu 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

How to disable the pop-up from a complete download

Ever since the last update, every time I download something on Firefox this download tab pops up every time when the new download is complete. Ive tried disabling every e… (funda kabanzi)

Ever since the last update, every time I download something on Firefox this download tab pops up every time when the new download is complete. Ive tried disabling every extension, Ive tried the about:config solution I found on this page, setting it to "false" and I havent been able to find anything in tools or settings.. but nothing disables it and its getting annoying. Ive had Firefox for years and this has never happened before.

Asked by jos.bonilla 2 iminyaka edlule

Answered by cor-el 2 iminyaka edlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

After last update firefox opens the downloaded PDF files instead of downloading

Who has experienced downloading a PDF file after the last update, Firefox used to open a download dialogue but now it opens the file in same tab instead of downloading it… (funda kabanzi)

Who has experienced downloading a PDF file after the last update, Firefox used to open a download dialogue but now it opens the file in same tab instead of downloading it. this can be annoying especially when opening emails and downloading files, every time I have to reopen the same location.

this happened only today after the last update

Asked by Ahmad Izzate 2 iminyaka edlule

Answered by AliceWyman 2 iminyaka edlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

print settings - edit header and footer

hi, i'm using FF (version 98 at the moment) to print local files. It is key to me to edit header and footer for each print! the only solution i found so far to edit them… (funda kabanzi)

hi,

i'm using FF (version 98 at the moment) to print local files. It is key to me to edit header and footer for each print! the only solution i found so far to edit them at all, is to go to about:config and for example search for print.print_headerleft. Besides that is not usable at all, it simply doesn't work! The header and footer remain the same. Please tell me how can i change header and footer?

If you delete the, in my opinion much better "page setup", why don't you include all it's funktions in the new print dialog?

another problem is the size of the new print preview! it's much to small! make it resizeable please.

Or just give us back the "page setup". That would be a big advantage over chrome and edge, which suffer the same printing problems.

Thanks

Asked by forinves 2 iminyaka edlule

Answered by jscher2000 - Support Volunteer 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Import Extensions from Chrome

Anyone know if there is a way to import Google Chrome extensions into Firefox. I am moving over and want to make it easy. When I search all I get is bookmarks which I kno… (funda kabanzi)

Anyone know if there is a way to import Google Chrome extensions into Firefox. I am moving over and want to make it easy. When I search all I get is bookmarks which I know how to do.

TIA!

Ron

Asked by Ron 2 iminyaka edlule

Answered by TyDraniu 2 iminyaka edlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

how can I restore lost tabs? history/restore previous tabs doesn't have the lost tabs in it

A couple days ago, late, I accidentally closed my main Firefox window before a little window that I'd forgotten was there - and all my 76 tabs disappeared. 1st thing yes… (funda kabanzi)

A couple days ago, late, I accidentally closed my main Firefox window before a little window that I'd forgotten was there - and all my 76 tabs disappeared. 1st thing yesterday I tried - 3bar / history / recently closed tabs - but the only thing in there was the one tab from the small window. Urg! I tried that and - 3bar / history / manage - where I could see my tabs but could only restore 1 at a time - not good for 76 tabs. I read a bunch of different questions about this same issue, and tried the suggestions, including some app called scrounge, but none of these restored my tabs. Help!!!!

Asked by annadroff 1 unyaka odlule

Answered by jscher2000 - Support Volunteer 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

How to change menu/toolbar color after update?

Hey all, I just updated Firefox on PC and the updater asked a couple questions. I chose "Visionary" as the answer to a question because it suited me the best out of all t… (funda kabanzi)

Hey all, I just updated Firefox on PC and the updater asked a couple questions. I chose "Visionary" as the answer to a question because it suited me the best out of all the options. However, this also changed the colors of my browser menu and toolbar to green. The thing is, while green is a fine color, I would never select it as "my" color for anything ever.

I've tried to change the color in about:preferences, but nothing I can find seems to work. Any ideas?

Thanks!

Asked by RoyDA 1 unyaka odlule

Answered by cor-el 1 unyaka odlule