Jump to content

Searching does not work with more than one words?


Rommeo

Recommended Posts

My searching query does not work when I enter more than one word.

For example posting that exists in my db is "red car"

 

When I search "red" it gives me one result ( red car )

When I search "car" it gives me one result (red car )

When I search "red car" it gives me error ( could not find  )

 

My query is like this :

$select_query7="SELECT * FROM postings WHERE active = '1' AND topic LIKE '%" .$topic."%'  ORDER BY addeddate DESC LIMIT ".$page.",".$count;

 

How can I make it work with "red car" also with "red cars"

To lower the word length edit your my.ini or my.cnf file depending what os using.

 

So in the mysql:

ft_min_word_len = 3

 

 

then restart naturally.

 

Trying the double fields is quick solution, if wanted more advanced like exact phrases and exclude, look into doing searches in boolean mode, but would also need full text indexes.

 

http://dev.mysql.com/doc/refman/5.1/en/fulltext-boolean.html

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.