为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

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

详细了解

a custom search plugin has disappeared

  • 4 个回答
  • 1 人有此问题
  • 1 次查看
  • 最后回复者为 25x8

more options

Hello! I have some search plugins created myself as xml files, for cases where "add to search bar" function cannot be used (no search field for example). One day, one of those plugins had just disappeared from search engines list. I've double checked syntax, tried to rename the file, restored defaults with "manage search engines" - nothing helps: FF just ignores this particular file on reboot. What could be a problem? Thanks! (printer section removed from config info, because of 30000 letters limit)

Hello! I have some search plugins created myself as xml files, for cases where "add to search bar" function cannot be used (no search field for example). One day, one of those plugins had just disappeared from search engines list. I've double checked syntax, tried to rename the file, restored defaults with "manage search engines" - nothing helps: FF just ignores this particular file on reboot. What could be a problem? Thanks! (printer section removed from config info, because of 30000 letters limit)

所有回复 (4)

more options

Try to delete search.sqlite and search.json in the Firefox Profile Folder.

more options

Hi cor-el, thanks for reply! Just tried. Unfortunately, that didn't solve the problem... Put original search.xxx files back to profile.

more options

bump? any idea?

more options

OK, it seems just fixed it! For this specific searchplugin, I had to move all the params into separate statements, I mean:

<os:Url type="text/html" method="GET" template="script.php?param1=value1&param2=whatever{searchTerms}">
into 

<os:Url type="text/html" method="GET" template="script.php">

 <os:Param name="param1" value="value1"/>
 <os:Param name="param2" value="whatever{searchTerms}"/>

</os:Url>

Then I removed search.json only and it works now. The weird thing is, all my other custom searchplugins remain untouched (in "old syntax") and still work. Looks like they change something in plugins-checking engine we will never know :-)