Have 3 problems and I think they are related.

First, when you make a search with only two words, there are no results. (there are thread titles with those two words exactly)

Second What's new was giving an internal error.

Third: When you go to to your profile and click on list all threads started by you, it shows nothing.

I have change the number of Search Index Minimum Word Length in Message searching options to a bigger number. Was 5, made it 6. Tried others but same result. Now I get good results for one word searches but still nothing for two word searches.

I fixed What's new by following this:
Code: 
It appears that a Bug in PHP5.3.6 is causing this:

http://bugs.php.net/bug.php?id=51425

 As a temporary fix, edit the /vb/search/criteria.php file and replace this part:

 if (method_exists($this->search_type, 'get_display_name'))
 {
 $hashstrings[] = 'type:' . $this->search_type->get_display_name();
 }
 else
 {
 $hashstrings[] = 'type:' . strval($this->search_type);
 }

 with:

 $hashstrings[] = 'type:' . strval($this->search_type);
I suspect that search not giving results for two word letters has something to do with that bug.

Vb version 4.1.3
php 5.3.6

Any suggestions?
soundlover Reviewed by soundlover on . vb Search not working correctly Have 3 problems and I think they are related. First, when you make a search with only two words, there are no results. (there are thread titles with those two words exactly) Second What's new was giving an internal error. Third: When you go to to your profile and click on list all threads started by you, it shows nothing. I have change the number of Search Index Minimum Word Length in Message searching options to a bigger number. Was 5, made it 6. Tried others but same result. Now Rating: 5