i want to show results from access-restricted page to non-logged users also, possible with special class or text showing that if he registers he can get more content.
I found show.forbiddenRecords in typo3 property but its not working...
Im using typo3 4.7
Even setting: plugin.tx_indexedsearch.show.forbiddenRecords=1 config.typolinkLinkAccessRestrictedPages = uid-of-login-page
indexed search does not search for forbidden records.
I found if i set in function execFinalQuery on line 1119 from: $id_list[] = $this->cObj->getTreeList($rootId,9999,0,0,'','').$rootId;
to
$id_list[] = $this->cObj->getTreeList($rootId,9999,0,1,'','').$rootId;
that indexed search starts searching and showing forbidden records. I also posted this on bugs for typo3 hoping someone will check this as im no core user...
http://naprej.net