Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

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.