搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

What happened to the Mozilla Start Page on the version 9.0.1?

  • 5 回覆
  • 2 有這個問題
  • 7 次檢視
  • 最近回覆由 cor-el

more options

On my browser the Mozilla Start Page doesn't work. The version is 9.0.1.

On my browser the Mozilla Start Page doesn't work. The version is 9.0.1.

所有回覆 (5)

more options

What do you mean by "Mozilla Firefox Start Page doesn't work ?? Can you elaborate ?

Check and tell if its working.

more options

If you are talking about the about:home page then reset the browser.startup.homepage_override.mstone pref via the right-click context menu to the default on the about:config page and close and restart Firefox to restore the about:home page to its default.

  • Open the about:config page via the location bar
  • Type in the Filter bar: mstone
  • Right-click the browser.startup.homepage_override.mstone line and select: Reset
  • Close and restart Firefox
more options

mha007,

Mozilla Start Page is the default homepage of Mozilla Firefox. I tried you solution but it doesn't work.

由 644962 於 修改

more options

Cor-el,

Thanks, for the solution but no luck. I guess I've got to wait for some upgrade or change.

more options

Are you using the about:home page as the home page?

Try to reset the search engine that is used on the page by running this code in the Scratchpad if the above didn't work.

  1. Open the about:home page in a tab
  2. Open the Scratchpad via Firefox/Tools > Web Developer > Scratchpad (Shift+F4)
  3. Paste the code in the Scratchpad window
  4. Use Execute > Run to run the code

localStorage["search-engine"]="{\"name\":\"Google\",\"searchUrl\":\"http://www.google.com/search?q=_searchTerms_&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a\"}";

You can verify that Google is the current search engine via this code in the Scratchpad window:

alert("localStorage[\"search-engine\"] = \n\""+JSON.stringify(localStorage["search-engine"]));