Ok ive installed lucene
got the version from this website - 0.33 - lucene-silverstripe-plugin-0.3.3.tar.gz
added this to config:
ZendSearchLuceneSearchable::enable();
Now i want to index the site:
clicked on the button: Rebuild Search Index (on the SiteConfig /admin openingspage)
opened firebug
and saw this error:
ERROR [Notice]: iconv() [<a href='function.iconv'>function.iconv</a>]: Detected an illegal character in input string IN POST /sapphire/main.php?url=/admin/RootForm& Line 62
on line 62 it says:
$this->_input = iconv($this->_encoding, 'ASCII//TRANSLIT', $this->_input);
also tried:
$this->_input = iconv('UTF-8', 'ISO-8859-1//TRANSLIT', $this->_input);
But the error keeps showing up, how do i index my site ?
Thx in advance!