magento全文搜索不在Live上工作

pre*_*mar 6 php magento

Magento全文搜索无法正常工作

我做了以下步骤

全文搜索选项启用 system->configuration->catalogsearch

 app/code/core/Mage/CatalogSearch/Model/resources/Fulltext.php
Run Code Online (Sandbox Code Playgroud)

更改

 $likeCond = '(' . join(' OR ', $like) . ')';
Run Code Online (Sandbox Code Playgroud)

 $likeCond = '(' . join(' AND', $like) . ')';
Run Code Online (Sandbox Code Playgroud)

但我仍然无法搜索fulltext完全匹配的单词.

Emi*_*td. 2

你还需要改变

$where .= ($where ? ' OR ' : '') . $likeCond;
Run Code Online (Sandbox Code Playgroud)

$where .= ($where ? ' AND ' : '') . $likeCond;
Run Code Online (Sandbox Code Playgroud)