Kukhonjiswa imibuzo ethegiwe: Veza yonke imibuzo
  • Okugcinwe kunqolobane

Cannot access my bank account

Firefox cannot access my bank account. Bank says hello to my name when I log in, but then keeps saying "loading" and can never show me what is in my bank accounts. Why?… (funda kabanzi)

Firefox cannot access my bank account. Bank says hello to my name when I log in, but then keeps saying "loading" and can never show me what is in my bank accounts. Why?

Asked by dwcas 1 unyaka odlule

Last reply by cor-el 1 unyaka odlule

  • Okugcinwe kunqolobane

All photos Changed from JPEG to JPG file..........................

I tried to log onto Youtube so I could make a few comments on a football game. They had to send me a code to my email (HOTMAIL) BTW I never received a code to LOG into Yo… (funda kabanzi)

I tried to log onto Youtube so I could make a few comments on a football game. They had to send me a code to my email (HOTMAIL) BTW I never received a code to LOG into YouTube. I used "Snip & Sketch" as I have many many times before but now I open a photo to edit it and Microsoft has taken over my photos. I mean as far as my editing capabilities. I've tried all the "OPEN WITH" options but can not get to the basic photo editor. Need some help here... Thanks in advance Steve

Asked by comrade1989 1 unyaka odlule

Last reply by cor-el 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

I changed location of appdata\roaming in Win 11 and now Firefox extensions don't work.

I'm having a problem with Win 11 that will likely require that I reinstall the OS. I decided to move most of the data in my User folder by right clicking and changing the… (funda kabanzi)

I'm having a problem with Win 11 that will likely require that I reinstall the OS. I decided to move most of the data in my User folder by right clicking and changing the drive from "C:" to "E:" in the Locations tab. Firefox was closed as a I did this, it worked fine, and then I restarted the PC. Upon opening Firefox none of the extensions are working and I'm not sure what to do.

Asked by MasterZoen 1 unyaka odlule

Answered by MasterZoen 1 unyaka odlule

  • Okugcinwe kunqolobane

Widevine plugin does not install

I have had Firefox for three days now, and I was trying to watch some videos on Netflix, but I got this error that the DRM was not installed. I did not have any plugins i… (funda kabanzi)

I have had Firefox for three days now, and I was trying to watch some videos on Netflix, but I got this error that the DRM was not installed. I did not have any plugins installed or VPN on either. I was looking for steps to solve this but came to a dead end. I tried looking into the console, and it gave me errors with turning off/on the DRM. I would like to get some help with this.

Asked by Tatay 1 unyaka odlule

Last reply by zeroknight 1 unyaka odlule

  • Okugcinwe kunqolobane

Locks up my PC when/during updates.

See pix. I have my PC set to NOT auto update, yet it still does. Every time you guys post an update (which is super frequent) it locks up my PC for an hour or more! I … (funda kabanzi)

See pix. I have my PC set to NOT auto update, yet it still does. Every time you guys post an update (which is super frequent) it locks up my PC for an hour or more! I have to restart it several times before it reconnects to the internet.

Asked by guitarcollege 1 unyaka odlule

Last reply by James (On Leave) 1 unyaka odlule

  • Okugcinwe kunqolobane

Firefox updater requires admin permission to run

When I start FF I get a Windows popup requiring an admin username and pw to run Firefox Updater. I'm in a corporate environment and users don't have admin rights (which i… (funda kabanzi)

When I start FF I get a Windows popup requiring an admin username and pw to run Firefox Updater. I'm in a corporate environment and users don't have admin rights (which is standard for any company doing reasonable security). I checked the properties on firefox.exe and updater.exe and neither requires admin or is set to run in compatibility mode. Chrome and Edge update without an admin requirement.

Asked by mitch28 1 unyaka odlule

Last reply by zeroknight 1 unyaka odlule

  • Okugcinwe kunqolobane

Firefox conflict with Windows HTTPS (DoH) -> Requipred DoH

When setting Windows to "Require DoH", firefox will not resolve DNS addresses, regardless of which "Enable secure DNS" setting is picked in FireFox security settings tab.… (funda kabanzi)

When setting Windows to "Require DoH", firefox will not resolve DNS addresses, regardless of which "Enable secure DNS" setting is picked in FireFox security settings tab.

I expected at least "Off -- Use your default DNS resolver" to work.

If Windows is configured to just "Allow DoH", Firefox has no issues resolving DNS addresses, for any of the Firefox policy settings.

For reference, you can find the DoH policy setting in windows group policy editor, here:

gpedit.msc

Computer Configuration -> Administrative Templates -> Network -> DNS Client -> Configure DNS over HTTPS

(Have to enable it, then select Configure DoH options: Require DoH.)

you may need to issue a gpupdate /force for the setting to be picked up quickly.

Asked by s189 1 unyaka odlule

Last reply by Valentin 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

What is the proper format for the ExtensionSettings policy registry key/value that is used to manage browser extension settings?

When looking at the ExtensionSettings page for Firefox or Chrome they both use an example that shows the registry key Software\Policies\Mozilla\Firefox\ExtensionSettings… (funda kabanzi)

When looking at the ExtensionSettings page for Firefox or Chrome they both use an example that shows the registry key Software\Policies\Mozilla\Firefox\ExtensionSettings (REG_MULTI_SZ) being set to a long JSON string with every extension ID and the settings for that particular ID. For example...

{

 "*": {
   "blocked_install_message": "Custom error message.",
   "install_sources": ["https://yourwebsite.com/*"],
   "installation_mode": "blocked",
   "allowed_types": ["extension"]
 },
 "uBlock0@raymondhill.net": {
   "installation_mode": "force_installed",
   "install_url": "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi"
 },
 "https-everywhere@eff.org": {
   "installation_mode": "allowed"
 }

}

The problem with this method is that if I am installing an extension, and I overwrite what already exists in Software\Policies\Mozilla\Firefox\ExtensionSettings then all of those other settings get removed. So even if I am a non-malicious actor and just make a mistake with my installer I can easily delete every other extension's settings. Instead what I have to do is during install I have to read the current value of Software\Policies\Mozilla\Firefox\ExtensionSettings and then insert my extension's settings into the JSON blob.

So the examples that Firefox and Chrome provides do of course work, however they do not make very much sense to me. Why would it be formatted this way since all of those are additional key/value pairs and that is exactly what the registry excels at storing. So why put all of those into a single key/value instead of breaking them into multiple?

Additionally breaking them a part into multiple key/value pairs does work! So if instead of the example above I were to split them into multiple key value pairs it works just fine!

Software\Policies\Mozilla\Firefox\ExtensionSettings

   uBlock0@raymondhill.net
       "installation_mode": "force_installed",
       "install_url": "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi"

So knowing that this way with multiple key/value pairs works why am I bothering to ask this question at all instead of just doing it the way that makes sense to me? Well the issue is that by breaking it up into multiple key value pairs it actually overrides the other method and makes it so that all those registry settings are ignored. So it doesn't delete them but it still leaves me with nearly the exact same problem.

While I believe "my" way is superior because it uses the registry in a more common sense route, if that is not what the majority of extension developers do then it doesn't matter and I should be conforming to the other way.

As I am typing this question up I did realize just how hard/annoying it is to properly format and make it clear and digestible what the multi key/value format of the registry would look like instead of being a JSON string. So perhaps that is the reason why all the documentation puts it all as one JSON string?

Asked by perihwk+firefox 1 unyaka odlule

Answered by Mike Kaply 1 unyaka odlule

  • Okugcinwe kunqolobane

download

I have clicked the 'always ask where to save download' box, but the save files to downloads is still active. How do I get it to ask me where to download to every time? … (funda kabanzi)

I have clicked the 'always ask where to save download' box, but the save files to downloads is still active. How do I get it to ask me where to download to every time?

Asked by grahamlock54 1 unyaka odlule

Last reply by zeroknight 1 unyaka odlule

  • Okugcinwe kunqolobane

Name of the profile

I can't change the name of one of my firefox profiles. I have an error where the name is too long and it cannot be changed. Is there any way to do this other than creatin… (funda kabanzi)

I can't change the name of one of my firefox profiles. I have an error where the name is too long and it cannot be changed. Is there any way to do this other than creating a new profile and deleting the old one?

Asked by Aamberxis 1 unyaka odlule

Last reply by cor-el 1 unyaka odlule

  • Okugcinwe kunqolobane

while downloading file/files my mobile signal get disappears for few seconds

Hi Mozilla team. There is some problem with downloading, since few weeks when I use Firefox for download any file/files my mobile signal gets dissappears, for few seconds… (funda kabanzi)

Hi Mozilla team. There is some problem with downloading, since few weeks when I use Firefox for download any file/files my mobile signal gets dissappears, for few seconds. Due to that my call gets drop too. This is very serious issue. I tried every possible way to fix this, so I reinstall Firefox but I'm still facing the same problem.

Asked by Ritik 1 unyaka odlule

Last reply by Paul 1 unyaka odlule

  • Okugcinwe kunqolobane

transferring Firefox bookmarks and login info from a Time Machine backup

I recently "downgraded" from macOS Ventura back to macOS Monterey on my 2019 Macbook Pro. Is there a way to migrate all the Firefox bookmarks and login/password info that… (funda kabanzi)

I recently "downgraded" from macOS Ventura back to macOS Monterey on my 2019 Macbook Pro. Is there a way to migrate all the Firefox bookmarks and login/password info that I had prior to the downgrade? I made a complete backup of the computer prior to the downgrade, but I can't find any folders with this info on the backup, just the Firefox application. I didn't make the .html or .csv files of the bookmarks or login info prior to the downgrade--didn't think it would require such steps to migrate the old info.

Asked by nosetradamnus 1 unyaka odlule

Last reply by cor-el 1 unyaka odlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

How to change where downloaded items go?

I am on Android Firefox and I accidentally chose "Always" on the pop-up asking where I want my downloaded items to go. I want to change it because where the files are now… (funda kabanzi)

I am on Android Firefox and I accidentally chose "Always" on the pop-up asking where I want my downloaded items to go. I want to change it because where the files are now sent is inconvenient at best but i cannot find such an option to change my preference in either the Firefox settings bar nor my phone's device settings.

Asked by e.yvette058 1 unyaka odlule

Answered by e.yvette058 1 unyaka odlule

  • Okugcinwe kunqolobane

Migration Issues from Old Computer

I got a replacement computer for my old one which will not start up, i use a Firefox browser so how do i transfer my files, passwords, bookmarks and desktop icons from my… (funda kabanzi)

I got a replacement computer for my old one which will not start up, i use a Firefox browser so how do i transfer my files, passwords, bookmarks and desktop icons from my old computer to my new one?

Asked by sjsopm 1 unyaka odlule

Last reply by Dropa 1 unyaka odlule