diff --git a/config/config.ini b/config/config.ini index 7caf66a..afd9d78 100644 --- a/config/config.ini +++ b/config/config.ini @@ -297,12 +297,12 @@ batchMigrateDocuments = default luceneDirectory=${varDirectory}/indexes ; The url for the Java Lucene Server. This should match up the the Lucene Server configuration. -; Defaults to http://localhost:8875 +; Defaults to http://127.0.0.1:8875 javaLuceneURL = default [openoffice] ; The host on which open office is installed -; defaults to localhost +; defaults to 127.0.0.1 host = default ; The port on which open office is listening @@ -390,4 +390,4 @@ customerrormessages=on ;name or url of custom error page customerrorpagepath=customerrorpage.php ;Turn custom error handler on or off -customerrorhandler=on \ No newline at end of file +customerrorhandler=on diff --git a/config/dmsDefaults.php b/config/dmsDefaults.php index 11f71c4..ed5a47c 100644 --- a/config/dmsDefaults.php +++ b/config/dmsDefaults.php @@ -528,9 +528,9 @@ function catchFatalErrors($p_OnOff='On'){ $oKTConfig->setdefaultns('indexer', 'luceneDirectory', '${varDirectory}/indexes'); $oKTConfig->setdefaultns('indexer', 'extractorPath', '${indexingBasePath}/extractors'); $oKTConfig->setdefaultns('indexer', 'extractorHookPath', '${indexingBasePath}/extractorHooks'); - $oKTConfig->setdefaultns('indexer', 'javaLuceneURL', 'http://localhost:8875'); + $oKTConfig->setdefaultns('indexer', 'javaLuceneURL', 'http://127.0.0.1:8875'); - $oKTConfig->setdefaultns('openoffice', 'host', 'localhost'); + $oKTConfig->setdefaultns('openoffice', 'host', '127.0.0.1'); $oKTConfig->setdefaultns('openoffice', 'port', 8100); $oKTConfig->setdefaultns('webservice', 'uploadDirectory', '${varDirectory}/uploads');