Project

General

Profile

Actions

Bug #52277

closed

Epic #65814: Make Indexed search extbase plugin shine

indexed_search experimental mode returns no search results

Added by Jesper Mathiasen over 10 years ago. Updated over 6 years ago.

Status:
Closed
Priority:
Must have
Assignee:
-
Category:
Indexed Search
Target version:
Start date:
2013-09-25
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
6.1
PHP Version:
5.3
Tags:
Complexity:
Is Regression:
No
Sprint Focus:

Description

When using the experimental extbase version of indexed_search a bug appears on line 173 in class "MysqlFulltextIndexHook" in "/indexed_search/classes/hook/MysqlFulltextIndexHook".

171 } elseif ($this->pObj->wholeSiteIdList >= 0) {
172    // Collecting all pages IDs in which to search; filtering out ALL pages that are not accessible due to enableFields. Does NOT look for "no_search" field!
173    $siteIdNumbers = \TYPO3\CMS\Core\Utility\GeneralUtility::intExplode(',', $this->pObj->wholeSiteIdList);
174    $idList = array();
175    foreach ($siteIdNumbers as $rootId) {
176        $cObj = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectRenderer');
177        /** @var \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer $cObj */
178        $idList[] = $cObj->getTreeList($rootId, 9999, 0, 0, '', '') . $rootId;
179    }
180    $pageWhere = ' ISEC.page_id IN (' . implode(',', $idList) . ')';
181 }

$this->pObj->wholeSiteIdList on line 171 is null in this case as it is never defined in SearchController.php which is the controller used in experimental mode. This means that $idList in $pageWhere contains no page ids and no results are returned.

In addition It appears that several properties and/or methods called in MysqlFulltextIndexHook via $this->pObj are not set, however so far only the aforementioned leads to errors.

I checked Typo3 v 6.2 and it appears to be the same there.


Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Bug #51347: Indexed Search (experimental) prblemClosed2013-08-26

Actions
Actions #1

Updated by Mathias Schreiber about 9 years ago

  • Target version set to 7.5
Actions #2

Updated by Tymoteusz Motylewski about 9 years ago

  • Parent task set to #65814
Actions #3

Updated by Gerrit Code Review about 9 years ago

  • Status changed from New to Under Review

Patch set 7 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/38130

Actions #4

Updated by Gerrit Code Review about 9 years ago

Patch set 1 for branch TYPO3_6-2 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/38743

Actions #5

Updated by Gerrit Code Review about 9 years ago

Patch set 1 for branch TYPO3_6-2 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/38744

Actions #6

Updated by Tymoteusz Motylewski about 9 years ago

  • Status changed from Under Review to Resolved
  • % Done changed from 0 to 100
Actions #7

Updated by Riccardo De Contardi over 6 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF