Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

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

  • 2 个回答
  • 2 人有此问题
  • 4 次查看
  • 最后回复者为 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

所有回复 (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.