0

我想在 Typo3 4.6 中使用 indexed_search 但我有问题。我的页面有几棵主树,我只想在当前树中搜索。索引工作正常,在所有树中搜索也可以。但是,如果我将 rootPidList 设置为我想要搜索的树的根页面的 id,那么我没有得到任何结果。:( 有任何想法吗?

page.config.index_enable = 1
plugin.tx_indexedsearch.search {
    rootPidList = 1234
    page_links = 10
}

plugin.tx_indexedsearch {
    templateFile = typo3/sysext/indexed_search/pi/indexed_search.tmpl
    _DEFAULT_PI_VARS.results = 10
}
4

1 回答 1

1

我创建了一个适合我的解决方案。如果其他人有同样的问题,她是我的解决方案:

plugin.tx_indexedsearch {
    _DEFAULT_PI_VARS.sections=rl1_1234

  search {
      rootPidList = -1
  }

} 

我要搜索的树的第 1234 节的限制

于 2013-10-09T10:02:16.060 回答