Този сайт ще има ограничена функционалност, докато се извършва тече неговата поддръжка. Ако дадена статия не може реши проблема ви и искате да зададете въпрос, нашата общност е готова да ви помогне на @firefox в Twitter и /r/firefox в Reddit.

Търсене в помощните статии

Избягвайте измамите при поддръжката. Никога няма да ви помолим да се обадите или изпратите SMS на телефонен номер или да споделите лична информация. Моля, докладвайте подозрителна активност на "Докладване за злоупотреба".

Научете повече

How can I disable the Edit->Preferences->Network->Settings->Noproxy option

  • 2 отговора
  • 5 имат този проблем
  • 5 изгледи
  • Последен отговор от cor-el

more options

I want to disable the Edit->Preferences->Network->Settings->Noproxy option

Every user user should access internet only via proxy settings what i should do for that and also should not be allowed to change the option

I want to disable the Edit->Preferences->Network->Settings->Noproxy option Every user user should access internet only via proxy settings what i should do for that and also should not be allowed to change the option

Всички отговори (2)

more options

Firefox has a feature to lock some settings so they cannot be overridden. This involves creating a couple of different files in Firefox's program folder. If the settings you want to lock are visible in about:config, you might be able to do it this way.

more options

Note that on Linux, the default is to use the "Use the system proxy settings" setting for the connection.

You can look at these prefs to lock:


Use a mozilla.cfg file in the Firefox program folder to lock prefs or specify new (default) values.

Place a file local-settings.js in the defaults\pref folder where you also find the file channel-prefs.js to specify using mozilla.cfg.

pref("general.config.filename", "mozilla.cfg");

These functions can be used in the mozilla.cfg file:

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

Променено на от cor-el