diff --git a/setup/wizard/lib/services/windowsLucene.php b/setup/wizard/lib/services/windowsLucene.php index a36c4e4..efdf603 100644 --- a/setup/wizard/lib/services/windowsLucene.php +++ b/setup/wizard/lib/services/windowsLucene.php @@ -493,6 +493,7 @@ class windowsLucene extends windowsService { $varDirectory = $conf['paths']['varDirectory']['path']; // on Windows the path needs to be escaped or the Java Lucene code cannot understand it $content .= "indexer.directory=" . str_replace('\\', '/', $varDirectory . DS . "indexes") . "\n"; + $content .= "indexer.analyzer=org.apache.lucene.analysis.standard.StandardAnalyzer\n"; fwrite($fp, $content); fclose($fp); chmod($fileLoc, 0644);