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"

Link to comment
Share on other sites

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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.