I have found the solution for number 2 in prev post. (Numbers not get searched.)
It is a Joomla thing. The search component is restricting seaches to words only to be 3 letter words. I had to make changes to allow the search component to process searching for words with one letter.
Solution:
Copy file /language/en-GB/en-GB.localise.php to /language/overrides/
Make changes to the copied file from
public static function getLowerLimitSearchWord()
{
return 3;
}
to
public static function getLowerLimitSearchWord()
{
return 1;
}
Then do the same thing with file /administrator/language/en-GB.localise.php (copy and make changes)
There you have it.
My main problem stated in the subject of this thread is however no solved. (No 1 in prev post)
/Mathias