Fragen mit folgendem Schlagwort anzeigen:

Search Engines

Alternative search engines no longer appear when typing the stasrt of a search. Am able to set alternative search engine in settings but need to go back to settings if I… (Lesen Sie mehr)

Alternative search engines no longer appear when typing the stasrt of a search. Am able to set alternative search engine in settings but need to go back to settings if I want to use another one. This happened after a recent update - perhaps as much as a week ago.

Gelöst Archiviert 1 139

Where can I find Firefox Relay Dashboard in settings on my computer.

I suspect Firefox Relay is not allowing me to sign into a site on the internet. Following instructions I put the Relay Dashboard in my Firefox Settings or so I thought. … (Lesen Sie mehr)

I suspect Firefox Relay is not allowing me to sign into a site on the internet. Following instructions I put the Relay Dashboard in my Firefox Settings or so I thought. How do I locate it?

Gesperrt Archiviert 1 202

Default search engine is set to Bing but changes to Google

I switched my default search engine from Google to Bing. As you can see in the attached screenshot, it should be searching with Bing. But for some reason the search resul… (Lesen Sie mehr)

I switched my default search engine from Google to Bing. As you can see in the attached screenshot, it should be searching with Bing. But for some reason the search results are always Google. How do I fix this? I haven't refreshed Firefox yet. I was hoping to avoid that.

Gelöst Archiviert 4 95

Unable to enter one particular website

There is one particular website that I use quite frequently. Lately I haven't been able to log onto it without encountering a page verifying I am a human, and I can't pro… (Lesen Sie mehr)

There is one particular website that I use quite frequently. Lately I haven't been able to log onto it without encountering a page verifying I am a human, and I can't proceed (the page just loops). This has happened on other browsers too, though I fixed the problem there by disabling my adblocker. But that doesn't help here on Firefox. Any suggestions?

Gelöst Archiviert 3 80

Tab Groups Limit of 10?

I've been using tab grouping and it is really helpful. But this morning when I created a new tab group called "MISC" I was unable to add any tabs to it. 1. I noticed tha… (Lesen Sie mehr)

I've been using tab grouping and it is really helpful.

But this morning when I created a new tab group called "MISC" I was unable to add any tabs to it.

1. I noticed that this new group happens to be the 11th group I've created. So I'm guessing that there may be a limit of ten groups. Am I right?

2. And now, some hours later, I see that the new MISC group does appear on my tab bar, but one of my old groups, TECH, has disappeared, but its contents seem to have been added to the MISC group.

Will in Seattle a.k.a. "Clueless"

Gelöst Archiviert 1 198

Microsof Outlook Web Login

Hello, Not sure if posted under the right section. Recently started having an issue trying to sign in to Microsoft Outlook (formally Hotmail) Web. I don't recall any chan… (Lesen Sie mehr)

Hello,

Not sure if posted under the right section.

Recently started having an issue trying to sign in to Microsoft Outlook (formally Hotmail) Web. I don't recall any changes i made or updates.

When i try to sign in, it opens a new tab and takes me back to the sign in page. This just continues.

Tried using MS Edge and don't have the issue.

So far tried Safe Mode which disabled add-ons, which are currently Add Block plus, and New Tab Override and the issue remains. Not sure if i tried the refresh option but i think it removes the extensions which is not the end of the world.

Added a few images, one shows duplicate tabs, which will continue

Firefox version 140.0.4 (64-bit)

Any ideas whats going

Thanks

Gelöst Archiviert 3 58

Possible infection on Firefox

Every time I access the web I get a report from Norton saying "Threat secured". It attaches every single website that I open. See attachment for some exmaples (only vari… (Lesen Sie mehr)

Every time I access the web I get a report from Norton saying "Threat secured". It attaches every single website that I open. See attachment for some exmaples (only variabole part of message shown apart from first one).This is occuring 50+ times a day but does not occur using Edge, so it appears to be related to Firefox. PLEASE help. Norton have not helped with this. Thank you- Colin O'Brien

Gelöst Archiviert 16 121

libxul.so: undefined symbol: gdk_wayland_device_get_wl_seat

When I try to run firefox 141.0 (Linux x64) I get: libxul.so: undefined symbol: gdk_wayland_device_get_wl_seat Couldn't load XPCOM. Is there a way to fix this? I'm using … (Lesen Sie mehr)

When I try to run firefox 141.0 (Linux x64) I get:

libxul.so: undefined symbol: gdk_wayland_device_get_wl_seat Couldn't load XPCOM.

Is there a way to fix this?

I'm using Slackware 14.2.

Gelöst Archiviert 3 181

Using canvas/context to scale an image that displays ok before removes the image data, ok in Chome/Safari.

The app sizes two adjacent images to the same height. Maybe there's a better approach? This works, in that I see the original image displayed at the wrong size: //img.… (Lesen Sie mehr)

The app sizes two adjacent images to the same height. Maybe there's a better approach?

This works, in that I see the original image displayed at the wrong size:

   //img.src = imgsrc.src;

This sizes the image but without the data (black square for toDataURL w/ image/jpeg) in FF, but not Chrome and Safari:

   var canvas = document.createElement( 'canvas' );
   canvas.width = width;
   canvas.height = avail_height;
   var context = canvas.getContext( '2d' );
   // Tried/failed: Fill white background for JPEG export
   //context.fillStyle = '#fff';
   //context.fillRect(0, 0, canvas.width, canvas.height);
   context.drawImage( imgsrc, 0, 0, canvas.width, canvas.height);
   context.lineWidth = 150; // ??
   img.src = canvas.toDataURL('image/jpeg', 0.92);
   img.onmousedown = disableDragging; // for FF
   img.style.opacity = "1.0"

The page is the view.html one gets to via Enter on phobrain.com.

Gelöst Archiviert 8 287

Images from canvas black or transparent: img.src = canvas.toDataURL(); // FF: 'image/jpeg'=black. Png,webp,default=transparent.

I don't know if this ever worked in FF, since I've been on Chrome a while. I tried canvas.toBlob() in FF without a solution. The behavior is the same whether the served i… (Lesen Sie mehr)

I don't know if this ever worked in FF, since I've been on Chrome a while. I tried canvas.toBlob() in FF without a solution.

The behavior is the same whether the served image is jpg or webp. A Servlet delivers the image data, here in webp:

          response.setHeader("Content-Type", "image/webp");

On page, I use a canvas thus => see '// FIREFOX'

     var canvas = document.createElement( 'canvas' );
     canvas.width = width;
     canvas.height = avail_height;
     var context = canvas.getContext( '2d' );
     context.drawImage( imgsrc, 0, 0, width, avail_height);
     context.lineWidth = 150;
     // FIREFOX: canvas.toDataURL('image/jpeg')=black, png,webp,default=transparent
     img.src = canvas.toDataURL('image/jpeg');
     img.onmousedown = disableDragging; // for FF
     img.style.opacity = "1.0";
     console.log('setImg ok');

Inspecting a black jpeg:

        data:image/jpeg;base64,...

Thanks!

Gelöst Archiviert 7 510

Strange download from Firefox today - xRqj7qhl.html - Sixe: zero bytes - Kind: HTMLtext

I received this download from Firefox today, July 22, 2025: xRqj7qhl.html - Size: zero bytes - Kind: HTML text . I've never experienced this before. Is it legitimate? Th… (Lesen Sie mehr)

I received this download from Firefox today, July 22, 2025: xRqj7qhl.html - Size: zero bytes - Kind: HTML text . I've never experienced this before. Is it legitimate? Thanks

Gelöst Archiviert 4 1412

Inconsistent sync of data in same account

Lately I installed a new PC, and tried to download FireFox and sync my data. But my data seems like a few years ago, not as new as another PC I have now. I'm sure I have … (Lesen Sie mehr)

Lately I installed a new PC, and tried to download FireFox and sync my data. But my data seems like a few years ago, not as new as another PC I have now. I'm sure I have logged in with same account on them, how's this happend?

Gelöst Archiviert 1 118

Browser being managed by my organization???

Hello, I think I may have asked about this in the past but cannot recall if I received an answer. Under Settings, I get the message "Your browser is being managed by you… (Lesen Sie mehr)

Hello, I think I may have asked about this in the past but cannot recall if I received an answer. Under Settings, I get the message "Your browser is being managed by your organization." This is my home computer and is not being managed by any organization. When I click for more information, it gives me a screen with the following information:

Policy Name Certificates

Policy Value ImportEnterpriseRoots

                         true

If I could get more information on this suspected error, or how to correct it, that would be great. Thanks!

Gelöst Archiviert 5 254

Disabling "Open previous windows and tabs" has no effect

The setting works...in the way that if i quit Firefox, it'll not continue from the tabs and windows, but if i reboot my pc and open Firefox, I find myself the same place … (Lesen Sie mehr)

The setting works...in the way that if i quit Firefox, it'll not continue from the tabs and windows, but if i reboot my pc and open Firefox, I find myself the same place i stopped...even though i have that setting disabled. I found someone else with same issue on reddit and i did the same restarting the browser and refreshing and all....all to no effect.

Gesperrt Archiviert 1 76

Address bar in Firefox 140 doesn't let me select search engines using up and down arrows

Before upgrading to Firefox 140, I would always quickly switch between my default DuckDuckGo and alternative search options, like Wikipedia, using the up and down arrows.… (Lesen Sie mehr)

Before upgrading to Firefox 140, I would always quickly switch between my default DuckDuckGo and alternative search options, like Wikipedia, using the up and down arrows. I would just type the search term in the address bar and then tap the down key a couple of times before pressing enter if I wanted to use a different search engine.

The new address bar no longer seems to offer this option. I see I can still select alternative search engines using the mouse, but pressing the down key no longer lets me select them.

Is it possible to re-enable this way of quickly switching between search engines using the keyboard?

Gelöst Archiviert 3 414