SSEP - BUT Cannot save its Page Data

Place for comments, problems, questions, or any issue related to the JavaScript / PHP scripts from this site.
rshweb
Posts: 11

SSEP - BUT Cannot save its Page Data

99.5% is good yep
Is there a way to be able to search for just 3 characters?
Such as

Code: Select all

cgi
ssl
ssh
Important words with my business

MarPlo Posts: 186
SSEP uses MySQL Full-Text Search.
This section of the manual might interest you : Fine-Tuning MySQL Full-Text Search
The minimum and maximum lengths of words to be indexed are defined by the ft_min_word_len and ft_max_word_len system variables.
The default minimum value is four characters;
The default maximum is version dependent.
If you change either value, you must rebuild your FULLTEXT indexes.


For example, if you want three-character words to be searchable, you can set the ft_min_word_len variable by putting the following lines in a mysql option file:

Code: Select all

[mysqld]
ft_min_word_len=3
Then you must restart the server and rebuild your FULLTEXT indexes.

- Run:

Code: Select all

show variables like 'ft_%';
to confirm that the word length matches what you set it to.

rshweb Posts: 11
nice, and nice script, you know what your doing
If you ever want to write a post, article or blog...
Maybe on "PHP Resources"?
Id be glad to add it to my "Blog" section with links back to you
Had fairly good results in getting most of my blog pages ranked with Google
Just a thought
Thanks again.Richard