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

I want some assistance with adding a site to proxy exception for all users on Firefox

  • 1 απάντηση
  • 3 έχουν αυτό το πρόβλημα
  • 3 προβολές
  • Τελευταία απάντηση από cor-el

more options

We have deployed firefox on a terminal server.. but are facing some proxy related issues while navigating to a site. We trust the site (internal site) and need to add the site to proxy exception list. I tried using network.proxy.no_proxies_on and adding the site it works fine only for my ID. can this be done for all users logging in to the server?

Firefox 27.0.2 Terminal Server 2003 x64

We have deployed firefox on a terminal server.. but are facing some proxy related issues while navigating to a site. We trust the site (internal site) and need to add the site to proxy exception list. I tried using network.proxy.no_proxies_on and adding the site it works fine only for my ID. can this be done for all users logging in to the server? Firefox 27.0.2 Terminal Server 2003 x64

Όλες οι απαντήσεις (1)

more options

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

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

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

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

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

Note that mozilla.cfg needs to start with a comment line (//) as this line will be skipped. You can use user_pref() lines as present in prefs.js after making the change on about:config and change the function name accordingly to avoid errors.

See: