Ceisteanna leis an gclib seo á dtaispeáint: Taispeáin gach ceist

Firefox keeps locking up and crashing especially while on Youtube??

Firefox has stopped working about 5 times in the last few days while browsing? sometimes on Youtube sometimes it just completely freezes and wont even close with task man… (tuilleadh eolais)

Firefox has stopped working about 5 times in the last few days while browsing? sometimes on Youtube sometimes it just completely freezes and wont even close with task manager I had to force my pc to reboot yetserday because it wouldnt respond, my pc is rock solid stable while doing anything else including gaming and is 16 months old and have never crashed even once???

Asked by sedgelicker 3 lá ó shin

Last reply by Paul 3 lá ó shin

Most recent Firefox update causing Google search result page to use 110% cpu

Why after the most recent update to version 139.0.4 64bit does any Google search result page on Firefox now use 110% cpu according to about:processes? This isn't the firs… (tuilleadh eolais)

Why after the most recent update to version 139.0.4 64bit does any Google search result page on Firefox now use 110% cpu according to about:processes? This isn't the first time a Firefox update has caused this to happen on my computer either. It causes extreme system lag until I'm able to close the Google search result page in Firefox, then everything returns to operating normally. In the past subsequent Firefox updates have resolved the issue but it can sometimes be a while before the next update is released and that one is not always the one that fixes it. Is there something I can do resolve this without having to wait for future updates to be released?

Asked by kwbailey02 1 seachtain ó shin

Slow & Poor Performance of Mozilla FireFox (v135) on RISC-V64

Hi Team, I’ve successfully built Firefox v135 from source on our internal development RISC-V64 platform running on Ubuntu 22.04 with GNOME 42.9 (Xorg & Wayland), Our… (tuilleadh eolais)

Hi Team,

I’ve successfully built Firefox v135 from source on our internal development RISC-V64 platform running on Ubuntu 22.04 with GNOME 42.9 (Xorg & Wayland), Our RISC-V Development platform does include a GPU HW which support HW Acceleration for GNOME & other 3rd Apps (Supporting X & Wayland), and Work seamlessly without any issues.


The FireFox v135 Application (via ./mach run) starts up normally. But the major issue I'm observing is that Firefox browser is very slow and laggy, especially during search operations and video playback on YouTube I see a poor performance. Upon further check I found that the most of the work is getting done over the CPU and the utilization is quite high, which is causing the FireFox to perform poorly. I also did try to switching to "Use hardware acceleration when available" in the Mozilla FireFox Settings, but still there is no difference with or without this check and Mozilla FireFox browsing Experience is very poor.

Kindly do let me know how we can enhance and improve the overall performance of FireFox Browsing Experience on my RISC-V platform. Any Support and Help is highly appreciative!

Attached a Build Steps and Configuration used for building Mozilla FireFox v135 on my RISC-V64 platform, let us know if there is anything missed. Thank you!


**BUILD STEPS**


1. Clone the Firefox source (v135.0.1):

git clone --branch FIREFOX_135_0_1_RELEASE --single-branch --depth 1 https://github.com/mozilla-firefox/firefox.git cd firefox

2. Install required dependencies:

sudo apt-get update sudo apt-get install -y curl python3-dev libnspr4 libgtk-3-dev llvm-14 llvm-dev clang libclang-dev libx11-xcb-dev libevent-dev libdbus-glib-1-dev m4 libnspr4-dev meson

3. Install Rust:

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh source $HOME/.cargo/env

4. Install Python and Rust-related tools:

pip install --upgrade pip pip install uniffi-bindgen referencing==0.29.1 cargo install cbindgen

5. Apply the RISC-V compatibility patch:

patch -Np1 -i firefox-riscv64-hack.patch

6. Create the mozconfig file with custom build options:

ac_add_options --with-app-name=firefox ac_add_options --disable-release ac_add_options --enable-hardening ac_add_options --enable-rust-simd ac_add_options --enable-linker=bfd ac_add_options --disable-bootstrap ac_add_options --enable-official-branding ac_add_options --with-branding=browser/branding/official ac_add_options --enable-update-channel=release ac_add_options --with-unsigned-addon-scopes=app,system ac_add_options --allow-addon-sideload ac_add_options --enable-default-toolkit=cairo-gtk3-wayland ac_add_options --with-system-zlib ac_add_options --disable-strip ac_add_options --disable-install-strip ac_add_options --enable-system-ffi ac_add_options --with-system-libevent ac_add_options --with-system-nspr

  1. ac_add_options --with-system-nss

ac_add_options --disable-updater ac_add_options --disable-tests ac_add_options --enable-alsa ac_add_options --without-wasm-sandboxed-libraries

7. Vendor Rust dependencies:

./mach vendor rust --ignore-modified

8. Upgrade Cairo from 1.16.0 to 1.18.4:

  1. Extract and build Cairo 1.18.4

tar -xvf cairo-1.18.4.tar.xz cd cairo-1.18.4 mkdir build && cd build meson .. --prefix=/usr/local ninja sudo meson install

9. Build Firefox:

cd firefox ./mach build


Regards, Saiteja.

Asked by Sai Teja 1 seachtain ó shin

Mozilla doesn`t work

Hello! I would be very grateful if you could help me figure it out, the browser suddenly stopped working, does not open any tabs, just a blank screen, does not open set… (tuilleadh eolais)

Hello!

I would be very grateful if you could help me figure it out, the browser suddenly stopped working, does not open any tabs, just a blank screen, does not open settings, some buttons simply do not respond at all. I cleaned the SScleaner yesterday, but I did not select anything special there, it was a basic regular cleaning that the program offers.

How do I fix this? reinstalling does not help, the browser still does not work

Asked by Diana Radchuk 2 sheachtain ó shin

Last reply by Ed 2 sheachtain ó shin

Out of memory issue with Mozilla firefox v139 on riscv64

Hello Team, I'm working on building Mozilla FireFox on my riscv64 development platform on Ubuntu-22.04, Below is the source and branch from where i'm using the sources. … (tuilleadh eolais)

Hello Team,

I'm working on building Mozilla FireFox on my riscv64 development platform on Ubuntu-22.04, Below is the source and branch from where i'm using the sources.

https://github.com/mozilla-firefox/firefox.git (Branch: FIREFOX_139_0b10_RELEASE)

I'm following the below steps for build firefox:

Created a mozconfig file with the following contents:

mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/objdir mk_add_options AUTOCLOBBER=1

ac_add_options --enable-application=browser ac_add_options --disable-debug ac_add_options --enable-optimize ac_add_options --disable-tests ac_add_options --without-wasm-sandboxed-libraries

Installed dependencies:

apt-get install -y python3-dev curl curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh pip install -U pip ./mach bootstrap cargo install cbindgen apt-get install -y nodejs apt-get install -y llvm-14 llvm-dev clang libclang-dev libpango1.0-dev libx11-xcb-dev libxcomposite-dev libxdamage-dev libgtk-3-dev

Configured the build:

./mach configure

During the build, I encountered an error with Cairo version 1.16.0, so I updated Cairo to the latest version by doing the following:

tar -xvf cairo-1.18.4.tar.xz apt-get install -y meson mkdir build && cd build pip3 install --upgrade meson meson .. --prefix=/usr/local ninja sudo ninja install pkg-config --modversion cairo

After which I executed build:

./mach build

The build took ~14 hours and reached this step:

892:50.50 Compiling gkrust v0.1.0 (/root/firefox/toolkit/library/rust)

However, after about 30 hours, I ran into an Out of Memory issue. I am using a 64GB SD card for the build and have created a 10GB of swap space within the 64GB, but still encountered this error:

[189659.052881] Out of memory: Killed process 52440 (rustc) total-vm:14996824kB, anon-rss:5113116kB, file-rss:0kB, shmem-rss:0kB, UID:0 pgtab0 2811:13.62 error: could not compile gkrust (lib) 2811:14.39 Caused by: 2811:14.50 process didn't exit successfully: `/root/.rustup/toolchains/stable-riscv64gc-unknown-linux-gnu/bin/rustc --crate-name gkrust --e) 2813:03.10 gmake[4]: *** force-cargo-library-build Error 101 2813:03.15 gmake[3]: *** toolkit/library/rust/target-objects Error 2 2813:03.44 gmake[2]: *** compile Error 2 2813:03.70 gmake[1]: *** default Error 2 2813:03.90 gmake: *** [client.mk:60: build] Error 2 2813:04.19 W 271 compiler warnings present.

Could you please help me troubleshoot or suggest how to resolve the memory issue?

Any help & support is greatly appreciated!

Regards, saiteja

Asked by Sai Teja 3 seachtaine ó shin

New sites refusing to load and browser crashing when uploading or downloading files

A few weeks ago, just after I tried to delete the cache and tracking cookies from Firefox (using AVG TuneUp, which seems to have taken more than I asked it to remove), my… (tuilleadh eolais)

A few weeks ago, just after I tried to delete the cache and tracking cookies from Firefox (using AVG TuneUp, which seems to have taken more than I asked it to remove), my browser started refusing to load any new sites, or reload inactive tabs, once I had been using it for about five minutes after rebooting it. It also crashes completely when I try to download or upload anything after that point, which is irritating but does mean I have some crash reports to share (bp-5a7c5f6e-0d55-451a-8b2b-15b360250524 is the latest one). I've tried everything I can think of or find on the Internet - Troubleshoot mode, disabling and re-enabling hardware acceleration, refreshing the browser, uninstalling and re-installing it with and without restarting the computer in-between (which seemed to work for a while), culling tabs (although, if I'm reading the crash reports correctly, lack of memory isn't the issue after all; certainly, Chrome doesn't have the same problem even when using more memory than Firefox did), even running diagnostics on my computer's RAM and hard drive - but nothing's fixed it. What might be going on, and how can I solve this problem?

Asked by elinor.macnab 4 seachtaine ó shin

Firefox crashes multiple times per day

Firefox has recently started crashing multiple times per day. The crashes do not seem to be website specific. Here is a list of my submitted crash reports. Please he… (tuilleadh eolais)

Firefox has recently started crashing multiple times per day. The crashes do not seem to be website specific.

Here is a list of my submitted crash reports. Please help. Report ID Date Submitted bp-4a4b95cb-5de4-4c1a-a039-aa61e0250522 5/22/2025, 4:49 PM View bp-425d3fab-7ee9-4f42-8164-2fb570250522 5/22/2025, 4:49 PM View bp-96f2c479-039b-44a4-af5a-2289b0250522 5/22/2025, 4:49 PM View bp-f1c2ae9d-d9f2-4020-9fac-cc4dc0250522 5/22/2025, 4:49 PM View bp-e7b41459-4e4d-4120-8a9b-5fd140250522 5/22/2025, 4:49 PM View bp-eb018656-c009-449b-a0ec-4b1ad0250522 5/22/2025, 4:49 PM View bp-379d0e69-968d-4466-bb40-110c00250522 5/22/2025, 4:49 PM View bp-4c973572-f639-4093-ac3c-582e90250522 5/22/2025, 4:49 PM View bp-4eaa2ca6-a65c-4b69-9a65-acf030250522 5/22/2025, 4:49 PM View bp-244f6147-2410-45d2-83bb-ad0110250522 5/22/2025, 4:49 PM View bp-e0e22e8c-409a-4dd7-9f38-b35670250522 5/22/2025, 4:49 PM View bp-52f1f46e-c697-4a0e-a946-b46800250522 5/22/2025, 4:49 PM View bp-25042391-231a-4cb7-86ae-7fd570250522 5/22/2025, 4:49 PM View bp-77083bb2-4441-49e7-b621-e13530250522 5/22/2025, 4:49 PM View bp-bf165ce6-fd04-4252-9812-182b60250522 5/22/2025, 4:49 PM View bp-8f18227f-886a-4911-b1e1-05cf30250522 5/22/2025, 4:49 PM View bp-a0f3179b-d107-4c78-a7a1-b5b450250522 5/22/2025, 4:49 PM View bp-82e2715f-60d4-4452-8599-6e7a80250522 5/22/2025, 4:49 PM View bp-cea83fe7-3c58-4cf8-92a6-e665c0250522 5/22/2025, 4:49 PM View bp-0b234002-f59f-4d8d-a531-150af0250522 5/22/2025, 4:49 PM View bp-0dbbce40-5e20-49b6-8320-b97340250522 5/22/2025, 4:49 PM View bp-33f73341-552b-4704-957a-8f7d60250522 5/22/2025, 4:49 PM View bp-7138d2ac-e452-45a0-9c3e-9989d0250522 5/22/2025, 4:49 PM View bp-e4aad04e-743b-4a0e-aa70-1c57d0250522 5/22/2025, 4:49 PM View bp-acc8ec8e-f261-4087-86fb-4e8280250522 5/22/2025, 4:49 PM View bp-ee14e1b1-4e05-4699-a084-4e99f0250522 5/22/2025, 4:49 PM View bp-94a80472-37fa-4f5a-ac91-01ac10250522 5/22/2025, 4:49 PM View bp-75a32236-4cbd-470c-a531-469800250522 5/22/2025, 4:49 PM View bp-9a1633c1-d806-4a15-9ea2-05b310250522 5/22/2025, 4:49 PM View bp-c2c785fe-ea5a-4bac-9c2e-c8d550250522 5/22/2025, 4:49 PM View bp-8617ec7b-e8a6-43e6-aa45-8223c0250522 5/22/2025, 4:49 PM View bp-5ad2eca4-6eeb-4576-b9b7-1c4f10250522 5/22/2025, 4:49 PM View bp-a9a6b606-eaae-4bc0-95e8-88f8c0250522 5/22/2025, 4:49 PM View bp-0a0add6e-5359-4e95-9c53-b99ba0250522 5/22/2025, 4:49 PM View bp-68ff33ff-2576-46e2-a640-033d50250522 5/22/2025, 4:49 PM View bp-e5a72595-818e-4eb8-b6bd-f6fb80250522 5/22/2025, 4:49 PM View bp-fb84105f-be5f-4bc3-8840-89b8b0250522 5/22/2025, 4:49 PM View bp-8296a7d4-6861-45c7-913c-b57a20250522 5/22/2025, 4:49 PM View bp-e88dd1db-9754-4f05-b939-c117f0250522 5/22/2025, 4:49 PM View bp-db96ea58-f258-4555-a7c2-1d9a40250522 5/22/2025, 4:49 PM View bp-8c32df08-4906-48a6-9e13-0799e0250522 5/22/2025, 4:49 PM View bp-69f42d24-29bd-429f-a25b-7e2cf0250522 5/22/2025, 4:49 PM View bp-9f9147b9-5ab5-497d-8179-224b60250522 5/22/2025, 4:49 PM View bp-a2395594-c5a9-4faf-a7c8-4d1ef0250522 5/22/2025, 4:49 PM View bp-73b12d4f-e214-46ee-9b53-fe4390250522 5/22/2025, 4:49 PM View bp-21dbb59d-c084-407c-a40c-fa1c70250522 5/22/2025, 4:49 PM View bp-95e0edb2-60f6-417d-a9bf-db1eb0250522 5/22/2025, 4:49 PM View bp-9865fe2a-33d8-42ac-adab-9819e0250522 5/22/2025, 4:49 PM View bp-e3fe69de-578e-4463-b9b9-43e7a0250522 5/22/2025, 4:49 PM View bp-151af92d-73f7-415d-a400-c26380250522 5/22/2025, 4:49 PM View bp-0f8a7e58-4bf5-4d16-b039-f9d6e0250522 5/22/2025, 4:49 PM View

Asked by Jeff Kirsch 1 mhí ó shin

Last reply by Paul 1 mhí ó shin

Both FireFox and Thunderbird can't connect to server anymore

Hello, I'm facing a two-fold problem: 1. Firefox (138.0.4, 64-bits): when trying to open a website the URL is loaded in the FF-tab, but the screen stays empty 2. Thund… (tuilleadh eolais)

Hello,

I'm facing a two-fold problem:

1. Firefox (138.0.4, 64-bits): when trying to open a website the URL is loaded in the FF-tab, but the screen stays empty

2. Thunderbird (128.10.0esr, 64-bits): downloading messages isn't possible anymore. When sending a message I get following error message (in Dutch):

Verzenden van het bericht is mislukt. Er is een fout opgetreden bij het verzenden van e-mail: fout met uitgaande (SMTP-)server. De server antwoordde: Cannot connect to SMTP server 127.0.0.1 (127.0.0.1:54601), connect error 10061.

Translated to English:

Sending the message failed. An error occurred while sending the email: Outgoing (SMTP) server error. The server responded: Cannot connect to SMTP server 127.0.0.1 (127.0.0.1:54601), connect error 10061.

I did a ping with following result:

C:\Users\<user>>ping 127.0.0.1

Pinging 127.0.0.1 with 32 bytes of data: Reply from 127.0.0.1: bytes=32 time<1ms TTL=128 Reply from 127.0.0.1: bytes=32 time<1ms TTL=128 Reply from 127.0.0.1: bytes=32 time<1ms TTL=128 Reply from 127.0.0.1: bytes=32 time<1ms TTL=128

Ping statistics for 127.0.0.1:

   Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),

Approximate round trip times in milli-seconds:

   Minimum = 0ms, Maximum = 0ms, Average = 0ms


I didn't make any changes to FF and/or TB, and my wild guess is that the necessary Mozilla servers aren't available anymore, due to:

May 21, 2025

No incidents reported today. May 20, 2025 Mozilla Monitor website will be down for 2 hours starting 5/20/2025 at 6 AM PT. Completed - The scheduled maintenance has been completed. May 20, 15:02 UTC Verifying - Verification is currently underway for the maintenance items. May 20, 14:40 UTC In progress - Scheduled maintenance is currently in progress. We will provide updates as necessary. May 20, 14:00 UTC Scheduled - Mozilla Monitor website will be down for maintenance for 2 hours starting 5/20/2025 at 6 AM PT. During this time, the site will be unavailable.

If somebody could step-in, that would be great!

Asked by Thunderbird2015 1 mhí ó shin

bp-6f8016d9-e9e5-4216-b449-2aaee0250520

Recently Firefox has been hanging up more than usual, I did a double check on all drivers, updates, and virus protection. Normally things work fine but through the day I'… (tuilleadh eolais)

Recently Firefox has been hanging up more than usual, I did a double check on all drivers, updates, and virus protection. Normally things work fine but through the day I'll get the "Gah this tab has crashed. " Or the window will freeze and hitch up, sometimes having to be completely closed with task manager. Just wondering if this is something to do with firefox as a whole, my add-ons, or something I can fix with an easy reinstall.

Asked by RaveFlyz 1 mhí ó shin

Lost Firefox saved Bookmarks after uninstalled the Firefox app

Hello, I am not familiar with how Mozilla Firefox Two days ago, I had Microsoft Window 11 screen flickering issues. Searching the web for possible solutions, many recom… (tuilleadh eolais)

Hello,

I am not familiar with how Mozilla Firefox

Two days ago, I had Microsoft Window 11 screen flickering issues. Searching the web for possible solutions, many recommended to uninstall any recently updated apps prior to when the screen flicker issue started. Since Mozilla Firefox was one of the recently updated apps, I uninstalled it but didn't know that I will lose all of the bookmarks I put under browser the bookmark ribbon.

I never saved or exported my Firefox bookmarks before since I thought it will be saved automatically. However, after I reinstall the Firefox app, my bookmarks are gone.

How can I get my Firefox bookmarks back if I never manually saved or exported the Firefox bookmarks before? I really would like to have them back. Desperately need help.

Thanks very much,

KT

Asked by ktccoor 1 mhí ó shin

browser timing out

I am trying to resolve an issue with my firefox browser for MAC OS. Everytime I close my screen to sleep and open it back up, the browser stays on time out mode. I have t… (tuilleadh eolais)

I am trying to resolve an issue with my firefox browser for MAC OS. Everytime I close my screen to sleep and open it back up, the browser stays on time out mode. I have tried downloading the update, but it never seems to complete or fully initiate. I have gone to the mozilla website and downloading directly from there but the new download wont even let me log into my gmail.com using my biometrics. any ideas?

Asked by Nina Simone Declama 1 mhí ó shin

Mozilla performance is bottoming out with zero background usage

Just trying to watch youtube Open a video, the little circle goes around for a second or two, and starts playing (but it's not synched with the audio - the video starts … (tuilleadh eolais)

Just trying to watch youtube

Open a video, the little circle goes around for a second or two, and starts playing (but it's not synched with the audio - the video starts playing a second or two after the audio starts playing)

Close all other apps, clear cache, restart, same problem

But I do NOT have this problem in other browsers

Do I have to quit using firefox?

Asked by Chris S 1 mhí ó shin

Firefox keeps locking up

I have been experiencing a lot of lagging, lockups and closure when browsing. I use Windows Version 10.0.26100 Build 26100. My Firefox version is 138.0.3 (64-bit). While … (tuilleadh eolais)

I have been experiencing a lot of lagging, lockups and closure when browsing. I use Windows Version 10.0.26100 Build 26100. My Firefox version is 138.0.3 (64-bit). While telling you about this issue, my systems has locked up. I had to wait for it to start again. I have had to use other browsers, Google Chrome and Edge to complete tasks. I am able to browse and do everything fluidly, without issue using those browsers.

I have noticed that certain website just do not work well with Firefox. I'm wondering why that is? For instance, Petsmart.Com. That's a popular website. I almost always have to complete my orders using a different browser. Is there anything that I can do about this? I'm really frustrated and getting ready to ditch Firefox.

Thanks for any help you can provide.

Melanie

Asked by gudgeonfamily 1 mhí ó shin

Tablet virtual keyboard keeps popping up at every touch of Firefox

The virtual keyboard on my HP OMNI 10 tablet has begun popping up at every touch of Firefox. This makes it almost impossible to use. Expected/normal behaviour is that whe… (tuilleadh eolais)

The virtual keyboard on my HP OMNI 10 tablet has begun popping up at every touch of Firefox. This makes it almost impossible to use. Expected/normal behaviour is that when you touch web pages or any app., the keyboard stays out of the way while you move around. When you touch inside a textbox, the keyboard should pop up so you can type. Touch outside the textbox and the keyboard drops down. Now, ( since the start of May 2025 or so, I think), the keyboard pops up every time I touch the Firefox page, anywhere. This makes it almost impossible to use.

For example, on a Youtube video, I touch the video to start playing.... and the keyboard pops up, covering up the video! I have to touch the x to drop the keyboard down again. When I want to rewind or move forward, I touch the video to get the controls to appear and...the keyboard pops up, covering the video. I have to touch the x to drop the keyboard and by then the video controls have timed out and gone away again!

Right now, if I close the keyboard and touch this page outside the textbox, the keyboard pops up.

In Microsoft Edge the behaviour is normal and in an app., like Notepad, the keyboard only pops up if I touch inside Notepad.

By the way, I did all this typing once already but when you said you couldn't read my troubleshooting information automatically, I tried your manual steps, and that took me to another web page. When I came back to this page, all my typing was gone! Very annoying. please don't do that again.

Asked by mymailbox1 1 mhí ó shin

Firefox update windows won't open

You guys do an update. Suddenly I can't open any sites. Top of the tab, a little set of dots go side to side foreverrrrrr. Do not, I repeat, do not ask me, "are you doing… (tuilleadh eolais)

You guys do an update. Suddenly I can't open any sites. Top of the tab, a little set of dots go side to side foreverrrrrr. Do not, I repeat, do not ask me, "are you doing this, or are you doing that"......that's not a solution.

It's bad enough I have to use another browser to read FOX NEWS, cause your page refreshes non-stop.....

Oh and I used clear history, and my sites all want me to relog back in. Again, do not tell me to unclick cookies and stuff....

Asked by fh05242001 1 mhí ó shin

firefox is stalling on ubuntu 24

firefox stalls on ubuntu and the OS says it is running but I cannot or don't know how to restart/reset it from the terminal. A reboot of the computer solves the issue bu… (tuilleadh eolais)

firefox stalls on ubuntu and the OS says it is running but I cannot or don't know how to restart/reset it from the terminal. A reboot of the computer solves the issue but I have to re enter the bios password etc. Is there a simple solution?

Asked by jim180167 1 mhí ó shin

Last reply by jim180167 1 mhí ó shin