Prohledat stránky podpory

Vyhněte se podvodům. Za účelem poskytnutí podpory vás nikdy nežádáme, abyste zavolali nebo poslali SMS na nějaké telefonní číslo nebo abyste sdělili své osobní údaje. Jakékoliv podezřelé chování nám prosím nahlaste pomocí odkazu „Nahlásit zneužití“.

Learn More

Enable Cookies for all users

  • 2 odpovědi
  • 43 má tento problém
  • 5 zobrazení
  • Poslední odpověď od jasonrw

more options

Hello,

I have a series of computers that run mozilla firefox. For some reason, firefox's cookie handling is turned off by default for everyone that would use a computer. I can enable it on a per-user basis, but that is tedious. Not to mention it totally confounds end users as to why some web-sites do not work. Is there a way to enable cookies for all users of a computer without having to re-sysprep and copy over a new default profile to each of the computers? Something in about:config maybe?

Hello, I have a series of computers that run mozilla firefox. For some reason, firefox's cookie handling is turned off by default for everyone that would use a computer. I can enable it on a per-user basis, but that is tedious. Not to mention it totally confounds end users as to why some web-sites do not work. Is there a way to enable cookies for all users of a computer without having to re-sysprep and copy over a new default profile to each of the computers? Something in about:config maybe?

Zvolené řešení

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");

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

See:


Přečíst dotaz v kontextu 👍 2

Všechny odpovědi (2)

more options

Zvolené řešení

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");

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

See:


more options

That did it! Many many thanks!