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

Firefox will not load any website after an update

After every update, Firefox starts to a blank screen and will not start loading the webpage url put in for over twenty minutes to a half hour. During this time other brow… (tuilleadh eolais)

After every update, Firefox starts to a blank screen and will not start loading the webpage url put in for over twenty minutes to a half hour. During this time other browsers on my Win 10 PC load immediately so it is not a network issue. It is Firefox. When I see that an update is pending I hesitate to do the update because I know I will lose the use of Firefox until it is ready to respond. It just hangs with "loading X.com" showing at the bottom left of the blank screen. I have been using Firefox for a long time and in the past year or longer it has become very unreliable. There are also instances where without an update it will do this and the only way I can get it to work is to clear the cache and the history through settings. What is going on with Firefox! (And lately there is an update every couple fo days!

Asked by rrambrose 1 mhí ó shin

Last reply by rrambrose 2 lá ó shin

  • Cartlannaithe

Mozilla VPN

Does the Mozilla VPN have an easy to use "on" "off" switch? I want better access to streaming services But I also want to browse and easily log in to banking, health, … (tuilleadh eolais)

Does the Mozilla VPN have an easy to use "on" "off" switch? I want better access to streaming services

But I also want to browse and easily log in to banking, health, and financial sites where i have accounts that are protected by recognizing my current IP address to allow me access to my accounts.

From reading information about the numerous VPN providers, it seems like having a VPN might make it difficult to log in to financial, medical record sites etc.

Asked by mdc 8 mí ó shin

Last reply by TyDraniu 8 mí ó shin

Firefox on Linux becomes unclickable

In the last few days, after some minutes of usage, parts of Firefox become unclickable: - I can still click on tabs to change tabs. - When hovering over the cross button… (tuilleadh eolais)

In the last few days, after some minutes of usage, parts of Firefox become unclickable:

- I can still click on tabs to change tabs. - When hovering over the cross button to close a tab, it changes appearance as it should. Clicking the button does nothing. Ctrl+w still closes the button. - Clicking on the address bar does nothing. - Cannot click on back, forward, refresh buttons. - Cannot click on any add-ons. - Cannot click on preferences. - Can click on the button to open a new tab. There, I can enter an address. Once the page has loaded, address bar becomes unclickable again. - Bookmarks toolbar is still working as expected. - Keyboard shortcuts (ctrl+t, ctrl-w, ctrl-l) still work as expected.

I'm running ``` Mozilla Firefox 138.0 20250428130755 20250428130755 ```

on Manjaro 25.0.1 with GNOME 48

Asked by mivkov 2 mhí ó shin

Last reply by mondalealex 2 sheachtain ó shin

Options in right click not working.

I was browsing normally when suddenly the right click menu stoped doing anything. If I right click it still opens but nothing I click on does anything. I can't copy, past… (tuilleadh eolais)

I was browsing normally when suddenly the right click menu stoped doing anything. If I right click it still opens but nothing I click on does anything. I can't copy, paste, open a link in a new tab etc. It also appears to have new options on the menu that I don't recognise. I have no extentions or pluggins exept what comes default so I doubt it's that.

I tried in another browser and it worked fine so it's just firefox.

Asked by KF 5 mhí ó shin

Last reply by KF 5 mhí ó shin

Touch screen pops up every time I touch a link

Since new update was installed today, in touch screen mode, every time a touch a link of any kind my touch keyboard pops up. This is very annoying. Where can I find the s… (tuilleadh eolais)

Since new update was installed today, in touch screen mode, every time a touch a link of any kind my touch keyboard pops up. This is very annoying. Where can I find the setting to turn off this option?

Asked by danicaw 2 mhí ó shin

Last reply by Kiki 2 mhí ó shin

  • Réitithe
  • Cartlannaithe

Can't log into Gmail

I've been using Firefox and Gmail on my PC and android phone for years. Today I can't log into my gmail account on my PC and instead it redirects to google support and go… (tuilleadh eolais)

I've been using Firefox and Gmail on my PC and android phone for years. Today I can't log into my gmail account on my PC and instead it redirects to google support and goes on about clearing cache etc etc. I have cleared the cache but no different. I have restarted my pc and no different. PC is Windows 10.

I can log in to gmail using Google Chrome so I can't see that it is a Google problem. I can also log in ok on my Android phone.

Is this a Firefox issue?

Asked by brownlfb 9 mí ó shin

Answered by brownlfb 9 mí ó shin

  • Réitithe
  • Cartlannaithe

new tabs

Why does hitting my Home button open another tab? It's irritating and unnecessary. How do I make it stop? For that matter, Why can't I open a new tab with my home page a… (tuilleadh eolais)

Why does hitting my Home button open another tab? It's irritating and unnecessary. How do I make it stop?

For that matter, Why can't I open a new tab with my home page already open? I want Duckduckgo. You are bullying me into a blank page or a Firefox page. I used to have a choice.

Asked by jimerie1 7 mí ó shin

Answered by jscher2000 - Support Volunteer 7 mí ó shin

  • Réitithe
  • Cartlannaithe

Firefox tab RAM usage increases over time when repeatedly changing an image's "src"

Hi, Not sure if this is the right place but here goes: Firefox keeps increasing it's tab RAM usage when I change the "src" property of an image programmatically for exte… (tuilleadh eolais)

Hi, Not sure if this is the right place but here goes:

Firefox keeps increasing it's tab RAM usage when I change the "src" property of an image programmatically for extended periods of time (1 hour or so).

I created a dummy project here: https://github.com/mvandermade/example-base64-image-memory-high-native

The code above swaps out the image "src" 20 times a second. However I seen buildups with lower frequencies but bigger images too...

Here some measurement of tab RAM usage:

Measurements Windows 10: Firefox 131 00.00h 37MB 01.15h 127MB 03.00h 228MB

Edge (latest) 00.00h 28MB 01.15h 30MB 03.00h 33MB

(Edge seems to have no memory buildup as much)

Here is a copy of the code if the repo ever goes down:

<html>
    <head>
        <script>
        function generateRandomBase64Image() {
            // Create a canvas element
            const canvas = document.createElement('canvas');
            const ctx = canvas.getContext('2d');

            // Set canvas dimensions
            canvas.width = 200;
            canvas.height = 200;

            if(ctx == null) return ""

            // Fill the canvas with a random color
            ctx.fillStyle = `#${Math.floor(Math.random() * 16777215).toString(16)}`;
            ctx.fillRect(0, 0, canvas.width, canvas.height);

            // Draw some random shapes
            for (let i = 0; i < 10; i++) {
                ctx.fillStyle = `#${Math.floor(Math.random() * 16777215).toString(16)}`;
                ctx.beginPath();
                ctx.arc(
                    Math.random() * canvas.width,
                    Math.random() * canvas.height,
                    Math.random() * 50,
                    0,
                    Math.PI * 2
                );
                ctx.fill();
            }

            // Convert the canvas to a Base64 string
            return canvas.toDataURL('image/png');
        }

        setInterval(() => {
            document.getElementById("swapper").src=generateRandomBase64Image()
        }, 50)

        </script>
    </head>
    <body>
        <img src="" id="swapper"/>
    </body>
</html>

Just a observation from my side, if I can help improve things please let me know!

Greetings,

Martijn

p.s. I also created a project in React which gives similar results: https://github.com/mvandermade/example-base64-image-memory-high

Asked by martijn.vandermade 8 mí ó shin

Answered by cor-el 8 mí ó shin

  • Cartlannaithe

Getting 'PR_END_OF_FILE_ERROR' on certain websites

For the past few days now I've been getting a PR_END_OF_FILE_ERROR when I try to use certain websites such as Reddit or Tumblr. The problem occurs on both my PC and mobil… (tuilleadh eolais)

For the past few days now I've been getting a PR_END_OF_FILE_ERROR when I try to use certain websites such as Reddit or Tumblr. The problem occurs on both my PC and mobile when using Firefox. I can access the websites just fine using other browsers.

I've tried the solutions listed here: https://appuals.com/pr-end-of-file-error/

But none of them have worked. I've also tried renaming the 'cert9.db' file in my profile folder, but that hasn't worked either.

Asked by Liku 9 mí ó shin

Last reply by Liku 9 mí ó shin

  • Cartlannaithe

Images won't load or only load halfway.

A couple of weeks ago my Firefox desktop suddenly stopped loading images correctly. This is especially true for image-heavy websites like Tumblr. Images will either not l… (tuilleadh eolais)

A couple of weeks ago my Firefox desktop suddenly stopped loading images correctly. This is especially true for image-heavy websites like Tumblr. Images will either not load or only partially load. It takes several refreshes to get even 75% of images to load properly (including Shift+Ctrl+R). My Internet connection and speed are normal. Weirdly, other browsers loaded images fine at first, but now they're laggy, too? They still work better in comparison, though. And the Internet on my iPhone and iPad are perfectly fine.

I've tried all of these multiple times: Restarting my PC, Internet, and router. Disabling certain extensions (especially those for Tumblr and ad blockers). Restarting in Troubleshoot Mode without extensions. Reducing number of tabs.

I tried the different Profile trick I found Googling this issue to death, and it works, but I want to fix my default profile's issues if I can. Oh, and YouTube is insufferable to watch and crashes the browser, but I suspect that might have to do more with what YouTube's trying to do with ad blockers. Especially since Chrome isn't much better on that count (aside from the crashing).

Edit: This issue started occurring around the time I downloaded the last Firefox update before the latest one. I thought installing the latest one might solve the problem, but it didn't. This might just be a coincidence.

Asked by cateyedsnake 9 mí ó shin

Last reply by cateyedsnake 9 mí ó shin

  • Réitithe
  • Cartlannaithe

Google Drive says it is offline since latest Firefox update

I tried in another browser and Google Drive is online. Not on Firefox since the latest update. Thanks in advance for any tip to troubleshoot. Internet connection is chec… (tuilleadh eolais)

I tried in another browser and Google Drive is online. Not on Firefox since the latest update.

Thanks in advance for any tip to troubleshoot. Internet connection is checked and okay. All the other google products are functioning as expected.

Asked by Otir 7 mí ó shin

Answered by jscher2000 - Support Volunteer 7 mí ó shin

  • Cartlannaithe

Tabs crashing often

My Firefox on windows 10 crashes tabs OFTEN. Mostly is seems to be Facebook and YouTube tabs, but other tabs will crash and this morning, the Firefox start page tab crash… (tuilleadh eolais)

My Firefox on windows 10 crashes tabs OFTEN. Mostly is seems to be Facebook and YouTube tabs, but other tabs will crash and this morning, the Firefox start page tab crashed. I've done "refreshes", I've uninstalled and deleted the folder and re-installed, I've checked the SSD for errors. Nothing appears in the event viewer. Is there some way to definitively figure what is causing this?

Asked by rsantone 7 mí ó shin

Last reply by jonzn4SUSE 7 mí ó shin

  • Cartlannaithe

Firefox Browser Issue

'Linked In' technical support are telling me that I am unable to see certain pages on their system most likely because my Firefox Browser (which is fully up to date) is u… (tuilleadh eolais)

'Linked In' technical support are telling me that I am unable to see certain pages on their system most likely because my Firefox Browser (which is fully up to date) is using DNS. They said to remove DNS. Is this wise advice and if so how do I do that and what difference will it make to my day to day use of firefox?

Asked by reg45 7 mí ó shin

Last reply by reg45 7 mí ó shin

  • Cartlannaithe

RECAPTCHA - still not working on Firefox

Several sites I use regularly (for instance, The Guardian) use recaptcha as part of the login process. It fails on Firefox, though I can log in on Chrome. I dislike Chr… (tuilleadh eolais)

Several sites I use regularly (for instance, The Guardian) use recaptcha as part of the login process. It fails on Firefox, though I can log in on Chrome. I dislike Chrome, and prefer Firefox for several reasons, including that it is easier on my eyes. I note that there are many complaints describing the same thing that I experience: recaptcha fails to load, or there is simply a blue circle turning in perpetuity with nothing happening. I have removed recent cookies etc, but no change.

There are some sites that use recapcha that I can sign in on using Firefox with no problem. I am wondering if there are different versions of captcha? This started the same week both Microsoft and Firefox updated. Firefox has updated several times since then, but recaptcha is still nonfunctional: FF is not loading it, at least on some critical sites (perhaps the ones that use the most recent recaptcha?

I have reported this frequently for last several months. I notice that this is a continuing problem for many people. Why is it not fixed?

Asked by Annie Stratton 7 mí ó shin

Last reply by jscher2000 - Support Volunteer 7 mí ó shin

  • Cartlannaithe

Is there a way to bypass Error code: PR_END_OF_FILE_ERROR

I am getting Secure Connection failed Error code: PR_END_OF_FILE_ERROR is there a way to bypass this. I tried 5 suggestions on YouTube and followed FireFox's directions f… (tuilleadh eolais)

I am getting Secure Connection failed Error code: PR_END_OF_FILE_ERROR is there a way to bypass this. I tried 5 suggestions on YouTube and followed FireFox's directions for Avast, with no success.

Thank you in advance for your assistance.

Asked by mjp_ryan 7 mí ó shin

Last reply by markwarner22 7 mí ó shin

Text on my screen frequently ends up rendering completely incorrect, and I believe it has gotten worse over time.

I thought it was an issue with my pc, but chrome does not have this issue and neither do other applications. I have tried clearing my cache and cookies as well as ensurin… (tuilleadh eolais)

I thought it was an issue with my pc, but chrome does not have this issue and neither do other applications. I have tried clearing my cache and cookies as well as ensuring mozilla was using my computer performance settings as opposed to hardware acceleration. The attached images are a very small example of the issue. Typically, after clicking on the screen or pressing a button the text is corrected but often replaced with new text being "corrupted". Any help would be greatly appreciated.

Asked by Masonpoch7 4 mhí ó shin

Last reply by frankforbes12 2 mhí ó shin

  • Cartlannaithe

Pacific Gas & Electric (PG&E) no longer allows Firefox

Pacific Gas & Electric (PG&E) no longer allows Firefox. When I try to execute the login function on the PG&E.com website, it says Firefox browser not supporte… (tuilleadh eolais)

Pacific Gas & Electric (PG&E) no longer allows Firefox. When I try to execute the login function on the PG&E.com website, it says Firefox browser not supported. I was told to use Chrome Mask, but I couldn't get this to work either. Maybe I don't know how to use Chrome Mask. Would somebody try to install Chrome Mask and log into pg&e.com, click on the login box and put in some fake username and password. Then tell me if they could make it work.

Asked by Ralph 9 mí ó shin

Last reply by TyDraniu 9 mí ó shin