Отображение вопросов с тегом:

A new pop-up box is preventing me from using a site I have been using regularly for several years

I've been using a Rewards site regularly (3/4 times per month) for several years without problem. This weekend the attached pop-up appeared. It makes no difference wheth… (читать ещё)

I've been using a Rewards site regularly (3/4 times per month) for several years without problem. This weekend the attached pop-up appeared. It makes no difference whether I select Resend or Cancel, the program just re-displays the pop-up trapping me in an endless loop. The only exit is to close the window and abort the process. I was able to complete the task without any problem using Edge instead so it appears to be a Firefox specific issue. I haven't consciously changed anything since last using the site successfully on 24 May. Any help/suggestions appreciated.

Решено Архивировано 5 163

shortcut keys on mac

since the last update, the shortcut keys to highlight a word at a time left OR right are both highlighting the next word AND also jumping to the last tab. AGAIN! I notice… (читать ещё)

since the last update, the shortcut keys to highlight a word at a time left OR right are both highlighting the next word AND also jumping to the last tab. AGAIN! I noticed this was identified as a problem back around 2019 in a search. I now cannot move fluidly within text, nor highlight a word at a time quickly. Either it's whole line or simply a letter at a time... which results in a pretty incompetent, crippling experience. PLEASE FIX!!

Решено Архивировано 5 233

Firefox Slow to Load Youtube with Ublock Origin

As the title says, it is very slow with Ublock Origin. I have refreshed Firefox and without Ublock it obviously works but I would like to keep the extension because it is… (читать ещё)

As the title says, it is very slow with Ublock Origin. I have refreshed Firefox and without Ublock it obviously works but I would like to keep the extension because it is the only one that works with Youtube Ads right now.

Закрыто Архивировано 5 152

Increase browser history file size

My FF version 126.0.1 browser history file size is stuck at 10,240 KB. Until recently it was 54,000 KB and change. I would like to get it larger. I've tried all the recen… (читать ещё)

My FF version 126.0.1 browser history file size is stuck at 10,240 KB. Until recently it was 54,000 KB and change. I would like to get it larger. I've tried all the recent help postings relating to places.history.expiration.max_pages, places.history.expiration.transient_current_max_pages, browser.history_expire_days, browser.sessionhistory.max_entries or browser.sessionhistory_max_entries, and so on. Nothing seems to be able to change the "places" file size. Anyone have any more info on this topic?

Архивировано 5 84

Cannot print from Firefox in Win 11, unless I log in as a different Windows user?

I cannot print from Firefox. It worked fine, and then stopped. I'm not sure what changed. It doesn't matter what printer I use. Even printing to PDF fails. No errors appe… (читать ещё)

I cannot print from Firefox. It worked fine, and then stopped. I'm not sure what changed. It doesn't matter what printer I use. Even printing to PDF fails. No errors appear, and nothing shows up in the printer queue. All the other applications in Windows print just fine. It's just Firefox. And just for this one Windows user.

I tried clearing the saved printer settings in the about:support page. I tried refreshing Firefox. I tried uninstalling and reinstalling Firefox. I tried uninstalling, removing the mozilla folder in %appdata%, and reinstalling Firefox. No luck.

The only time I can get it to print anything is to log into a different user account on this same PC. Printing from Firefox seems to work then.

It seems there is some user-specific printer setting/file/whatever that is messed up. I'm not sure what else to try.

Thanks.

Архивировано 5 274

Firefox Multi-Account Containers | Container Name in URL Bar

Firefox 126.0.1 displays a very long name of a container completely in the URL bar. Firefox 127.0 truncates container names AWS long account and role names make keeping t… (читать ещё)

Firefox 126.0.1 displays a very long name of a container completely in the URL bar.

Firefox 127.0 truncates container names

AWS long account and role names make keeping the long name very convenient (works with the 'AWS SSO Containers' Add-On

Решено Архивировано 5 298

reset about:config

how do i reset about:config because some userchromes told me to change them but i dont use them anymore and dont remember which ones it were so i want to reset it

Архивировано 5 68

Bookmarks

I want to transfer all my bookmarks to another pc. I select export to HTML file and save to a flash drive. I insert the flash drive into the second pc then select 'import… (читать ещё)

I want to transfer all my bookmarks to another pc. I select export to HTML file and save to a flash drive. I insert the flash drive into the second pc then select 'import and backup' and 'import bookmark from HTML' . Then select the Bookmark.HTML on the flash drive and 'Open'. But no bookmarks ever appear anywhere that I can find. How can I get the bookmarks?

Архивировано 4 296

DeveloperCommunity.visualstudio.com site not displaying content

When I try to access Developer Community from Visual Studio 2022 ('Send feedback' 'report a problem') the banner displays with selection items but no content is displayed… (читать ещё)

When I try to access Developer Community from Visual Studio 2022 ('Send feedback' 'report a problem') the banner displays with selection items but no content is displayed. This has been a problem for several months (years maybe). I now have a problem that I cannot solve and I need to report it and I cannot if content is not displayed.

Архивировано 4 109

Keyboard shortcut to copy current tab URL

Is there a way to create a new keyboard shortcut to copy current tab URL? I've been using Arc to try some of their features, and what I miss the most is the hability to c… (читать ещё)

Is there a way to create a new keyboard shortcut to copy current tab URL?

I've been using Arc to try some of their features, and what I miss the most is the hability to copy current URL to share without touching the mouse.

Решено Архивировано 4 939

Obscure canvas rendering issue

Hello, I have created a webpage with a canvas element that allows the user to draw an irregular path by pressing down the mouse, similar to the free drawing of a paint a… (читать ещё)

Hello,

I have created a webpage with a canvas element that allows the user to draw an irregular path by pressing down the mouse, similar to the free drawing of a paint application. The issue is that the very first time that the user presses the mouse, the line stops abruptly, while the next times the lines are drawn correctly. The events seem to fire correctly and the page works fine at Chromium, so it seems to be a Firefox issue. You can find the html page below. I am curious, what could be the problem?

<!DOCTYPE html>
<html lang="el">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Canvas</title>
  <style>
    #canvas {
      background-color: whitesmoke;
      border: solid 2px brown;
    }
  </style>
</head>

<body>
  <canvas id="canvas"></canvas>

  <script>
    function startDrawing(e) {
      isDrawing = true;
      context.beginPath();
      context.moveTo(e.offsetX, e.offsetY);
    }

    function draw(e) {
      if (isDrawing) {
        context.lineTo(e.offsetX, e.offsetY);
        context.stroke();
      }
    }

    function stopDrawing(e) {
      console.log("stopped drawing")
      isDrawing = false;
    }

    const canvas = document.getElementById('canvas');
    const context = canvas.getContext('2d');
    var isDrawing = false;
    canvas.width = 1000;
    canvas.height = 1000;
    context.strokeStyle = "#913d88";
    context.lineWidth = 2;
    canvas.onmousedown = startDrawing;
    canvas.onmouseup = stopDrawing;
    canvas.onmousemove = draw;
  </script>
</body>

</html>

Архивировано 4 209

Secure Connection Failed

I am getting "Secure Connection Failed", Ive seen literally hundereds of same error also exist here. Like most of default solution (which is below) did not work for me. M… (читать ещё)

I am getting "Secure Connection Failed", Ive seen literally hundereds of same error also exist here. Like most of default solution (which is below) did not work for me. My laptops time is correct, And I highly doubt reddit and most of internet has issue with its security certificates. And other browser works just fine. So What is my solution other than immigrating to new browser?

https://support.mozilla.org/en-US/kb/secure-connection-failed-firefox-did-not-connect?as=u&utm_source=inproduct

Решено Архивировано 4 380

google setting page incomplete

when I sign into Goog/setting/2 step, the page does not show "app passwords." I've turned off my ad-blocker extensions and pop-up blocker on the page. See attached. … (читать ещё)

when I sign into Goog/setting/2 step, the page does not show "app passwords." I've turned off my ad-blocker extensions and pop-up blocker on the page. See attached.

Архивировано 4 125

Firefox forgets my passwords

Hello, My password saved are deleted every time I close FF. It used to be manageable because Google and other sites didn't require me to fill my passwords (cookies did th… (читать ещё)

Hello,

My password saved are deleted every time I close FF. It used to be manageable because Google and other sites didn't require me to fill my passwords (cookies did the trick I suppose) but now I also loose access to gmail and Youtube every time I close FF. It's annoying to have to use 2FA every damn time. And keeping the passwords available.

I've tried every answer I found by looking around :

- tried to start in safe mode - disable hardware acceleration - I have no extensions

FF saves the passwords correctly (at least they appear in the saved password tab) but they are erased every time I restart FF. The cookies aren't automatically deleted (FF remembers my browsing history) but I need to relog into Google.

I getting frustrated.

Архивировано 4 213

Closing a tab next to an unloaded one jumps to previous tab

Hi, If I have an unloaded tab on right of the current tab and I close the current one, instead of going to the right tab, which is the unloaded one, it jumps to another t… (читать ещё)

Hi,

If I have an unloaded tab on right of the current tab and I close the current one, instead of going to the right tab, which is the unloaded one, it jumps to another tab which I'm not sure has what relation to it, it certainly is not the tab that opened it.

I removed every modified entry of "Browser.tab" in About:Config, installed "Select After Closing Tab", no result.

Thanks

Архивировано 4 248

Passkey

I am trying to go to mylogin.aflac.com which I always went to and was fine and now all the sudden I get that I need a passkey now. see attached for problem and please fix… (читать ещё)

I am trying to go to mylogin.aflac.com which I always went to and was fine and now all the sudden I get that I need a passkey now. see attached for problem and please fix it. thanks

Архивировано 4 35

synchronization problem

Hello! I have a serious problem. I lost access to my data because I changed my password, so my data is no longer synchronized. I reinstalled my Windows, and I forgot the … (читать ещё)

Hello! I have a serious problem. I lost access to my data because I changed my password, so my data is no longer synchronized. I reinstalled my Windows, and I forgot the old password I had on that Windows. As I reinstalled, I decided to change the password because I didn't remember it, but after that I found out that synchronization doesn't work. Please help me, I had very important bookmarks that were there. Thanks in advance!

Архивировано 4 172