מוצגות שאלות עם התגיות: הצגת כל השאלות

Google Maps Street View

When the little yellow man is placed on to the map, and a direction arrow is clicked, the view just continues to spin round. Clicking on the 'X' in the top right hand cor… (read more)

When the little yellow man is placed on to the map, and a direction arrow is clicked, the view just continues to spin round. Clicking on the 'X' in the top right hand corner terminates street view. This does not happen with other browsers.

My OS is Debian 12, Firefox is the latest version 115.9.1esr (64bit).

Asked by johnh009 לפני 5 חודשים

תגובה אחרונה מאת zeroknight לפני 5 חודשים

Firefox takes ~5 minutes to startup (even the Profile Manager and in every possible modes)

Firefox takes about 5 minutes to load every it launches, before working smoothly like it should. This problem occured first time yesterday morning, and I have no idea wha… (read more)

Firefox takes about 5 minutes to load every it launches, before working smoothly like it should. This problem occured first time yesterday morning, and I have no idea what could have caused it.

It happens :

  • when I launch firefox normally (whatever the profile)
  • when I launch it from the terminal (it provides no output at all)
  • when I tell it to launch the Profile Manager (5 minutes to see the Profile Manager appear, then 5 more minutes to launch firefox using the selected profile)

It does not happen :

  • when I click "New Window" inside an existing firefox process
  • when I call `firefox --help` from the terminal

Here's what I've tried :

  • First, I've seen pretty much every article from Mozilla Support, Reddit or SuperUser (writing this question is kind of my last resort)
  • I've tried removing and then reinstalling Firefox from Flatpak, from the Fedora repos (using `sudo dnf install firefox`) and using the manual install via the archive (v125)
  • I've tried downgrading firefox (when using the package manager install) from v125 to v124
  • I've also tried the Firefox Developer Edition, same problem here
  • I've tried using the "Refresh Firefox" feature and restarting in Troubleshoot Mode (both are also affected by the slow startup, which makes them particularly painful to execute)
  • I've tried manually deleting the `~/.mozilla/` folder (= manually deleting my profiles)

When firefox launches, it does not freezes my OS and does not seem to use many system ressources : CPU usage is normal, RAM as well, and it does not seem to read many things from the disk as well (I've seen some threads where this was the issue).

And here is something interesting that I discovered :

  • loading (including refreshing) `about:profiles` is also slow and this time freezes firefox (OS reports it as not responding, I can't switch tabs and I can't see my mouse). Other about pages seem to work fine (although I did not try them all)

Thanks !

PS : Even if I think it has nothing to do with the issue, I prefer to mention it here : I was messing with virtual machines yesterday when the issue occured for the first time. My disk got full at some point and I don't know but it might have messed with firefox. At this stage, I had not deleted any files that could relate somehow to Firefox, that's why I doubt it would have caused anything harmful to Firefox. (instead, I mounted an empty partition from my disk to get some space)

Asked by Martin Heywang לפני 5 חודשים

תגובה אחרונה מאת jonzn4SUSE לפני 5 חודשים

I can't watch any videos on pw.live on linux.

So, There's this website called pw.live and I use it for study purposes. And I've recently switched to linux and installed firefox. But that website loads but any videos… (read more)

So, There's this website called pw.live and I use it for study purposes. And I've recently switched to linux and installed firefox. But that website loads but any videos or live streams don't. Even though it works perfectly fine on Windows version of firefox.

I tried to search about this and it may be because the content is DRM protected. I'm just speculating though it may be broken for some very different reason. I also looked into solutions to fix DRM related issues. And found some solutions but the plugin Widevine Content Decryption Module provided by Google Inc. just doesn't exist in the plugins tab. There is only "OpenH264 Video Codec" there. And I think that might be the problem.

Thanks in advance.

Asked by prateek varshney לפני 4 שבועות

תגובה אחרונה מאת jonzn4SUSE לפני 4 שבועות

Tabs not completely shifted over to the left.

Hello Good People, I installed Firefox a few days ago and it was looking good. I don't like that icon in the top-left hand so I right clicked it and removed it. All was … (read more)

Hello Good People,

I installed Firefox a few days ago and it was looking good. I don't like that icon in the top-left hand so I right clicked it and removed it. All was good. However, today there is a blank black space in the corner as if the icon was back (but without an actual icon). It's only a small thing but it bugs me. I want the tabs to be shifted all the way over to the left like they have been up to today. It's triggering my OCD. Anyway, any advice appreciated.

Best Wishes

Matt Hammond

Asked by m.p.hammond לפני 5 חודשים

תגובה אחרונה מאת jscher2000 - Support Volunteer לפני 5 חודשים

Crashes when using Youtube on Firefox

Hi. I got a new laptop some weeks ago (Linux Fedora) and I've been using Firefox without any problems until last week. When watching Youtube videos my system shell crashe… (read more)

Hi. I got a new laptop some weeks ago (Linux Fedora) and I've been using Firefox without any problems until last week. When watching Youtube videos my system shell crashes completely. This problem ONLY happens with Youtube videos and Firefox. Other browsers work fine and I don't have this problem in other websites.

Recent crashes ID: bp-f6b555b9-0fbb-447d-a3b3-9f7ee0240818 bp-1fad31a3-0735-49dd-92ac-44e2d0240818 bp-19ae85a5-8bd3-4d3b-b366-f65a10240818 bp-7ca6ded3-871e-45ad-8351-f21c40240818 bp-88f4aca2-437b-45d1-8d7a-11a7c0240818 bp-ebb8ed44-af42-44c1-89f9-54b1f0240818 bp-3aa6e40e-467c-4c72-8373-b23e30240818

Asked by fjcorfel לפני חודש

תגובה אחרונה מאת jonzn4SUSE לפני חודש

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 … (read more)

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>

Asked by ngiatsog לפני 4 חודשים

תגובה אחרונה מאת jscher2000 - Support Volunteer לפני 4 חודשים

how to restore Firefox status bar to show URL under cursor

Firefox 115.11.0esr from openSuse doesn't display a status bar at the bottom of the window. How can I restore this feature to display the actual URL of a "link" under th… (read more)

Firefox 115.11.0esr from openSuse doesn't display a status bar at the bottom of the window. How can I restore this feature to display the actual URL of a "link" under the cursor, as in Thunderbird?

Asked by konsultor לפני 3 חודשים

תגובה אחרונה מאת jonzn4SUSE לפני 3 חודשים

How do I dismiss a permission dialog?

Sometimes a box pops up on the screen that asks if I want to block or allow something. Sometimes I have no interest in doing either, and just want the damned dialog out o… (read more)

Sometimes a box pops up on the screen that asks if I want to block or allow something. Sometimes I have no interest in doing either, and just want the damned dialog out of my face. The page seems to work otherwise, but the stupid browser keeps the dialog over top of things, and clicking outside of it, and hitting Esc, don't make it go away. I think those actions used to work, and I think there, sensibly, used to be a dismiss option, but that seems to be absent now. There's no sense to trying to force me to make a decision I don't want to make, and doesn't even need to be made, and I want this thing to cut it out.

Asked by Sterrence לפני 5 חודשים

תגובה אחרונה מאת cor-el לפני 4 חודשים

User.js file does not apply

I've installed firefox with pacman on Linux, and I installed arkenfox. It did not work, I tried other user.js', none worked. I've also tried wiping my entire firefox root… (read more)

I've installed firefox with pacman on Linux, and I installed arkenfox. It did not work, I tried other user.js', none worked. I've also tried wiping my entire firefox root folder, then using arkenfox, but did not work.

Asked by deateaterOG לפני חודש

תגובה אחרונה מאת cor-el לפני חודש

Paste works, but Copy does not

When I copy something to my clipboard I can paste it into Firefox. Into web pages and also into the URL bar. But when I copy something in Firefox, it does not go to the … (read more)

When I copy something to my clipboard I can paste it into Firefox. Into web pages and also into the URL bar.

But when I copy something in Firefox, it does not go to the clipboard. The clipboard still hast the content which was already there.

Also strange: When I cut text in a textarea, input element or the URL bar, the text is removed. But it is not sent to the clipboard. When I cut and paste, the text I get is what was previously in the clipboard.

What could be the cause? How can I debug this problem?

Asked by witek לפני חודש

תגובה אחרונה מאת cor-el לפני חודש

Firefox Debian significantly slower page loads than Chromium Debian

Hello, have been scratching my head for a while on this one. Have a freshly setup install of Debian 12, using Sway (wayland) as my Window Manager. I am really struggling … (read more)

Hello, have been scratching my head for a while on this one. Have a freshly setup install of Debian 12, using Sway (wayland) as my Window Manager. I am really struggling with slowness in Firefox, page loads take easily 15 seconds whereas loading the exact same page in another window at the same time with Chromium Debian build has near instantaneous load times. I've tried the following troubleshooting steps: - Created a new firefox profile - Tried "Troubleshooting Mode" in Firefox - Disabled ipv6 in firefox about:config and in Debian - Tried different DNS servers - Tried different non-debian specific builds of Firefox - Tried Firefox Beta and Firefox Nightly for Debian

None of these steps made any difference, and Chromium has continued to be significantly faster. Am really stuck here and would love to get to the bottom of this as Firefox is the only browser that works with a HiDPI display in Sway without blurryness. Happy to provide any and all diagnostics and reports that are needed. Thanks in advance!

EDIT: It seems to be some kind of networking issue, using a VPN solves it. But still doesn't explain why Chromium would behave differently.

Asked by Samuel (+Uni) לפני 5 חודשים

תגובה אחרונה מאת zeroknight לפני 5 חודשים

Browser crashes on opening certain filetypes (notably PDF)

Hi everyone, I'm running Firefox which I compiled with vaapi support because I was trying to use hardware acceleration for videos, so I think this bug may have something… (read more)

Hi everyone,

I'm running Firefox which I compiled with vaapi support because I was trying to use hardware acceleration for videos, so I think this bug may have something to do with that. Every time I open a pdf file my browser instantly crashes. When I use troubleshoot mode I have no such issue. I then tried with a fresh all-default user profile with no add-ons, nothing, and still I crash when loading a PDF. Any pointers would be appreciated.

Asked by jethro.rosette לפני 5 חודשים

תגובה אחרונה מאת jonzn4SUSE לפני 5 חודשים

How to disable minimize on double click

Hello, recently I've been having issues where if misclick anywhere on the title bar (even in the small space between bookmarks) firefox will minimize/restore when I didn'… (read more)

Hello, recently I've been having issues where if misclick anywhere on the title bar (even in the small space between bookmarks) firefox will minimize/restore when I didn't want it too. How do I disable this in about:config?

Asked by s014g03s לפני 3 חודשים

תגובה אחרונה מאת jonzn4SUSE לפני 2 חודשים

Problem with Picture-in-Picture Functionality

Hi everyone, I use Firefox as my primary browser for several reasons, but the main one is because it has the best Picture-in-Picture (PiP) feature. However, I no longer … (read more)

Hi everyone,

I use Firefox as my primary browser for several reasons, but the main one is because it has the best Picture-in-Picture (PiP) feature. However, I no longer use Windows and have encountered problems with it on various Linux distributions (Ubuntu, Fedora, Debian...). Currently, I'm only using Fedora 40, and the problem persists.

The issue is that when I click on the PiP icon, it activates normally, but when I switch windows or minimize and then maximize Firefox again, the video disappears.

I will attach some screenshots to clarify the issue.

I would like to know if there is any way to resolve this. I’ve already reset the settings, cleared the cache, and tested different installation methods (software store, .tar.bz file, apt, dnf, snap). I’ve tried troubleshooting mode and even installed the Developer Edition, but the problem persists. I’m wondering if this is an issue with the Linux version of Firefox.

Thank you.

Asked by caiochaves0610 לפני 2 חודשים

תגובה אחרונה מאת jonzn4SUSE לפני 2 חודשים

when can we have firefox with the translator switches OFF?

hi, When can we have firefox with translation set OFF by default? I mean, it's pretty unfair that intelligent people have to keep turning off the dumb translator... al… (read more)

hi,

When can we have firefox with translation set OFF by default?

I mean, it's pretty unfair that intelligent people have to keep turning off the dumb translator... all the time... We need a setting, openly available, in the Edit/Settings menu, where it belongs, an option to switch it off. In fact, when it first asks if we want a page translated, we need an option: never ask this again...

All we can see is "go under the hood of firefox, config:option, go into the about:config section where 10 of 10 million people will ever get... and there find your way to disable this horrible translator". When can we expect an option in the pop-up: "never ask me this question again"?

The translator in this offensive form has been around since 2023... I seems high time we didn't have to bother with this anymore...

Peter

- - - Thank you for developing firefox and keeping it intelligent - - -

Asked by jepe69 לפני 5 חודשים

תגובה אחרונה מאת cor-el לפני 5 חודשים

Using the --new-tab and --search CLI options together doesn't work properly

When I use the `--search` CLI option, Firefox searches the supplied term in a new window. I want it to open itself in a new tab instead, so I tried out the following com… (read more)

When I use the `--search` CLI option, Firefox searches the supplied term in a new window.

I want it to open itself in a new tab instead, so I tried out the following combination of CLI options:

``` $ firefox --new-tab --search "example" ```

Firefox does search for the given term, but it opens itself in a new window instead of a new tab, thus ignoring the `--new-tab` option.

Am I doing something wrong?

Asked by wympo לפני 5 חודשים

תגובה אחרונה מאת jscher2000 - Support Volunteer לפני 5 חודשים

Fireox bowser suddenly not working on for audio/video calls.

Need to know why this problem of Firefox (on Linux) suddenly arose. When attempting to make audio or video calls it responds with, Does not work on Firefox browser. Yet … (read more)

Need to know why this problem of Firefox (on Linux) suddenly arose. When attempting to make audio or video calls it responds with, Does not work on Firefox browser. Yet it continues to work with about half my contacts.

Asked by Cliff לפני 3 חודשים

תגובה אחרונה מאת cor-el לפני 3 חודשים