Zobrazenie otázok označených: Zobraziť všetky otázky
  • Archivované

websites on Firefox think that I am in Austria. I am in Ayer, Ma and only read Vienna News on occations. How can I correct this?

websites on Firefox think that I am in Austria. I am in Ayer, Ma and only read Vienna News at times. Amazon and other sites (pop-ups) think that I will pay in euros and … (ďalšie informácie)

websites on Firefox think that I am in Austria. I am in Ayer, Ma and only read Vienna News at times. Amazon and other sites (pop-ups) think that I will pay in euros and read ads in german. How can I correct this?

Otázku položil(a) davidsonbx Pred 1 rokom

Posledná odpoveď od jscher2000 - Support Volunteer Pred 1 rokom

  • Archivované

dom.forms.autocomplete.formautofill enables again after closing Firefox

Hello, I am disabling dom.forms.autocomplete.formautofill but when I close Firefox and restart it, it's enabled again. I did a refresh but it still stays enabled. Is that… (ďalšie informácie)

Hello, I am disabling dom.forms.autocomplete.formautofill but when I close Firefox and restart it, it's enabled again. I did a refresh but it still stays enabled. Is that setting in effect only for current session? Thanks

Otázku položil(a) kevin1a Pred 1 rokom

Posledná odpoveď od cor-el Pred 1 rokom

  • Archivované
  • Archivované

re: HBOMAX not working

Ever since Firefox update 105.0.3, I have been unable to log into my HBOMAX account. I can get it to work fine in edge, but in Firefox I can click on my account, for w… (ďalšie informácie)

Ever since Firefox update 105.0.3, I have been unable to log into my HBOMAX account. I can get it to work fine in edge, but in Firefox I can click on my account, for who is using, but once I click on myself it will not let me into look at HBOMax video offerings. Any help would be great.

Thanks, [email removed from public]

Otázku položil(a) turks1966 Pred 1 rokom

Posledná odpoveď od cor-el Pred 1 rokom

  • Archivované

Is it possible to edit the context menus when I right click on tabs? I'm tired of accidentally missing the "duplicate tab", clicking "pin tab", and having to said tab back into place.

You can see the context menu in the photo, I would want to hide the pin tabs button so I could stop clicking it on accident. Pinned aren't a feature I use nor find useful… (ďalšie informácie)

You can see the context menu in the photo, I would want to hide the pin tabs button so I could stop clicking it on accident. Pinned aren't a feature I use nor find useful anyway.

Otázku položil(a) TheWonderAlmighty Pred 1 rokom

Posledná odpoveď od cor-el Pred 1 rokom

  • Archivované

X-notifier email client alternative

I've been using X-notifier for a long time. It's toolbar button context menu shows you all your available individual email accounts for access. In the past, in the case… (ďalšie informácie)

I've been using X-notifier for a long time. It's toolbar button context menu shows you all your available individual email accounts for access.

In the past, in the case of Gmail, it would take you directly to whichever account selected, but now, regardless of the account you opt for, it takes you to you "default/main" account, and you must the go to the Google accounts menu to chose another account.

Is this a Google idiosyncrasy, or is there another Gmail manager that can do do what I'm looking for?

Otázku položil(a) noel_envode Pred 1 rokom

Posledná odpoveď od Dropa Pred 1 rokom

  • Archivované

Your email sent by mistake

Re your (partial email & apology) sent to me by mistake: "Greetings, It has been said that astronomy is a humbling and character-building experience. You know what e… (ďalšie informácie)

Re your (partial email & apology) sent to me by mistake:

"Greetings, It has been said that astronomy is a humbling and character-building experience. You know what else was humbling? Sending out an email by mistake, full of out-of-context Sagan quotes being used as placeholder text (thank you, Sagan Ipsum)."

So I looked for the humor in it, but then remembered that since you "partner" with the cursed WEF, it's more likely an expression of a severe mental illness that characterizes all who "partner" with them, & thus only deranged types might find funny.

Otázku položil(a) firron Pred 1 rokom

Posledná odpoveď od jscher2000 - Support Volunteer Pred 1 rokom

  • Archivované

onedrive error 103

Entering onedrive , I can see all folders, except recycle bin. Entering recycle bin, I get error 103. Doing same steps to enter onedrive thru Edge, I get no error. The… (ďalšie informácie)

Entering onedrive , I can see all folders, except recycle bin.

Entering recycle bin, I get error 103.

Doing same steps to enter onedrive thru Edge, I get no error.

There must be an incompatibility of onedrive thru firefox.

I also cleaned registry with CCleaner, without any success.

Please inform me of how to proceed.

TNX Yorgos Athens, GREECE

Otázku položil(a) ypedis Pred 1 rokom

Posledná odpoveď od ypedis Pred 1 rokom

  • Archivované

Does Firefox/Mozilla honestly not care that their latest update is locking up and do not want to recieve any feedback about their issues from the people they want to purchess/donate money from

That the firefox auto-downloads cause browser/computer issues effecting usability until you install them is bad enough, but today's automatic download once installed has … (ďalšie informácie)

That the firefox auto-downloads cause browser/computer issues effecting usability until you install them is bad enough, but today's automatic download once installed has repeatedly locked up the browser and apparently there is no interest on mozilla's part to hear said feedback? Or is there actually some way to actually report a bug in a firefox update to firefox/mozilla?

Otázku položil(a) Wildcatter1963 Pred 1 rokom

Posledná odpoveď od jscher2000 - Support Volunteer Pred 1 rokom

  • Archivované

WebGL2.0 doesn't allow flipping frame with blitFramebuffer()

Hi. So in desktop OpenGL it is totally valid to write the following in order to flip the frame vertically into dst buffer: glBlitFramebuffer(0, h, w, 0, 0, 0, w, h, GL_… (ďalšie informácie)

Hi. So in desktop OpenGL it is totally valid to write the following in order to flip the frame vertically into dst buffer:

 glBlitFramebuffer(0, h, w, 0, 0, 0, w, h, GL_COLOR_BUFFER_BIT, GL_NEAREST));

In WebGL if I do this:

gl.blitFramebuffer(0, h,w,0 , 0, 0, w, h, gl.COLOR_BUFFER_BIT, gl.NEAREST);

I am getting WebGL warning: blitFramebuffer: If the source is multisampled, then the source and dest regions must match exactly.

Similar error is reported in Chrome.

When I am looking into the related C++ code I can see this:

        if (dstX0 != srcX0 ||
           dstX1 != srcX1 ||
           dstY0 != srcY0 ||
           dstY1 != srcY1)
       {
           webgl->ErrorInvalidOperation("%s: If the source is multisampled, then the"
                                        " source and dest regions must match exactly.",
                                        funcName);
           return;
       }

I am not sure why this restriction has been imposed. GLES2/3 support this kind of dimensions setup with no errors. Can someone explain the reason behind this? And if it is a bug/missed functionality, where should it be reported?

Otázku položil(a) ivspcom Pred 1 rokom

Posledná odpoveď od TyDraniu Pred 1 rokom

  • Archivované

Feature request: clear indication of local results in "Firefox Suggest"

I appreciate the effort and work that has gone into Firefox Suggest, but I find that it obscures and hides the real source of the found URLs. I have no way to know if it'… (ďalšie informácie)

I appreciate the effort and work that has gone into Firefox Suggest, but I find that it obscures and hides the real source of the found URLs. I have no way to know if it's from my browser history or bookmarks or from, potentially, external sources.

The possibility that "Firefox Suggest" results might be from external sources (depending on what you have configured) makes it (to me) like an opaque black box in everyday use. And even if the source isn't external, the fact that there even exists a doubt is itself a problem.

So a constructive idea: it would be very comforting if at least local results would be clearly indicated in the results in the address bar. And preferably also a distinction of "history" and "bookmarks".

Thanks for considering it! :)

Otázku položil(a) greyguy Pred 1 rokom

Posledná odpoveď od greyguy Pred 1 rokom

  • Archivované

lost back up

i had to change my hard driver and installed the firefox on the new one, signed in with my firefox account but it starts as a new one !! all my passwords and data g… (ďalšie informácie)

i had to change my hard driver and installed the firefox on the new one, signed in with my firefox account but it starts as a new one !! all my passwords and data gona !! i got my old hard driver and didnt formated it, so i go all old data on windows partition.. which firefox was installed on it.. can i find my firefox data on old hard driver ? where i can find it ?

Otázku položil(a) the_burier2o1o Pred 1 rokom

Posledná odpoveď od Paul Pred 1 rokom

  • Archivované

Touchpad gestures very clunky

This can't be described over words, they work but only sometimes they're just...... not working as intended , not responding at times and just...... refer to this unliste… (ďalšie informácie)

This can't be described over words, they work but only sometimes they're just...... not working as intended , not responding at times and just...... refer to this unlisted YouTube video I uploaded, linked here

Otázku položil(a) abdelrahman.a.safwat Pred 1 rokom

Posledná odpoveď od abdelrahman.a.safwat Pred 1 rokom

  • Archivované

Add on getting deactivated

Is there a way to stop Firefox from deactivating all of my addons after updating. If not I goig to swtich to anther browesr, so I do have waste my time reactivating th… (ďalšie informácie)

Is there a way to stop Firefox from deactivating all of my addons after updating. If not I goig to swtich to anther browesr, so I do have waste my time reactivating them..

Otázku položil(a) Andrew Olinek Pred 1 rokom

Posledná odpoveď od Andrew Olinek Pred 1 rokom