php - magento full text search not working on Live -


magento full text search not working

i following steps

full text search option enable 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 not able search fulltext word match.

you need change

$where .= ($where ? ' or ' : '') . $likecond; 

to

$where .= ($where ? ' , ' : '') . $likecond; 

Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -