Отображение вопросов с тегом: Показать все вопросы
  • Архивировано

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 … (читать ещё)

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?

Задан davidsonbx 1 год назад

Последний ответ от jscher2000 - Support Volunteer 1 год назад

  • Архивировано

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… (читать ещё)

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

Задан kevin1a 1 год назад

Последний ответ от cor-el 1 год назад

  • Архивировано
  • Архивировано

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… (читать ещё)

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]

Задан turks1966 1 год назад

Последний ответ от cor-el 1 год назад

  • Архивировано

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… (читать ещё)

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.

Задан TheWonderAlmighty 1 год назад

Последний ответ от cor-el 1 год назад

  • Архивировано

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… (читать ещё)

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?

Задан noel_envode 1 год назад

Последний ответ от Dropa 1 год назад

  • Архивировано

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… (читать ещё)

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.

Задан firron 1 год назад

Последний ответ от jscher2000 - Support Volunteer 1 год назад

  • Архивировано

I'm viaually impaired & yesterday changed my home page to MSN by accident & want to go back to firefox as I was used to.

I need someone to tell me exactly how or do it for me. I read directions & it didn't work.

Задан pearlyjbroussard 1 год назад

Последний ответ от jscher2000 - Support Volunteer 1 год назад

  • Архивировано

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… (читать ещё)

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

Задан ypedis 1 год назад

Последний ответ от ypedis 1 год назад

  • Архивировано

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 … (читать ещё)

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?

Задан Wildcatter1963 1 год назад

Последний ответ от jscher2000 - Support Volunteer 1 год назад

  • Архивировано

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_… (читать ещё)

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?

Задан ivspcom 1 год назад

Последний ответ от TyDraniu 1 год назад

  • Архивировано

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'… (читать ещё)

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! :)

Задан greyguy 1 год назад

Последний ответ от greyguy 1 год назад

  • Архивировано

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… (читать ещё)

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 ?

Задан the_burier2o1o 1 год назад

Последний ответ от Paul 1 год назад

  • Архивировано

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… (читать ещё)

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

Задан abdelrahman.a.safwat 1 год назад

Последний ответ от abdelrahman.a.safwat 1 год назад

  • Архивировано

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… (читать ещё)

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..

Задан Andrew Olinek 1 год назад

Последний ответ от Andrew Olinek 1 год назад