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!

Kërkoni te Asistenca

Shmangni karremëzime gjoja asistence. S’do t’ju kërkojmë kurrë të bëni një thirrje apo të dërgoni tekst te një numër telefoni, apo të na jepni të dhëna personale. Ju lutemi, raportoni veprimtari të dyshimtë duke përdorur mundësinë “Raportoni Abuzim”.

Learn More

Preconfigure Firefox 4

  • 6 përgjigje
  • 25 e kanë hasur këtë problem
  • 3 parje
  • Përgjigjja më e re nga palombo

more options

Hello,

until yet, we preconfigured FF in defaults/pref/firefox.js for our users.

Today I downloaded FireFox 4. But this version doesn't have the firefox.js any more. If I place my old file at the location where it was bevore and most of the options are recognized and working. But some are not.

I set/unset this options and watched the changes in prefs.js in my user profile. The name of the options/parameters are still the same. But they doesn't seem to be used from the firefox.js any more.

Examples are: pref("app.update.enabled", false); pref("browser.search.update", false); pref("privacy.clearOnShutdown.cookies", true);

What is the new way to preconfigure FireFox 4 for all users?

Hello, until yet, we preconfigured FF in defaults/pref/firefox.js for our users. Today I downloaded FireFox 4. But this version doesn't have the firefox.js any more. If I place my old file at the location where it was bevore and most of the options are recognized and working. But some are not. I set/unset this options and watched the changes in prefs.js in my user profile. The name of the options/parameters are still the same. But they doesn't seem to be used from the firefox.js any more. Examples are: pref("app.update.enabled", false); pref("browser.search.update", false); pref("privacy.clearOnShutdown.cookies", true); What is the new way to preconfigure FireFox 4 for all users?

Krejt Përgjigjet (6)

more options

See:


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

Ndryshuar nga cor-el

more options

But ... I would like just to inialize, not to lock. What way to do this ?

Thank for your help.

Ludovic.

more options

Finaly I just change "lockPref" by "pref" ! And it works fine.

more options

@Ludovic: Where did you do the change? In "about:config"? The options you can set there are profile based only.

What is needed is a ***simple*** way to (p)reconfigure a Firefox 4 installation as in:

  • Run Firefox-Installer
  • Copy settings-file somewhere
  • have your default settings as a base for all profiles created

???

Ndryshuar nga cherdeg

more options

BTW.:

A file "firefox.js" put into "%ProgramFiles%\Mozilla Firefox\defaults\pref" does NOT do this job. The entries made there are:

  • pref("network.proxy.share_proxy_settings", true); // use the same proxy settings for all protocols
  • pref("network.proxy.autoconfig_url"; "http://server/proxy.pac");
  • pref("network.proxy.type"; 2);

Ndryshuar nga cherdeg

more options

On Linux Firefox 4, go to main install on firefox/defaults and create a dir called preferences (there is one dir called pref, but ignore it). Create the file prefs.js inside this dir

cd firefox/defaults; mkdir preferences; cd preferences; vi prefs.js;

Add your preferences like:

pref("app.update.enabled", false);

Restart firefox

Ndryshuar nga palombo