diff options
author | Dhruv <dhruv.goel92@gmail.com> | 2012-07-22 02:50:53 +0530 |
---|---|---|
committer | Dhruv <dhruv.goel92@gmail.com> | 2012-07-22 02:50:53 +0530 |
commit | 161e469b5a67b2911089ec0dfdb70bef355ed07e (patch) | |
tree | ca57f1199edc45212f770181275d29e54953af76 /phpBB/language/en | |
parent | 0e9eb9401a38fab3139a1df33fa7e0903ccfb18f (diff) | |
download | forums-161e469b5a67b2911089ec0dfdb70bef355ed07e.tar forums-161e469b5a67b2911089ec0dfdb70bef355ed07e.tar.gz forums-161e469b5a67b2911089ec0dfdb70bef355ed07e.tar.bz2 forums-161e469b5a67b2911089ec0dfdb70bef355ed07e.tar.xz forums-161e469b5a67b2911089ec0dfdb70bef355ed07e.zip |
[feature/sphinx-fulltext-search] makes sql host configurable
The SQL server host which sphinx connects to index the posts is now
configurable via ACP.
PHPBB3-10946
Diffstat (limited to 'phpBB/language/en')
-rw-r--r-- | phpBB/language/en/acp/search.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/language/en/acp/search.php b/phpBB/language/en/acp/search.php index 37c403f43d..99fbbac07e 100644 --- a/phpBB/language/en/acp/search.php +++ b/phpBB/language/en/acp/search.php @@ -75,6 +75,8 @@ $lang = array_merge($lang, array( 'FULLTEXT_SPHINX_DATA_PATH' => 'Path to data directory', 'FULLTEXT_SPHINX_DATA_PATH_EXPLAIN' => 'It will be used to store the indexes and log files. You should create this directory outside the web accessable directories.', 'FULLTEXT_SPHINX_DELTA_POSTS' => 'Number of posts in frequently updated delta index', + 'FULLTEXT_SPHINX_HOST' => 'SQL server host', + 'FULLTEXT_SPHINX_HOST_EXPLAIN' => 'SQL server host, which the sphinx search daemon (searchd) connects to. Leave empty to use the default SQL server host', 'FULLTEXT_SPHINX_INDEXER_MEM_LIMIT' => 'Indexer memory limit', 'FULLTEXT_SPHINX_INDEXER_MEM_LIMIT_EXPLAIN' => 'This number should at all times be lower than the RAM available on your machine. If you experience periodic performance problems this might be due to the indexer consuming too many resources. It might help to lower the amount of memory available to the indexer.', 'FULLTEXT_SPHINX_MAIN_POSTS' => 'Number of posts in main index', |