Prikaz označenih pitanja: Prikaži sva pitanja
  • Arhivirano

Firefox Password Protected start

Hello Is it possible to enable a password protection when starting the Firefox app on Android ? In special when saved passwords are used they are entered automatic… (pročitajte više)

Hello

Is it possible to enable a password protection when starting the Firefox app on Android ? In special when saved passwords are used they are entered automatically and there is no additional protection of those when going on a website for which the password was saved. E.g. when somebody unlock your device the person is able to start Firefox and going through chronic or pages where you might enabled automatically password fill in. Can this be protected by pin or fingerprint?(like in the Firefox Password manager)

Thank you

Asked by oliver.buss prije 10 mjeseci

Last reply by oliver.buss prije 10 mjeseci

Unable to find autofill setting in Firefox for iOS (iPhone)

I can’t find the Auto-fill settings in FF on iOS. I found instructions here for where they should be and they are not there. Was this feature taken away recently. It’s VE… (pročitajte više)

I can’t find the Auto-fill settings in FF on iOS. I found instructions here for where they should be and they are not there. Was this feature taken away recently. It’s VERY tedious not having this feature. Am I doing something wrong?

Asked by Haru prije 2 mjeseci

Last reply by Haru prije 2 mjeseci

  • Riješeno
  • Arhivirano

Credit Card Autofill

Hello. I'm Android Developer at Nord Security @NordPass password manager. I just wanted to ask about credit card autofill on Firefox Android browser. As far as I understa… (pročitajte više)

Hello. I'm Android Developer at Nord Security @NordPass password manager. I just wanted to ask about credit card autofill on Firefox Android browser. As far as I understand, it's not possible at the moment. Do you have any plans on making it possible? Or maybe there are any settings that need to be set before autofilling? I'm not talking about internal Firefox password manager solution, but about autofilling Credit Cards using another password manager such as 1Password, LastPass, NordPass etc.

Thanks in advance :) Zilvinas

Asked by zilvinas.tomkevicius prije 1 godina

Answered by zilvinas.tomkevicius prije 1 godina

Lost my passwords after reinstall

Samsung Galaxy S9 plus. I mistakenly uninstalled Firefox, then reboored and reinstalled it. How do I recover my saved passwords? I tried going to the Data folder, but … (pročitajte više)

Samsung Galaxy S9 plus.

I mistakenly uninstalled Firefox, then reboored and reinstalled it. How do I recover my saved passwords?

I tried going to the Data folder, but there is only 1 folder there, "export messages", for an app that lets me print out or save existing text messages .

Help!!

Asked by whattodo prije 2 mjeseci

Last reply by TyDraniu prije 2 mjeseci

  • Arhivirano

bug in filling login fields

Hi, I was updated Firefox in my Android phone. Now, in websites with several saved logins (for example more than 6 account) when I tap on one of the accounts to fill user… (pročitajte više)

Hi, I was updated Firefox in my Android phone. Now, in websites with several saved logins (for example more than 6 account) when I tap on one of the accounts to fill username and password, it does not fill fields. In the previous versions I had not such problem.

Asked by 313ava prije 11 mjeseci

Last reply by Paul prije 8 mjeseci

  • Arhivirano

autofil for Android not working

Recently autofill has stoped working, i get suggested login, address, credit card and tap on it, yet it doesn't populate the fields, tried turning on and off sync and st… (pročitajte više)

Recently autofill has stoped working, i get suggested login, address, credit card and tap on it, yet it doesn't populate the fields, tried turning on and off sync and still doesn't work

Asked by Stedmister prije 10 mjeseci

Last reply by Paul prije 8 mjeseci

  • Arhivirano

Firefox forgets logins since iOS 16.

Can we un-archive this thread? The issue is not fixed. https://support.mozilla.org/en-US/questions/1395347 There were comments made on the Github, but so far, no updates… (pročitajte više)

Can we un-archive this thread? The issue is not fixed. https://support.mozilla.org/en-US/questions/1395347

There were comments made on the Github, but so far, no updates. https://github.com/mozilla-mobile/firefox-ios/issues/12740

Asked by Laurens prije 12 mjeseci

Last reply by Paul prije 12 mjeseci

  • Arhivirano

Fast Access to Password

I use the Firefox password manager build into the Web browser app on android. Sometimes the autofill doesn't work on some apps/webservices so I need to manually copy the… (pročitajte više)

I use the Firefox password manager build into the Web browser app on android.

Sometimes the autofill doesn't work on some apps/webservices so I need to manually copy the password across.

Since you stopped supporting lockwise, this is a massive pain, I need to click through many menus, and once I change screen the vault locks again meaning it's very cumbersome to copy a username and password.

Is there a shortcut to access the password vault directly? Is it possible to add a widget that launches straight into the vault in the browser?

Asked by Josh Warren prije 9 mjeseci

Last reply by Paul prije 8 mjeseci

No payment card option iOS

Hi, For some reason I don’t have the option to add payment cards on my browser using the latest version on iOS. Can someone explain or help me achieve this as it’s pret… (pročitajte više)

Hi,

For some reason I don’t have the option to add payment cards on my browser using the latest version on iOS.

Can someone explain or help me achieve this as it’s pretty annoying having to dig my card out or switch to safari.

Asked by jakehalloran29 prije 1 mjeseci

Last reply by Kiki prije 1 mjeseci

  • Arhivirano

Unlock Firefox for autofill to work

Hi, I have a Samsung Galaxy S10E phone. Firefox used to (with my permission) autofill all previously saved id/passwords in all apps. Now I receive a message stating 'unl… (pročitajte više)

Hi, I have a Samsung Galaxy S10E phone. Firefox used to (with my permission) autofill all previously saved id/passwords in all apps. Now I receive a message stating 'unlock Firefox'. My phone itself does not have an password and I don't want it to. Please advise, thank you.

Asked by kaweavermft prije 1 godina

Last reply by s_beecher prije 8 mjeseci

  • Arhivirano

Automatic email and password field filling stopped working

Firefox for Android 110.0.1 I have created a simple HTML login form (code pasted below). In the past it worked perfectly using Firefox on Android but now when I tap insi… (pročitajte više)

Firefox for Android 110.0.1

I have created a simple HTML login form (code pasted below). In the past it worked perfectly using Firefox on Android but now when I tap inside the email field the Suggested logins link appears above my keyboard as normal and, when I click on it, a list of suggested logins is presented as normal. If I tap on one of the suggested logins (A URL with ...... underneath representing the password) I am taken back to the login form but the suggested login has not populated the email and password fields which are still empty. So, I have to type or copy and paste the email and password into the fields in order to be able to login.

I have pasted the code below.

<meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title>

Login

<form method="post"> <label for="email-input">Email</label> <input type="email" id="email-input" name="email" required> <label for="password-input">Password</label> <input type="password" id="password-input" name="password" required> <input type="submit" id="submit-input" value="Login" name="submit"> </form>

Asked by greigsteve prije 1 godina

Last reply by Paul prije 8 mjeseci

  • Arhivirano

Unable to use password manager on most pages

Hello! Firefox for iOS is my main browser, but often when visiting web pages it doesn’t show the ‘passwords’ button on a username/e-mailaddress field when attempting to l… (pročitajte više)

Hello! Firefox for iOS is my main browser, but often when visiting web pages it doesn’t show the ‘passwords’ button on a username/e-mailaddress field when attempting to log-in. It does show the button when asking me to enter a password after entering the username/e-mailadress manually.

To solve this I tried different password managers (Enpass and now Bitwarden). It does show up on Safari. I have this issue for some time now and I do experience it on several iOS versions (16.1 to 16.6). Also I tried manually re-enabling the 3rd party password manager within the password settings on my device. Unfortunately I can’t share a screenshot of me seeing the password manager on the password screen as it hides the section when screenshotting..


Does anyone know how to solve this? It makes using a password manager a headache and would love to solve it!

Asked by Rick prije 9 mjeseci

Last reply by Rick prije 9 mjeseci

  • Arhivirano

Auto fill not working at all

I have Firefox synced with my mobile and my desktop. I have a number of logins and passwords saved. When I go to a site I get suggested logins, I click on the appropria… (pročitajte više)

I have Firefox synced with my mobile and my desktop. I have a number of logins and passwords saved. When I go to a site I get suggested logins, I click on the appropriate one, and up until recently, whether on my cell or desktop it filled in and I click and can login. It recently stopped working on my cell. I can bring up the webpage, I still get suggested logins and click the appropriate one but nothing gets filled in, no user name and no password. I have logged out and relogged in, resync'd and it still doesn't work. Any suggestions before I stop using Firefox and look for another browser that works on desktop and cell?

Asked by 57cjtm prije 1 godina

Last reply by Paul prije 8 mjeseci

Firefox Android/Lockwise - can't remove saved passwords

I'm trying to remove over 500 passwords saved in FF, I removed it on PC and it disappeared from all connected Win clients. But I can't remove it from Android - they are s… (pročitajte više)

I'm trying to remove over 500 passwords saved in FF, I removed it on PC and it disappeared from all connected Win clients. But I can't remove it from Android - they are still in FF & Lockwise. Tell me then, why sync works between Win clients but Android client ignores deletion of passwords?

Asked by Mariusz J prije 1 mjeseci

Last reply by Mariusz J prije 4 sedmica

  • Arhivirano

autofill in android not working

I have LGK51 and using google keyboard, also have tried Samsung keyboards. Auto fill is set for Firefox once I used the ' Master password' but had issues, deleted / t… (pročitajte više)

I have LGK51 and using google keyboard, also have tried Samsung keyboards. Auto fill is set for Firefox once I used the ' Master password' but had issues, deleted / turned off Mater password but ever since then autofill doesn't work or may work at random. I have already cleared cache/ uninstalled/ re-installed frefox / updated

cleared hidden cache  .... switched phones  - doesn't seem to matter what I try, it just doesnt fix

I am pretty tech savvy but I cant seem to get around it - help. Here's my specs : android version 12 Hardware version -Rev 1.0 Software : K500MM30f

Asked by D.Angel prije 12 mjeseci

Last reply by Paul prije 8 mjeseci

  • Arhivirano

Problem with entering user names/passwords [Newest Firefox Android Update]

Good evening, ever since the latest update (and the version before it) I've encountered a problem with pasting saved user names and passwords into the login brackets. … (pročitajte više)

Good evening,

ever since the latest update (and the version before it) I've encountered a problem with pasting saved user names and passwords into the login brackets.

Expected behaviour: A website is loaded; the website is a login page for which I have saved user data. For the login id and password bracket each Firefox suggests the information via dropdown menu. I choose the specific data set, after which the brackets are filled automatically by the app.

Encountered behaviour: I choose the specific data set, but the information is not filled into the brackets. The user data has to be entered manually for each bracket.

Thanks in advance for the help!

Kind regards, Il_Bolognese

Asked by Il_Bolognese prije 1 godina

Last reply by Il_Bolognese prije 1 godina

  • Arhivirano

Auto fill NEVER WORKS

Fix autofill. I am so tired of it being completely broken on mobile. The ONLY time it works is for CCs when using face biometrics. Literally everything else fails. … (pročitajte više)

Fix autofill. I am so tired of it being completely broken on mobile. The ONLY time it works is for CCs when using face biometrics. Literally everything else fails.

Asked by Sarkohma prije 1 godina

Last reply by Paul prije 8 mjeseci