我还想向未登录的用户显示访问受限页面的结果,可能有特殊的类或文本显示,如果他注册,他可以获得更多内容。
我在typo3 属性中找到了show.forbiddenRecords,但它不起作用......
我使用typo3 4.7
你试过了config.typolinkLinkAccessRestrictedPages = <id of login page>
吗?
检查 Typoscript 参考。
甚至设置:plugin.tx_indexedsearch.show.forbiddenRecords=1 config.typolinkLinkAccessRestrictedPages = uid-of-login-page
索引搜索不搜索禁止记录。
我发现如果我在第 1119 行的函数 execFinalQuery 中设置: $id_list[] = $this->cObj->getTreeList($rootId,9999,0,0,'','').$rootId;
至
$id_list[] = $this->cObj->getTreeList($rootId,9999,0,1,'','').$rootId;
该索引搜索开始搜索并显示禁止记录。我还在typo3的错误上发布了这个,希望有人会检查这个,因为我不是核心用户......