Mozilla Support में खोजें

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Are there any instructions for locking preferences in Firefox 8? I need to prevent users amending the proxy settings.

  • 2 प्रत्युत्तर
  • 2
  • 4 views
  • के द्वारा अंतिम प्रतियुतर stewmang

more options

Created byteshifted mozilla.cfg file called by local-settings.js with line: lock_Pref("network.proxy.type", 0);

Whilst I can launch firefox with no errors, the proxy settings are still available.

Also is it possible to set user preferences and lock them within the same mozilla.cfg file?

Created byteshifted mozilla.cfg file called by local-settings.js with line: lock_Pref("network.proxy.type", 0); Whilst I can launch firefox with no errors, the proxy settings are still available. Also is it possible to set user preferences and lock them within the same mozilla.cfg file?

चुने गए समाधान

The name of the function is lockPref().
Also make sure that the first line is a comment line(//)

//
lockPref("network.proxy.type", 0);

See:

You can use these functions in mozilla.cfg:

defaultPref();  // set new default value
pref();         // set pref, but allow changes in current session
lockPref();     // lock pref, disallow changes
संदर्भ में यह जवाब पढ़ें 👍 0

All Replies (2)

more options

चयनित समाधान

The name of the function is lockPref().
Also make sure that the first line is a comment line(//)

//
lockPref("network.proxy.type", 0);

See:

You can use these functions in mozilla.cfg:

defaultPref();  // set new default value
pref();         // set pref, but allow changes in current session
lockPref();     // lock pref, disallow changes
more options

As well as having an incorrect underscore in the function name I was also byteshifting the mozilla.cfg file. When I amended the function name and left the file in clear text the proxy settings were locked. It won't work with the byteshifted file. Thanks for your help.