Kukhonjiswa imibuzo ethegiwe: Veza yonke imibuzo
  • Okugcinwe kunqolobane

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 … (funda kabanzi)

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?

Asked by davidsonbx 1 unyaka odlule

Last reply by jscher2000 - Support Volunteer 1 unyaka odlule

  • Okugcinwe kunqolobane

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… (funda kabanzi)

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

Asked by kevin1a 1 unyaka odlule

Last reply by cor-el 1 unyaka odlule

  • Okugcinwe kunqolobane

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… (funda kabanzi)

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]

Asked by turks1966 1 unyaka odlule

Last reply by cor-el 1 unyaka odlule

  • Okugcinwe kunqolobane

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… (funda kabanzi)

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.

Asked by TheWonderAlmighty 1 unyaka odlule

Last reply by cor-el 1 unyaka odlule

  • Okugcinwe kunqolobane

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… (funda kabanzi)

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?

Asked by noel_envode 1 unyaka odlule

Last reply by Dropa 1 unyaka odlule

  • Okugcinwe kunqolobane

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… (funda kabanzi)

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.

Asked by firron 1 unyaka odlule

Last reply by jscher2000 - Support Volunteer 1 unyaka odlule

  • Okugcinwe kunqolobane

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… (funda kabanzi)

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

Asked by ypedis 1 unyaka odlule

Last reply by ypedis 1 unyaka odlule

  • Okugcinwe kunqolobane

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 … (funda kabanzi)

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?

Asked by Wildcatter1963 1 unyaka odlule

Last reply by jscher2000 - Support Volunteer 1 unyaka odlule

  • Okugcinwe kunqolobane

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_… (funda kabanzi)

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?

Asked by ivspcom 1 unyaka odlule

Last reply by TyDraniu 1 unyaka odlule

  • Okugcinwe kunqolobane

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'… (funda kabanzi)

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

Asked by greyguy 1 unyaka odlule

Last reply by greyguy 1 unyaka odlule

  • Okugcinwe kunqolobane

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… (funda kabanzi)

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 ?

Asked by the_burier2o1o 1 unyaka odlule

Last reply by Paul 1 unyaka odlule

  • Okugcinwe kunqolobane

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… (funda kabanzi)

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

Asked by abdelrahman.a.safwat 1 unyaka odlule

Last reply by abdelrahman.a.safwat 1 unyaka odlule

  • Okugcinwe kunqolobane

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… (funda kabanzi)

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

Asked by Andrew Olinek 1 unyaka odlule

Last reply by Andrew Olinek 1 unyaka odlule