搜索 | 用户支持

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

详细了解

How can I remove users ability to clear history?

  • 4 个回答
  • 8 人有此问题
  • 1 次查看
  • 最后回复者为 cor-el

more options

I need to know how to lock preferences for history settings. I do not want users' to be able to change the history settings and I have already tried the local-settings.js and mozill.cfg method. But the settings do not grey out in the options menu once I set them and that is what I want. I know my file is being read because i have other settings that are italicized in the about:config that I locked. Am I using the wrong settings to do this possibly? Or is there a different method that I need to use. I have already followed everything to the 't' on this page: http://kb.mozillazine.org/Locking_preferences

Here is my mozilla.cfg test file I created:

//

lockPref("app.update.auto", false); lockPref("app.update.enabled", false); lockPref("app.update.service.enabled", false); lockPref("toolkit.telemetry.prompted", true); lockPref("browser.rights.override", true); lockPref("browser.startup.homepage_override.mstone", "ignore"); lockPref("browser.shell.checkDefaultBrowser", false); lockPref("privacy.item.downloads", false); lockPref("privacy.item.cache", false); lockPref("privacy.item.formdata", false); lockPref("privacy.item.history", false); lockPref("privacy.item.offlineApps", false); lockPref("privacy.item.passwords", false); lockPref("privacy.item.sessions", false); lockPref("privacy.item.siteprefs", false); lockPref("privacy.item.cookies", true); lockPref("browser.preferences.privacy.selectedTabIndex", 1); lockPref("browser.preferences.privacy.selectedTabIndex", 2); lockPref("browser.preferences.privacy.selectedTabIndex", 3); lockPref("browser.preferences.privacy.selectedTabIndex", 4); lockPref("browser.preferences.privacy.selectedTabIndex", 5);

I need to know how to lock preferences for history settings. I do not want users' to be able to change the history settings and I have already tried the local-settings.js and mozill.cfg method. But the settings do not grey out in the options menu once I set them and that is what I want. I know my file is being read because i have other settings that are italicized in the about:config that I locked. Am I using the wrong settings to do this possibly? Or is there a different method that I need to use. I have already followed everything to the 't' on this page: http://kb.mozillazine.org/Locking_preferences Here is my mozilla.cfg test file I created: // lockPref("app.update.auto", false); lockPref("app.update.enabled", false); lockPref("app.update.service.enabled", false); lockPref("toolkit.telemetry.prompted", true); lockPref("browser.rights.override", true); lockPref("browser.startup.homepage_override.mstone", "ignore"); lockPref("browser.shell.checkDefaultBrowser", false); lockPref("privacy.item.downloads", false); lockPref("privacy.item.cache", false); lockPref("privacy.item.formdata", false); lockPref("privacy.item.history", false); lockPref("privacy.item.offlineApps", false); lockPref("privacy.item.passwords", false); lockPref("privacy.item.sessions", false); lockPref("privacy.item.siteprefs", false); lockPref("privacy.item.cookies", true); lockPref("browser.preferences.privacy.selectedTabIndex", 1); lockPref("browser.preferences.privacy.selectedTabIndex", 2); lockPref("browser.preferences.privacy.selectedTabIndex", 3); lockPref("browser.preferences.privacy.selectedTabIndex", 4); lockPref("browser.preferences.privacy.selectedTabIndex", 5);

被采纳的解决方案

Which settings are you trying to change in Option > Privacy and want to prevent others from changing?

You will only lock the settings in "Clear history when Firefox closes" and not the main settings.
You can have a look at the about:config page to see if there are prefs affected by toggling check-boxes.

I don't know what effect privacy.item.* prefs have.
The about:config page only shows one for privacy.item.cookies and the source code doesn't make it clear for me as well.

I'm not sure why you want to include items like sessions (Active Logins; basic authentication used by FTP servers) and the disk cache and offline application cache (offlineApps).
People should be able to clear some data in case of problems and clearing cache and the cookies should be one of them (we advise a lot of times to clear cache and cookies).
Clearing form and search data should also be possible unless you would disable saving both passwords and form/search data.

Note that only Tools > Options > Advanced has tabs, so browser.preferences.privacy.selectedTabIndex won't have any effect.
The browser.history_expire_days and browser.history_expire_days_min prefs are obsolete in current Firefox versions and only used in Firefox 3 versions.

定位到答案原位置 👍 0

所有回复 (4)

more options

You can't prevent users from deleting the history.

You can lock settings for "Clear Recent History" (privacy.cpd.*) and "Clear history when Firefox closes" (privacy.clearOnShutdown.*), but you can still clear history items in the sidebar or the History Manager (Library).

Note that toolkit.telemetry.prompted is no longer a Boolean pref, but an integer as you can see on the about:config page

  • lockPref("toolkit.telemetry.prompted",2);
  • lockPref("toolkit.telemetry.rejected",true);
more options

Is there a way to at least grey out the option to do so in the Privacy tab? Some security is better than none at all so if I can just get that done then I will be moving in a positive direction.

more options

I can see that my setting are locked now in the about:config window. However, when I open the Options-->Privacy tab I can still change those settings. I have updated the file to include the below settings.

Test file:

// 
lockPref("privacy.item.history", false);
lockPref("privacy.item.downloads", false);
lockPref("privacy.item.cache", true);
lockPref("privacy.item.formdata", true);
lockPref("privacy.item.offlineApps", true);
lockPref("privacy.item.passwords", true);
lockPref("privacy.item.sessions", false);
lockPref("browser.preferences.privacy.selectedTabIndex", 4);
lockPref("browser.history_expire_days", 90);
lockPref("browser.history_expire_days_min", 90);
lockPref("browser.history_expire_sites", 40000);
lockPref("places.history.enabled", true);
lockPref("browser.privatebrowsing.autostart", false);
lockPref("privacy.clearOnShutdown.history", false);
lockPref("privacy.clearOnShutdown.formdata", false);
lockPref("privacy.clearOnShutdown.passwords", false);
lockPref("privacy.clearOnShutdown.downloads", false);
lockPref("privacy.clearOnShutdown.cookies", false);
lockPref("privacy.clearOnShutdown.cache", false);
lockPref("privacy.clearOnShutdown.sessions", false);
lockPref("privacy.clearOnShutdown.offlineApps", false);
lockPref("privacy.clearOnShutdown.siteSettings", false);
lockPref("privacy.cpd.history", false);
lockPref("privacy.cpd.formdata", false);
lockPref("privacy.cpd.passwords", false);
lockPref("privacy.cpd.downloads", false);
lockPref("privacy.cpd.cookies", false);
lockPref("privacy.cpd.cache", false);
lockPref("privacy.cpd.sessions", false);
lockPref("privacy.cpd.offlineApps", false);
lockPref("privacy.cpd.siteSettings", false);

由cor-el于修改

more options

选择的解决方案

Which settings are you trying to change in Option > Privacy and want to prevent others from changing?

You will only lock the settings in "Clear history when Firefox closes" and not the main settings.
You can have a look at the about:config page to see if there are prefs affected by toggling check-boxes.

I don't know what effect privacy.item.* prefs have.
The about:config page only shows one for privacy.item.cookies and the source code doesn't make it clear for me as well.

I'm not sure why you want to include items like sessions (Active Logins; basic authentication used by FTP servers) and the disk cache and offline application cache (offlineApps).
People should be able to clear some data in case of problems and clearing cache and the cookies should be one of them (we advise a lot of times to clear cache and cookies).
Clearing form and search data should also be possible unless you would disable saving both passwords and form/search data.

Note that only Tools > Options > Advanced has tabs, so browser.preferences.privacy.selectedTabIndex won't have any effect.
The browser.history_expire_days and browser.history_expire_days_min prefs are obsolete in current Firefox versions and only used in Firefox 3 versions.