Remove 3 char search limit: Difference between revisions
Jump to navigation
Jump to search
Created page with "in LocalSettings.php $wgDBminWordLen = 3; In /etc/mysql/my.cnf under the [mysqld] section ft_min_word_len=3 Then in mysql -u root -p, use wikidb; and REPAIR TABLE searchi..." |
No edit summary |
||
Line 10: | Line 10: | ||
REPAIR TABLE searchindex QUICK; | REPAIR TABLE searchindex QUICK; | ||
[http://leefrancis.org/2008/03/05/getting-past-default-searching-limitations-in-mediawiki-and-mysql/ Source] |
Latest revision as of 13:02, 20 January 2012
in LocalSettings.php
$wgDBminWordLen = 3;
In /etc/mysql/my.cnf under the [mysqld] section
ft_min_word_len=3
Then in mysql -u root -p, use wikidb; and
REPAIR TABLE searchindex QUICK;