Magento full text search not working
Follow the steps below
enable full-text search with system->configuration->catalogsearch
and
app/code/core/Mage/CatalogSearch/Model/resources/Fulltext.php
change
$likeCond = '(' . join(' OR ', $like) . ')';
to
$likeCond = '(' . join(' AND', $like) . ')';
but still I cannot search for the word fulltext exactly.
source share