Showing questions tagged: Show all questions

How to Remove Profile names, tabs and menu item

Linux User So. I recently followed a Mozilla guide, previously posted, and something that I did, or changed, I now have a very annoying "profile" name in the title bar. F… (read more)

Linux User So. I recently followed a Mozilla guide, previously posted, and something that I did, or changed, I now have a very annoying "profile" name in the title bar. Further to that, I now have an additional menu option called "Profiles", with --"profile --Add Profile


Manage Profiles

I have never had or seen these items, except when I've moved my profile from an old computer to a new computer, using the console of "firefox -P" command.

It is becoming very annoying as I only have one profile, and I don't want an more.

Question. How to I block the display of 'profile information' ? Thanks

Asked by Charlie Daves 4 ساعت قبل

Last reply by AliceWyman 1 ساعت قبل

How do I get passwords from autofilling for websites?

I went into settings and searched passwords. then clicked onto saved passwords and tried removing what I thought was the password for a site. However when I log into the … (read more)

I went into settings and searched passwords. then clicked onto saved passwords and tried removing what I thought was the password for a site. However when I log into the site the password continues to autofill. I'm wondering if I'm not getting to the right spot to deal with autofilling passwords?

Asked by Christopher Patrick Boatright 4 ساعت قبل

Last reply by thomaskarker460 3 ساعت قبل

Setting "translate" destination language.

Every time I use translate I need to select the destination language. Am I missing something because this is really annoying. It's quicker to screenshot and use a third … (read more)

Every time I use translate I need to select the destination language. Am I missing something because this is really annoying. It's quicker to screenshot and use a third party translator which is frankly mad.

Asked by jamie-pridmore 9 ساعت قبل

Last reply by Agent virtuel 8 ساعت قبل

The last browser update has wiped off any changes I made to bookmarks and passwords from the past year. How can I go back to a previous version and recover my details? This browser version is terrible.

The last automatic browser update (147.0.3 (aarch64)) has wiped off all changes I made to bookmarks and passwords from the past year. How can I go back to a previous ve… (read more)

The last automatic browser update (147.0.3 (aarch64)) has wiped off all changes I made to bookmarks and passwords from the past year.

How can I go back to a previous version and recover my details?

This browser version is terrible and looks exactly like Microsoft Edge which is not intuitive at all. I don't want to set up multiple personas, Its just me and the one computer?

Please help me. Kerri

Asked by kerri2 23 ساعت قبل

Last reply by TechHorse 14 ساعت قبل

AI controls not available - I want to disable all AI

[article] This article claims there is an "AI Controls" section in Settings. This is not found in v 147.03 (up to date) for Mac. Please let me know how to disable all AI … (read more)

[article] This article claims there is an "AI Controls" section in Settings. This is not found in v 147.03 (up to date) for Mac. Please let me know how to disable all AI in Firefox.

Asked by catling42 1 روز قبل

Last reply by James 18 ساعت قبل

confirm file storing site data is physically deleted

good morning, I am having problems using a third-party website, playing chess, and one of the functions on their website is not available to me because I keep getting an… (read more)

good morning,

I am having problems using a third-party website, playing chess, and one of the functions on their website is not available to me because I keep getting an error message. they have a forum on which I am discussing this issue with one of their Mod's, and he seems to be under the impression it has something to do with my Browser (Firefox 115.32.0esr) storing site data, and that the file in which this is stored has become corrupted in some way. I have no idea how he arrived at this conclusion but that is what he said.

I assured him that, "in Firefox, under <Privacy and Security>, in <Cookies and Site Data>, there is an option marked: "Delete cookies and site data when Firefox is closed." this has a tick box next to it and on my computer this has been selected for about the last five or six years. the browser does not retain site data or cookies and deletes them each time it closes. when I follow the instructions you linked to, and click <Manage Data>, there is no data to manage. it does not exist."

however, he replied to this that: "I don’t think that setting deletes Local Storage, though I’m not 100% certain."

one observation I make is that when I open the <Cookies and Site Data> <Manage Data> dialogue, the websites I have visited in the current session are listed. this data therefore does exist, and there must therefore be a file, even if only temporarily, containing this data. my question is about what exactly happens to this file when I close the session.

1) is the file emptied of data, but still exists as a file.

or

2) is the file physically deleted so that it no longer exists.

if, after the session, I reopen the browser and select the <Clear Data> dialogue and click <Clear> does this simply empty the file or does it physically delete the file. if the file still exists, is there any way to ensure that it is physically deleted in order to confirm that it is not corrupted in some way?

thank you.

Asked by martin264 18 ساعت قبل

Last reply by Denys 18 ساعت قبل

apple tv won't play

When I log in to my Apple tv account on the Firefox browser, it comes up, but won't play the selected program. All other streaming services I subscribe to work fine on Fi… (read more)

When I log in to my Apple tv account on the Firefox browser, it comes up, but won't play the selected program. All other streaming services I subscribe to work fine on Firefox, as did Apple tv until this week. If I try running Apple tv on Google chrome on the same lap top, it works fine too. Ditto on my iPhone using Safari. I'd prefer staying on Firefox to stream Apple tv, but can't make it work at the present time. Can you help?

Asked by grkdws6c9x 20 ساعت قبل

Last reply by Denys 18 ساعت قبل

Firefox multipart/form‑data upload stalls (0 bytes sent) to Next.js pages/api endpoint — works in Edge/Chromium

Summary: Uploading a file to a custom webapp with Chromium (Edge) works but consistently fails in Firefox. In Firefox the request is created, and times out. The server re… (read more)

Summary: Uploading a file to a custom webapp with Chromium (Edge) works but consistently fails in Firefox. In Firefox the request is created, and times out. The server receives no file and logs “missing file.” The same webapp code is running on both Chromium and Firefox.

Environment:

  • Next.js app (pages/api route)
  • Endpoint: POST /api/file-upload
  • Client: fetch(url, { method: "POST", body: FormData, credentials: "include" })
  • Server: export const config = { api: { bodyParser: false } } + multipart parsing (formidable)
  • Edge/Chromium: Version 141.0.3537.85
  • Firefox Version 147.0.3 (64-bit)
  • OS: Ubuntu 22 / Linux

Steps to reproduce:

  1. Create a FormData object and append a local file:
  const fd = new FormData();
  fd.append("template", file, file.name);
  fetch(`/api/file-upload`, {
    method: "POST",
    body: fd,
  1. In Edge/Chrome, upload succeeds. Server receives multipart body and parses the file. Actual behavior in Firefox:
  • Transferred: 0 B
  • No response status/body
  • Client times out (Upload times out)
  • File upload request received
  • No bytes read server‑side.

Evidence:

  • Edge request logs:
    • content-type: multipart/form-data; boundary=----WebKitFormBoundary...
    • bytesRead ~1.69MB
  • Firefox request logs:
    • Transferred 0 B
    • File upload missing file field

Notes:

  • Client FormData is valid; we log file.name and file.size right before fetch.
  • There is a CSP report‑only warning (frame‑ancestors) when using a fallback iframe approach, but we are not using iframe in the failing case.

Question: Is there a known issue where Firefox blocks or fails to send and multipart/body can be stripped before it leaves the browser? Is there a recommended workaround that does not rely on browser sniffing?

Moderator note: This question has been edited to correct the formatting.

Asked by Jeff R 22 ساعت قبل

Last reply by Denys 18 ساعت قبل

баг браузер не реагирует на ввод текста

После включения ПК бывает, что я не могу ввести текст в браузере.(как буд-то включается режим только для чтения, что не позволяет текст ввести). горячие клавиши работают,… (read more)

После включения ПК бывает, что я не могу ввести текст в браузере.(как буд-то включается режим только для чтения, что не позволяет текст ввести). горячие клавиши работают, но текст не вводиться только в браузере. Оно само по себе проходит. Как это исправить?

Asked by Vladoodle 21 ساعت قبل

Last reply by Denys 18 ساعت قبل