Kukhonjiswa imibuzo ethegiwe:

Passkey setup does not work

I cannot get into my Paypal account because Mozilla Firefox is asking me to set up a passkey. I press Continue and it tells me to enter a PIN. I don't have a PIN set up t… (funda kabanzi)

I cannot get into my Paypal account because Mozilla Firefox is asking me to set up a passkey. I press Continue and it tells me to enter a PIN. I don't have a PIN set up that I know of. If I try one, it is wrong and says I have tried too many times. When I go to the Settings where I should set something up with Window Hello, it says it is not available. I just want to log into my Paypal account like I used to. How can I bypass all this stuff?

Open 1

My bookmarks order has been lost

I thought I was updating firefox today but the process lost the order of my book marks and makes them extremely hard to find. Some I used several times a day with one … (funda kabanzi)

I thought I was updating firefox today but the process lost the order of my book marks and makes them extremely hard to find. Some I used several times a day with one click. Now it takes me five clicks just to get to them and then a search. The old system worked perfectly for my purposes. Is there anyway to get back the old bookmarks tab and my old bookmarks in relatively decent order? The text promised me all my bookmarks,etc. I never would had clicked refresh if I had any idea this would be the outcome.

Open 1

CSS Grid and Flexbox alignment issue on Firefox desktop?

Hi all, We are currently optimizing the frontend layout for our online store. On Chrome and Safari, the product catalog grids display perfectly, but on Firefox desktop, s… (funda kabanzi)

Hi all,

We are currently optimizing the frontend layout for our online store. On Chrome and Safari, the product catalog grids display perfectly, but on Firefox desktop, some card elements seem slightly misaligned when scaled down.

Here is the live site for testing: https://luxtool.com

Does Firefox render CSS Grid/Flexbox gap properties differently in certain versions? Any advice on CSS prefixes or fixes for Firefox would be greatly appreciated!

Open

CSS Grid and Flexbox alignment issue on Firefox desktop?

Hi all, We are currently optimizing the frontend layout for our online store. On Chrome and Safari, the product catalog grids display perfectly, but on Firefox desktop, s… (funda kabanzi)

Hi all,

We are currently optimizing the frontend layout for our online store. On Chrome and Safari, the product catalog grids display perfectly, but on Firefox desktop, some card elements seem slightly misaligned when scaled down.

Here is the live site for testing: https://luxtoel.com

Does Firefox render CSS Grid/Flexbox gap properties differently in certain versions? Any advice on CSS prefixes or fixes for Firefox would be greatly appreciated!

Open

How to make Firefox recognize an existing profile

I'm using Firefox in Windows. I lost all of my bookmarks... never mind how, I think I can prevent it from happening again... and I'm trying to figure out whether there is… (funda kabanzi)

I'm using Firefox in Windows. I lost all of my bookmarks... never mind how, I think I can prevent it from happening again... and I'm trying to figure out whether there is a way to recover them.

Looking in the profile folder, I see three profiles. One is listed on the about:profiles page, and is identified as the default. The other two aren't listed there at all.

I need to select each of those other two and see whether my bookmarks can be recovered from them. But how. The about:profiles page has a button for creating a new profile, but not for adding an existing profile to the page. Either it's listed there or it's not.

It seems to me that I could create a new profile and make it the default folder, then quit Firefox and replace it with a copy of one of the profiles I want to investigate. However, I lost my bookmarks by doing something similar to that, so I'm wary of doing it again.

Can someone explain what is happening here--why there are three profiles in the default profile's folder but only one list listed, and why there's apparently no provision for making Firefox list the others?

Open 1

Support for backing up to Google Photo's

Google Drive is giving me warnings it no longer backs up my photo's and I need to use my browser to do that. Only Firefox does not support it. Is there any view or hope f… (funda kabanzi)

Google Drive is giving me warnings it no longer backs up my photo's and I need to use my browser to do that. Only Firefox does not support it. Is there any view or hope for future support so it will work in Firefox as well?

Open 1

my bank changes some things and i can no more connect

235 Hello, my bank updated its online banking service, and since then, I haven't been able to log in. It works with Edge or Chrome but not Firefox. I never keep my browsi… (funda kabanzi)

235 Hello, my bank updated its online banking service, and since then, I haven't been able to log in. It works with Edge or Chrome but not Firefox. I never keep my browsing history and have cleared the cache, so why can't I log in?

Solved 3

Manage cookies no longer appears

Under Settings>Privacy/Security>Browsing Data there is no longer the option to Manage Cookies, despite the help section saying that is where to find it. There is no… (funda kabanzi)

Under Settings>Privacy/Security>Browsing Data there is no longer the option to Manage Cookies, despite the help section saying that is where to find it. There is no other place in all of Settings to find the list of cookies. There is only the ability to delete all cookies in History, which I have no desire to do. I edit the cookie list weekly, and it is only now, mid August 2026, under Firefox 153 on Win 10 that I no longer have access to them. How do I get it back?

Open 3

Hanging requests when closing the browser while offline

Hi! We have automated tests that run in Firefox across a large number of instances. There are about a hundred nodes where the browser is launched. For security reasons, t… (funda kabanzi)

Hi! We have automated tests that run in Firefox across a large number of instances. There are about a hundred nodes where the browser is launched. For security reasons, there is no Internet access. When the browser closes, requests are sent to 146.75.117.91. Since there is no Internet connection, the request fails to complete, and the process terminates due to a timeout. Because the browser is controlled by geckodriver, the `driver.close()` call fails with an error. I’ve tried numerous browser startup options, but none solve the problem; the process still crashes. The only thing that works is blocking the IP address at the firewall level or in the `hosts` file. However, I’m not happy with this solution because it would need to be applied to a hundred nodes, which would create scalability issues down the line. Are there perhaps any options I missed? I also found these addresses in `omni.ja`. Could it be that they are hardcoded and cannot be changed via options?


What I tried

  1. телеметрия

options.set_preference('toolkit.telemetry.enabled', False)

options.set_preference('toolkit.telemetry.rejected', True)

options.set_preference('datareporting.healthreport.uploadEnabled', False)

options.set_preference('datareporting.policy.dataSubmissionEnabled', False)

options.set_preference('toolkit.telemetry.shutdownPingSender.enabled', False)

options.set_preference('toolkit.telemetry.shutdownPingSender.enabledFirstSession', False)

options.set_preference('toolkit.telemetry.firstShutdownPing.enabled', False)

options.set_preference("telemetry.fog.init_on_shutdown", False)


pac = """data:text/plain,function FindProxyForURL(url, host) {

   var blocked = [
       "incoming.telemetry.mozilla.org",
       "telemetry.mozilla.org",
       "normandy.cdn.mozilla.net",
       "firefox.settings.services.mozilla.com",
       "contile.services.mozilla.com",
       "push.services.mozilla.com",
       "aus5.mozilla.org",
       "versioncheck.addons.mozilla.org"
   ];
   for (var i = 0; i < blocked.length; i++) {
       if (dnsDomainIs(host, blocked[i]) || host == blocked[i]) {
           return "PROXY 127.0.0.1:1";
       }
   }
   return "DIRECT";

}"""

fp.set_preference('network.proxy.type', 2)

fp.set_preference('network.proxy.autoconfig_url', pac)


  1. Направить телеметрию в несуществующий адрес

options.set_preference('toolkit.telemetry.server', )

options.set_preference('toolkit.telemetry.server_owner', 'localhost')


  1. Или через proxy — завернуть весь трафик в несуществующий прокси
  2. только для доменов телеметрии это сложно, но можно отключить все внешние запросы при shutdown

fp.set_preference('toolkit.telemetry.shutdownPingSender.backgroundtask.enabled', False)


  1. fp.set_preference('toolkit.asyncshutdown.crash_timeout', 10000)

fp.set_preference('telemetry.fog.log.level', 'off')

fp.set_preference('telemetry.fog.artifact_build', False)

  1. Отключить фоновые задачи при shutdown

fp.set_preference('browser.background.tasks.enabled', False)

fp.set_preference('browser.backgroundtasks.scheduled.task.timeout.sec', 0)


  1. Заблокировать через hosts-like механизм Firefox

options.set_preference('network.dns.localDomains',

                 'incoming.telemetry.mozilla.org,telemetry.mozilla.org,normandy.cdn.mozilla.net')


options.set_preference('network.captive-portal-service.enabled', False)

options.set_preference('network.connectivity-service.enabled', False)


  1. Отключить Mozilla Remote Settings

options.set_preference('services.settings.server', )


  1. Glean telemetry (новая система Mozilla)

options.set_preference('telemetry.fog.artifact_build', False)

options.set_preference('telemetry.fog.test.localhost_port', -1)

options.set_preference('toolkit.telemetry.archive.enabled', False)

options.set_preference('toolkit.telemetry.bhrPing.enabled', False)

options.set_preference('toolkit.telemetry.newProfilePing.enabled', False)

options.set_preference('toolkit.telemetry.reportingPolicy.firstRun', False)

options.set_preference('toolkit.telemetry.unified', False)

options.set_preference('toolkit.telemetry.unifiedIsOptIn ', False)

options.set_preference('toolkit.telemetry.prompted ', 2)

options.set_preference('toolkit.telemetry.unifiedIsOptIn ', False)

options.set_preference('toolkit.telemetry.updatePing.enabled', False)


  1. Отключить Glean полностью

options.set_preference('datareporting.glean.enabled', False)

options.set_preference('telemetry.fog.enabled', False)

Open

What happened to the sound when watching PBS?

I'm running the latest version of Firefox on the latest version of Windows 11, and I'm trying to watch TV shows on PBS's Passport service. I get the video but not the so… (funda kabanzi)

I'm running the latest version of Firefox on the latest version of Windows 11, and I'm trying to watch TV shows on PBS's Passport service. I get the video but not the sound. It's been like this since Saturday. I don't have this problem at all with Chrome or Edge. Is anyone else having this problem? JT

Open 1

one website stopped working

The website fortunesultimateslots.com stopped letting me login on 8-3-26. I had been going to that site daily with no problem. No other website has stopped working on… (funda kabanzi)

The website fortunesultimateslots.com stopped letting me login on 8-3-26. I had been going to that site daily with no problem. No other website has stopped working on Firefox.

That site works for me on Edge but I would rather use Firefox.

Thank you for any help you can give.

Open 1

Cant open Firefox. Not responding and wont refresh

I am not able to open my Firefox browser tonight. It was work yesterday. WHen I tried to refresh it the wheel kept spinning for over 15 min and there was no sign that it … (funda kabanzi)

I am not able to open my Firefox browser tonight. It was work yesterday. WHen I tried to refresh it the wheel kept spinning for over 15 min and there was no sign that it would complete the process.

Open 1

جهاز لابتوب ليس لدي أي متصفح

جهازي لابتوب نوع توشيبا ويندوز 7 لا يوجد به اي متصفح او برامج تواصل الاجتماعي ولا يمكن تحديثه او تحديث اي برنامج غيره لا يوجد بيه الا سلة مهملات و الكمبيوتر والشبكة فقط ا… (funda kabanzi)

جهازي لابتوب نوع توشيبا ويندوز 7 لا يوجد به اي متصفح او برامج تواصل الاجتماعي ولا يمكن تحديثه او تحديث اي برنامج غيره لا يوجد بيه الا سلة مهملات و الكمبيوتر والشبكة فقط اريد تنزيل اي متصفح استخدمه

Open 1