i try to use the code from meneame japanese version, and it works for me.
http://www.rauru-block.org/mediawiki/index.php/Meneame
in libs/utils.php, function get_search_clause
Code:
$where = " AND MATCH (link_url, link_url_title, link_title, link_content, link_tags) AGAINST ('$words' $mode) ";
change this line to
Code:
$where = " AND (link_url like '%".$words."%'".
" OR link_url_title like '%".$words."%'".
" OR link_title like '%".$words."%'".
" OR link_content like '%".$words."%'".
" OR link_tags like '%".$words."%')";