顯示下列標籤的問題: 顯示所有問題
  • 已解決

Firefox 131 and Billpay no longer compatible

Since the recent update to Firefox 131, I can no longer use the Billpay option of my TD Bank account. I am able to log into my account without any problems and use all of… (閱讀更多)

Since the recent update to Firefox 131, I can no longer use the Billpay option of my TD Bank account. I am able to log into my account without any problems and use all of the options except for Billpay. I want to add that I know I am not alone with this problem as I have seen several others with the same problem but with different banks. It is the Billpay option which no longer works.

As I said, the bank site is fine until I click on "Billpay", Then I get this: begin quote: "Why can't I access Bill Pay?

You might have cookies blocked or cross-site tracking prevented. Depending on what browser you're using, check your settings for these terms:

   Block third party cookies
   Cookie tracking
   Cross-site tracking

Make sure cookies are not blocked and cross-site tracking is enabled. Follow any additional instructions in your browser once you have adjusted these settings.

Copyright © 2024, TD Bank, N. A.. All rights reserved." end quote.

I have disabled uBlock Origin, Enhanced Tracking, tried Private Mode, Troubleshooting Mode to no avail.

I have also cleared cookies & data. This appears specific to v131. Any suggestions??

Straggler 於 5 個月前 詢問

dmehic 於 5 個月前 解答

  • 已解決

Error code: PR_CONNECT_RESET_ERROR

I cannot use Firefox or Thunderbird I keep getting an error code: PR_CONNECT_RESET_ERROR The problem started straight after the latest update a few days ago. I have clea… (閱讀更多)

I cannot use Firefox or Thunderbird I keep getting an error code: PR_CONNECT_RESET_ERROR The problem started straight after the latest update a few days ago.

I have cleared the cache and cookies I turned off the addons and extensions I shut down the internet security I changed the proxy settings to "no proxy" I even changed cert9 to ccert9 and had firefox generate a new cert9

Nothing has worked.

HELP!

Gavin Barrett 於 5 個月前 詢問

Gavin Barrett 於 5 個月前 解答

  • 已解決

Firefox will use up a lot of memory as it is opened for a longer period of time

I only opened 5 pages (fixed tabs), and only enabled two plug-ins, Proxy SwitchyOmega and AdGuard AdBlocker. The browser was always open, and the pages were static, and n… (閱讀更多)

I only opened 5 pages (fixed tabs), and only enabled two plug-ins, Proxy SwitchyOmega and AdGuard AdBlocker. The browser was always open, and the pages were static, and nothing was playing. The strange thing is that it didn't take up much memory at the beginning, but it took up more and more memory over time. Today the system got stuck and couldn't respond (it might be that the system used virtual memory).

I used the browser's task manager, which showed that the Shared Web Process memory of several pages was very high, some as high as 4G, and the GPU memory was also higher than before.

I think this is very strange. Why does the memory usage increase exponentially after the webpage has been there for a while?

My settings and usage habits have basically not changed. I didn't have this problem before, but it has appeared in the past six months. I have updated many versions, but the problem still exists. I have always used Firefox. If it continues like this, I will be very disappointed and have to make changes.

徜徉时光 於 5 個月前 詢問

徜徉时光 於 5 個月前 解答

  • 已解決

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… (閱讀更多)

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?

brownlfb 於 5 個月前 詢問

brownlfb 於 5 個月前 解答

  • 已解決

Firefox update issue

Went into Firefox and got the error message: Platform version 131.03 is not compatible with min version>=131.02 & max version>=131.02 So I'm thinking that the l… (閱讀更多)

Went into Firefox and got the error message: Platform version 131.03 is not compatible with min version>=131.02 & max version>=131.02 So I'm thinking that the last update caused the error. I did a system restore to a week earlier, and after 5 hours, the computer rebooted to that date. Upon opening Firefox, I found the the notice that the next time Firefox opens, it will update. After closing, and reopening, Firefox updated and displayed the same error message. Nor quite sure what to do, I downloaded Firefox again, and was going to uninstall and reinstall. But as soon as the download finished, it loaded. So now I have the new Firefox without all of my saved bookmarks and passwords. I thought I'd read someplace that that wouldn't happen, and all of my password and bookmark history would transfer to the new Firefox. As if that wasn't enough to ruin my day, I found that the new Firefox isn't working in my wife's account on the same computer. She gets the same error message as I did before the new install. I know, my fault for not backing up the bookmark and password files, but what's my option now?

pennypincher 於 5 個月前 詢問

pennypincher 於 5 個月前 解答

  • 已解決

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… (閱讀更多)

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

martijn.vandermade 於 5 個月前 詢問

cor-el 於 5 個月前 解答

  • 已解決

FireFox takes 15 seconds to load first page

When I startup FireFox, it takes ~15 seconds to show me an page. After loading, it works normal and loads pages within a second, until I completely close the browser, and… (閱讀更多)

When I startup FireFox, it takes ~15 seconds to show me an page. After loading, it works normal and loads pages within a second, until I completely close the browser, and then the first page again takes ~15 seconds. I've been having this issue for the past few months.

- I tried disabling all my addons - Launched FireFox in troubleshoot mode - Deleted everything in DataReporting\Archived folder - Cleaned out History/Cookies and site data/Temporary cached files and pages - Tried both Default and Max protection for DNS over HTTPS - FireFox is allowed in Windows Defender firewall - Tried setting 'browser.cache.disk.enable' to FALSE - Tried changing 'Enable HTTPS-Only Mode in all windows' to 'Don’t enable HTTPS-Only Mode' - Windows and FireFox are up-to-date

None of the above saw any improvement in loading time.

Filo 於 5 個月前 詢問

jonzn4SUSE 於 5 個月前 解答

  • 已解決

firefox changed & firefox nolonger works for me

firefox changed and firefox nolonger lets me get my email, bank account, fidelity account, credit card account etc -- can you help me go back to my old firefox? thank you… (閱讀更多)

firefox changed and firefox nolonger lets me get my email, bank account, fidelity account, credit card account etc -- can you help me go back to my old firefox? thank you or do I need to start using another browser?

raymar48 於 4 個月前 詢問

raymar48 於 4 個月前 解答

  • 已解決

Hyperlinks giving bizarre yellow box in upper right.

I have a Dropbox Paper document that I use for my bookmarks. It lists the name of the site (with link attached) and hints as to my username/password for any given site I … (閱讀更多)

I have a Dropbox Paper document that I use for my bookmarks. It lists the name of the site (with link attached) and hints as to my username/password for any given site I use.

For years, it has worked just fine, but trying to solve a different problem, something happened (in my settings?) that renders those hyperlinks non-working. When I click on, say Facebook, it formerly took me right to FB. NOW it gives me a weird yellow box in the upper right corner that says "about:blank" in the upper left of the box, and 3 white boxes at the lower right of the yellow box "Allow" "Deny" "Close." If I click on "Allow," I get a blank page. My navigation doesn't seem to recognize the links I've placed in the Doc.

A friend on FB posted a link to a YouTube video and when I clicked on that, I got the yellow box with the proper URL and a white box option to continue. I've tried to recreate that particular box, but, apparently, once it's accepted, it's OK from there on out.

I have tried deleting the link from the Paper Doc and reinstating it, and I still get the yellow box.

What have I done and how the heck do I get rid of that yellow box?

Bosco 於 4 個月前 詢問

Bosco 於 4 個月前 解答

  • 已解決

Website fails to load

There is a website https //secure.exeloncorp.com/login that will not load using FireFox. It will load using Google Chrome. Is this a function of the Website or FireFox? … (閱讀更多)

There is a website https //secure.exeloncorp.com/login that will not load using FireFox. It will load using Google Chrome. Is this a function of the Website or FireFox? Is there a setting in FireFox that will fix it?

juxizoza 於 4 個月前 詢問

juxizoza 於 4 個月前 解答

  • 已解決

Continuing Problem using websites

I am having a continuing problem using fire fox to access websites. I go to a site to use one of their tools and have issues using or logging in to their site. I will g… (閱讀更多)

I am having a continuing problem using fire fox to access websites. I go to a site to use one of their tools and have issues using or logging in to their site. I will go to a site where an accept cookies banner should pop up to continue and nothing pops up so I can't continue. I have tried the disable Enhanced Protection with no change in results. If I use Duck Duck Go, or Edge everything works. Firefox is my default browser, but it appears that you have made a change that is now impacting my ability to use websites. Sometimes things work if I go into Troubleshooting mode, but I can't determine where the problem is. I use Norton as my anti-virus and internet security and have turned it off as part of my troubleshooting but that does not help.

Please provide guidance.

Thank you.

aviatorone 於 4 個月前 詢問

aviatorone 於 4 個月前 解答

  • 被鎖定

Lost folders in Thunderbird

duplicate of /questions/1471321 thread Hello! A very important email folder in my Thunderbird just vanished. I didn't touch anything! My email was downloading very slow… (閱讀更多)

duplicate of /questions/1471321 thread

Hello!

A very important email folder in my Thunderbird just vanished. I didn't touch anything! My email was downloading very slowly and so I closed the entire Thunderbird application. When I re-opened it, the folder was gone. Everything else is there as before - all other folders, my inbox etc.

I have no idea what happened or where the folder went. I can't find anything online that addresses the problem or how to solve it. I'm very much a tech novice. I need a solution that a 5 year old could navigate lol

S.O.S. Cara

a.sabinal 於 4 個月前 詢問

markwarner22 最近回覆於 4 個月前

  • 已解決

Mistyping cause by non-character notation (e.g., dot, comma, semi-colon, colon, quotation mark etc.)

The problem I encounter has happened since I begin to use Firefox on Windows 11. The same problem happened to my Macbook as well, but a workaround is available. While wit… (閱讀更多)

The problem I encounter has happened since I begin to use Firefox on Windows 11. The same problem happened to my Macbook as well, but a workaround is available. While with Windows 11, I can't find the solution anywhere on the web. Whenever I type on the browser, if I write a non-character notation right behind the word (like "this,"), the word would usually auto delete itself or sometimes, the word clone itself out (e.g, wordword, thisthi, etc.) or it deletes a small section of words right behind that non-char. I don't have insert turning on. I am quite uncertain whether you can reproduce this error on your laptop (for me, I have been through 2 windows 11 laptop and this error still persist). This error seems to only occurs for Vietnamese (Telex and VNI) default keyboard from Microsoft, Russian and English work fine. I suspect that it is caused by Microsoft Vietnamese, but I have unchecked all kind of spelling checking on settings. So should I use a third-party Vietnamese language typing for this situation or does it caused by something else?

dinhthanhha2005 於 4 個月前 詢問

dinhthanhha2005 於 4 個月前 解答

  • 被鎖定

Web page wont play

Good Afternoon, I bought a guitar course from this web site, https://masterclass.davidleviguitar.com/users/sign_in, and whilst the page opens up, when I click on any par… (閱讀更多)

Good Afternoon,

I bought a guitar course from this web site, https://masterclass.davidleviguitar.com/users/sign_in, and whilst the page opens up, when I click on any part of it nothing happens.

I then downloaded Chrome and everything works perfectly.

Can you please tell me how to get this site working properly on my computer, as I don't want Chrome on my computer.

I thank you and look forward to hearing from you.

Kind regards.

Greg.

gregboy 於 4 個月前 詢問

cor-el 最近回覆於 4 個月前

  • 已解決

websites are not showing graphics after installing and uninstalling an add on

Hello. I installed the add on Tranquility Reader, found I did not like it, and uninstalled it. I have restarted my Firefox, as well as my PC, several times, but I still d… (閱讀更多)

Hello. I installed the add on Tranquility Reader, found I did not like it, and uninstalled it. I have restarted my Firefox, as well as my PC, several times, but I still do not have graphics back like they were before. Am I missing something? Or has my whole system just gone on to another world??? So Aggravated! TIA Christie

Christie S 於 4 個月前 詢問

jscher2000 - Support Volunteer 於 4 個月前 解答

  • 已解決

Can't sign into one of my email accounts with FF, but MS Edge works fine

I've been using FF since release #3 and like it a lot since I cut my teeth using NetScape. The past few days FF will not open one of my email accounts. When I click on … (閱讀更多)

I've been using FF since release #3 and like it a lot since I cut my teeth using NetScape. The past few days FF will not open one of my email accounts. When I click on login, it brings up the logging on page and then just starts blinking and will not sign me on. If I use MS Edge to sign on it works fine. The email account has been working fine for many years so don't know what to do. I've deleted recent history, but that does not help. Any ideas will be appreciated as I like FF and don't like to have to use two different browsers to do my daily tasks. Thanks in advance for any help you can suggest. I'm currently using release 131.0.3 with W-10 on a desk top PC with DSL from my phone company with the email account with their ID. My phone company does no know about or support FF.

donP22 於 4 個月前 詢問

donP22 於 4 個月前 解答

  • 已解決

Local server won't load

I run a Synology DSM server on my local network. The website page to load locally inside my LAN is along the lines of 127.0.0.1:1001. MacOSX 15.0.1 FireFox(FF) 132.0 (a… (閱讀更多)

I run a Synology DSM server on my local network. The website page to load locally inside my LAN is along the lines of 127.0.0.1:1001.

MacOSX 15.0.1 FireFox(FF) 132.0 (aarch64)

Previously accessing the DSM via the local IP address worked fine with no problems. Now, following one of the last couple of FF updates, I get an "unable to connect" message.

I also have a domain that routes to my local server and I can still access the DSM via the internet http address through FF. So I know that DSM is running fine and I have verified the settings within DSM.

I can load the DSM via the local IP in both Safari and Chrome. Only FF says it's unable to connect. So that shows that my DSM settings are fine and the page is available and loads in Safari and Chrome via the local IP.

I searched the forum and found similar postings, but not quite the same issue as mine. I deleted the cache & cookies/site data. I ensured the Proxy mode in FF is set to "No Proxy". I do not have any extensions running or themes.

I am at a complete loss at what setting in FF I need to change to restore this functionality.

Thanks, Matt

av8b.heed 於 4 個月前 詢問

av8b.heed 於 4 個月前 解答

  • 已解決

noisy notifications of each new email

Recently, every time I turn on email on Yahoo, I get a noisy notification when each email is received. I do not want or like it. It is annoying. How can I turn off the no… (閱讀更多)

Recently, every time I turn on email on Yahoo, I get a noisy notification when each email is received. I do not want or like it. It is annoying. How can I turn off the notifications?

pirvine94301 於 4 個月前 詢問

Marvin M80 於 3 個月前 解答