I am using FULLTEXT as index in a textfield in mysql. This so that I can do FULLTEXT searches later on.
The default value of a FULLTEXT nr of characters is 4. This is changed in this line inside the my.cnf or my.ini file:
[mysqld]
ft_min_word_len=4
According to my webhosting company (one.com) they don't KNOW the value, AND it's IMPOSSIBLE to change it. I have contacted them several times, but thats what they say.
So my Q is, does any webhoster allow to change this? and if so, how?
OR, should I consider changing the FULLTEXT to something else and work around it somehow?
Thanks
UPDATE:
Check this link: http://dev.mysql.com/doc/refman/5.1/en/fulltext-fine-tuning.html
If I have a search query, and the string contains 2 letters, You cant search a FULLTEXT index with ft_min_word_len=4, because it will ignore all strings with more characters than that value...
UPDATE2
I want to be able to search whole words in a mysql table field. When I use the 'LIKE' statement, if I have a field value of 'mercedes' and if I only write 'merc' it will give the 'mercedes' field as a result... I want to only match whole words.