Author Topic: Search limited to more than 2 chars?  (Read 2719 times)

0 Members and 1 Guest are viewing this topic.

Offline MoshinInvader

  • Newbie
  • *
  • Posts: 14
    • View Profile
Search limited to more than 2 chars?
« on: July 08, 2010, 05:02:30 PM »
I am finding that search terms of less than 3 characters in length are not found. For example

NOT FOUND:
.../search.php?search_fields=image_keywords&search_keywords=30

FOUND:
.../search.php?search_fields=image_keywords&search_keywords=300


Is there a way to configure the search engine to accept search terms that are two characters in length?

Rembrandt

  • Guest
Re: Search limited to more than 2 chars?
« Reply #1 on: July 08, 2010, 05:28:14 PM »
Welcome to the Forum!

search in includes/constants.php:

All words <= MIN_SEARCH_KEYWORD_LENGTH and >= MAX_SEARCH_KEYWORD_LENGTH
// are not added to the search index
define('MIN_SEARCH_KEYWORD_LENGTH'3);
define('MAX_SEARCH_KEYWORD_LENGTH'25);


have you changed the, then you should still run this file  http://www.4homepages.de/forum/index.php?topic=1096.0

mfg Andi

Offline MoshinInvader

  • Newbie
  • *
  • Posts: 14
    • View Profile
Re: Search limited to more than 2 chars?
« Reply #2 on: July 08, 2010, 05:51:04 PM »
Hey Rembrandt,

THANKS!!! I must have looked at nearly every file EXCEPT that one... of course.

The edit and rebuild plugin worked flawlessly. Thanks again!