Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Hierdie gesprek is in die argief. Vra asseblief 'n nuwe vraag as jy hulp nodig het.

User can't change homepage when I set a default one in mozilla.cfg

  • 2 antwoorde
  • 3 hierdie probleem
  • 6 views
  • Laaste antwoord deur ohmer

more options

I have this in mozilla.cfg: pref("browser.startup.homepage", "http://internal.intranet.tld");

This make our intranet as the default home page. But it's not locked (I'm not using lockPref()), so I want to allow an user to change the homepage if he wants.

But, this is not working. Changing the homepage is not saved.

I have this in mozilla.cfg: pref("browser.startup.homepage", "http://internal.intranet.tld"); This make our intranet as the default home page. But it's not locked (I'm not using lockPref()), so I want to allow an user to change the homepage if he wants. But, this is not working. Changing the homepage is not saved.

Gekose oplossing

hi ohmer, you need to use defaultPref() for settings that users should be able to change and have full control over - pref() only allows to deviate from the default during the current session...

Lees dié antwoord in konteks 👍 1

All Replies (2)

more options

Gekose oplossing

hi ohmer, you need to use defaultPref() for settings that users should be able to change and have full control over - pref() only allows to deviate from the default during the current session...

more options

Thank for the answer. It also need a little twist to make it working. See https://mike.kaply.com/2012/08/29/setting-the-default-firefox-homepage-with-autoconfig/