Spletno mesto bo delovalo z omejenimi zmožnostmi, medtem ko na njem izvajamo vzdrževalna dela za vas. Če članki ne rešijo vaše težave in želite zastaviti vprašanje, naša skupnost za podporo čaka na vas na @FirefoxSupport na Twitterju in na /r/firefox na Redditu.

Iskanje po podpori

Izogibajte se prevarantski tehnični podpori. Nikoli vam ne bomo naročili, da pokličete telefonsko številko ali nam pošljete osebne podatke. Sumljivo dejavnost prijavite z gumbom »Prijavi zlorabo«.

Več o tem

How do I disable html form login credentials from caching/saving?

  • 3 odgovori
  • 1 ima to težavo
  • 6 ogledov
  • Zadnji odgovor od cor-el

more options

I have included multiple modifications to the user.js file (SLES11, firefox-3.6.16-0.2.1) to acheive most of my requirements, but I cannot find the about:config setting that prevents usernames (and passwords depending on the setting chosen) from saving.

I have been using about:config to confirm the setting in pref.js then I change the setting back to the default in about:config, and add the appropriate config line to user.js rather than have it set in pref.js

The information I found online directs me to Edit --> Preferences, but this configuration needs to be written for use in a base image to be distributed.

I have included multiple modifications to the user.js file (SLES11, firefox-3.6.16-0.2.1) to acheive most of my requirements, but I cannot find the about:config setting that prevents usernames (and passwords depending on the setting chosen) from saving. I have been using about:config to confirm the setting in pref.js then I change the setting back to the default in about:config, and add the appropriate config line to user.js rather than have it set in pref.js The information I found online directs me to Edit --> Preferences, but this configuration needs to be written for use in a base image to be distributed.

Izbrana rešitev

user_pref("signon.rememberSignons", false);

Preberite ta odgovor v kontekstu 👍 0

Vsi odgovori (3)

more options

Izbrana rešitev

user_pref("signon.rememberSignons", false);

more options

Thanks, it looks like I need that and a couple more.

This solved my issue:

pref("signon.rememberSignons",false);

pref("signon.prefillForms",false);

pref("signon.autofillForms",false);

Spremenil slesadmin99

more options

You're welcome.

The pref signon.prefillForms was used in Firefox 2.
Firefox 3+ uses signon.autofillForms

Firefox 4+ also has security.password_lifetime for the master password.