Showing questions for topic:
Prikaz označenih pitanja:

Firefox opens 17 operations for one window eating up memory and processing power

I have a Windows 10 Pro system and Firefox continues to open up at least 17 processes for one internet window. This eats up system resources for nothing more than general… (pročitajte više)

I have a Windows 10 Pro system and Firefox continues to open up at least 17 processes for one internet window. This eats up system resources for nothing more than general web browsing. How can these processes be limited? Thank you.

Open 1

Browser is unresponsive after update

My Firefox browser was updated to the most recent version (153.0). And since then, it will always freeze up within a few minutes of me opening it, even in troubleshooting… (pročitajte više)

My Firefox browser was updated to the most recent version (153.0). And since then, it will always freeze up within a few minutes of me opening it, even in troubleshooting mode. Even if I keep clicking, it’s still stuck and I’m forced to close it.

I did turn off hardware acceleration before, and it still doesn’t work.

Open 1

warum ist die obere zeile mit dem kreuz beim start nicht mehr da

warum ist die obere zeile mit dem kreuz beim start nicht mehr da? Sieh die markierung im Bild! immer wenn ich firefox starte mus ich es erst nochmal minimieren und dann w… (pročitajte više)

warum ist die obere zeile mit dem kreuz beim start nicht mehr da? Sieh die markierung im Bild! immer wenn ich firefox starte mus ich es erst nochmal minimieren und dann wieder öffnen. was soll der scheiss

und Könntet ihr eure hilfe auch mal auf deutsch machen dann könnte mann wenigstens was lesen ode alles extra übersetzen zu müssen

Open 1 1 130

Firefox is now freezing after the latest update

How do I roll back an update that is not working on my system? I am very displeased with Firefox overall. You are a memory hog and no settings that I try help. Now, wh… (pročitajte više)

How do I roll back an update that is not working on my system? I am very displeased with Firefox overall. You are a memory hog and no settings that I try help. Now, when I open a new tab Firefox freezes and I often have to close and restart, sometimes more than once. You are pushing me away from your product. I am now looking for a browser that is user friendly and compatible with my older computer (windows 10 is the most upgraded OS I can use). I hope to hear from you with a resolution soon.

Open 1 60

why does my CPU go to 100% usage when Firefox googling "does alton towers still run in the rain"

Windows 10 Open Firefox (151.0.2) Google "does alton towers still run in the rain" My CPU then goes to 100% continuously. Why, CPU occupancy has only gone up in the last … (pročitajte više)

Windows 10 Open Firefox (151.0.2) Google "does alton towers still run in the rain"

My CPU then goes to 100% continuously. Why, CPU occupancy has only gone up in the last few weeks. This happens in a lot of searches.

Open 2 30

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… (pročitajte više)

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 3

Verwendeten Arbeitsspeicher einschränken oder bereinigen ohne Neustart von Firefox

Hallo, ich habe regelmäßig das Problem, dass Firefox quasi meinen gesamten Rechner ausser gefecht setzt indem nahezu die gesamte CPU Leistung und der Arbeitsspeicher in B… (pročitajte više)

Hallo,

ich habe regelmäßig das Problem, dass Firefox quasi meinen gesamten Rechner ausser gefecht setzt indem nahezu die gesamte CPU Leistung und der Arbeitsspeicher in Beschlag genommen werden. Ich surfe in der Regel mit sehr vielen Tabs. Ab ca. 100-150 Tabs benötigt Firefox bei mir zwischenzeitlich 10 GB Arbeitsspeicher und mehr und benutzt die CPU zu 80-90% sodass der Rechner teilweise kurzzeitig nicht mehr reagiert und einfriert. Besonders, wenn ich 100 Tabs und mehr auf einmal als Lesezeichen speichere (Tabs auch nur schließen, da der CPU Lüfter schon dauerhaft auf 100% läuft), friert der Rechner danach erstmal für 3-4 Minuten ein. Ich verstehe nicht, was Firefox die ganze Zeit im Hintergrund anstellt, während z.B. 250 Tabs geöffnet sind. Tabs vorzuladen macht bei der Anzahl keinen Sinn und die Wahrscheinlichkeit, dass man richtig voraussehen könnte, welchen Tab ich als nächste wieder aufrufe und dieser dann schon vorgeladen ist, ist eher gering. Gibt es Möglichkeiten z.B.: - den zur Zeit verwendeten Arbeitsspeicher sofort zu leeren, ohne einen Tab zu verlieren oder dass Firefox geschlossen wird? - dass es dann längert dauert, wenn ich einen Tab anklicke, da dieser ja nicht mehr im Cache ist, und erst wieder in den Arbeitsspeicher geladen werden muss, ist selbstverständlich und vollkommen in Ordnung. - Kann man irgendwo einstellen, wie viele Tabs z.B. im Hintergrund aktiv sein dürfen? - Kann man den zu verwendeten Arbeitsspeicher begrenzen? - und was passiert, wenn die Grenze erreicht wird? - Kann man irgendwo an den Zeiten oder ähnlichem schrauben, wonach Tabs automatisch entladen werden? Chrome friert Tabs scheinbar automatisch ein, zu mindest ist die performance dort besser.

Es bringt ja nichts, wenn alles versuche wird im RAM vorzuhalten, damit es sofort da ist, wenn der ganze Rechner damit in die Knie gezwungen wird und am Ende das gesamte System nicht mehr zu bedienen ist. Vor einigen Jahren ist Firefox bei zu vielen Tabs oft abgestürzt, dann hat sich schon gebessert.

Es fehlt mir an Einstellungen zur Anpassung, was Firefox im Hintergrund vorhalt und was Tabs machen dürfen, wenn sie nicht aktiv bedient bzw. benutzt werden. Manuelles "entladen" kommt für mich nicht in Frage, da es zu aufwändig ist, bei extremen "Multitabbing".

Ich bin seit meiner Kindeheit begeisterter Mozilla Fan (seit Gründung von Mozilla) und verteidige und empfehle Firefox wo ich nur kann. Aber dieses Performanceproblem besteht schon sehr lange, ist zwar über die letzten Jahre besser geworden, dennoch zwingt es mich schon fast, nach einer Alternative zu suchen.

Generell fehlen viele Funktionen für Extrem-Multi-Tab-Benutzer wie z.B., dass man Tabs in der Leiste markieren oder sortieren kann. Ein großer Segen wäre eine Funktion, dass Tabs, die man bereits als Lesezeichen gespeichert hat oder doppelt geöffnete Tab, direkt zu erkennen sind, ohne dass man den Tab aufruft. Aber andere Thema. Ich benutze auch keine vertikale Tableiste, nur die horizontale klassische Leiste oben am Bildschirmrand.

Ich wäre sehr Dankbar über Tips zur Lösung des Problem mit dem Arbeitsspeicher.

Grüße

Open 3 60

Since 153.0.0 update, FF64 goes to "not responding" when I fill in an onscreen field (like this one) and white overlay appears over FF interface.

I have tried safe mode. No joy, but it has shown plain vanilla FF is the issue, not extensions. (I'm using a different browser to make this report, so Share Data button i… (pročitajte više)

I have tried safe mode. No joy, but it has shown plain vanilla FF is the issue, not extensions.

(I'm using a different browser to make this report, so Share Data button is of no use here.)

Open 3 10

I see freeze of blank page

Hello, After the last update i keep seeing a blank page when i open a new tab or new page. i tried the troubleshooting mode but the same. i need to refresh every time i o… (pročitajte više)

Hello, After the last update i keep seeing a blank page when i open a new tab or new page. i tried the troubleshooting mode but the same. i need to refresh every time i open a new page.

Open 5

Web pages with infinite scroll get incredibly laggy

So I know these websites are kind of crap anyway, but I have issues with scrolling bsky.social (and other clients for it like witchsky) and twitter. The further into the … (pročitajte više)

So I know these websites are kind of crap anyway, but I have issues with scrolling bsky.social (and other clients for it like witchsky) and twitter. The further into the timeline I get, the more frequently these webpages lag.

They begin freezing every few seconds for a few seconds, during which they queue left or right clicks, page up/page down, and various other commands, only processing them once it unfreezes. Firefox itself still works during this freeze, e.g. opening the main menu. Also, I can still scroll up or down to a limited degree, though this just exposes empty, unrendered webpage until it unfreezes.

bsky.social has had this problem for a long time, but twitter only recently developed this issue after I had to do a cache clear, cookie clear, etc. trying to log in a few weeks ago. Prior to that it didn't have this issue.

Task manager hasn't really helped elucidate what's wrong, so it might be an about:config that I set or even an unruly extension, but I really don't know what to try.

Open 13