Hi ruditrip ,
<blockquote>
i would like to increase the number of allowed search characters to 50 or 100 characters. can anyone please tell me how? thanks in advance..
</blockquote>
Please open file “components/com_jak2filter/models/itemlist.php”, go to line 806
[PHP]
if(strlen($jakeyword) >=3 && strlen($jakeyword) <= 20){
$jakeyword = ‘%’.$jakeyword.’%’;
$where[] = “(i.title LIKE “.$db->quote($jakeyword).” OR i.introtext LIKE “.$db->quote($jakeyword).” OR i.fulltext LIKE “.$db->quote($jakeyword).”)”;
} else {
JError::raise(E_WARNING, 100, JText::_(‘Search term must be a minimum of 3 characters and a maximum of 20 characters.’));
}
[/PHP]
You can change it here