aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/docs/sphinx.sample.conf
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #5792 from KYPREO/ticket/16269Marc Alexander2019-12-301-0/+1
|\ | | | | | | [ticket/16269] Strip HTML markup from Sphinx search index
| * [ticket/16269] Strip HTML markup from Sphinx search indexKYPREO2019-12-271-0/+1
| | | | | | | | PHPBB3-16269
* | [ticket/16258] Fix sample Sphinx configuration fileKYPREO2019-12-171-2/+2
|/ | | | PHPBB3-16258
* [ticket/13128] Remove deprecated Sphinx optionsZoddo2018-04-231-4/+0
| | | | | | | | | | | These configuration options are deprecated: * sql_query_info (since sphinx 2.2.2; used only by the "search" command which was removed; wiki need to be updated accordingly) * max_matches (since sphinx 2.2.3; should be set in the sphinx query) * charset_type (since sphinx 2.2.2; sphinx now supports only utf-8) * compat_sphinxql_magics (since sphinx 2.2.1) PHPBB3-13128
* [ticket/11938] use sql_attr_string instead of sql_attr_str2ordinalDhruv2014-03-091-1/+1
| | | | PHPBB3-11938
* Merge remote-tracking branch 'phpbb/develop' into ↵Joas Schilling2013-07-111-70/+39
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | feature/softdelete-1-permission * phpbb/develop: (704 commits) [ticket/11630] Improvements to the PHP lint pre-commit hook [feature/auth-refactor] Move auth providers to separate directory [ticket/11619] Use HTTP/1.0 because of lack of chunked-encoding handling. [ticket/11619] Some tests for get_remote_file(). [ticket/11617] Remove spaces and tabs from empty lines [ticket/11617] Missing U_ACTION in acp_captcha.php [feature/auth-refactor] Fix code style issue [feature/auth-refactor] Fix comment grammar [feature/auth-refactor] Fix the actual cause of test failures [ticket/10838] Fix URL for wiki and remove irrelevant line [ticket/10838] Remove php 5.4 and builtin server references [ticket/10838] Fix missing data [ticket/10838] separate database used mentioned in unit tests [ticket/11585] Make $auth_admin class property [feature/auth-refactor] A possible fix for the functional test failures [ticket/11566] Subsilver template error displayed after table headers [ticket/11566] Remove extra pair of brackets from conditional statement [ticket/11566] Check that guest doesn't have reporting permission by default [ticket/11566] Add captcha to report post template in subsilver [ticket/11566] Use the new constant CONFIRM_REPORT for captcha init ... Conflicts: phpBB/docs/sphinx.sample.conf phpBB/feed.php phpBB/styles/prosilver/template/search_results.html phpBB/styles/prosilver/template/viewforum_body.html
| * [ticket/11438] Add spaces after # comment start and before \ line breaksJoas Schilling2013-03-161-34/+34
| | | | | | | | PHPBB3-11438
| * [ticket/11438] Add empty sql_query_pre to delta-sourceJoas Schilling2013-03-151-0/+1
| | | | | | | | PHPBB3-11438
| * [ticket/11438] Move backslash to concatenate the query strings correctlyJoas Schilling2013-03-151-60/+30
| | | | | | | | | | | | Was broken in 03d2c6413c25b1faf7f37ff20625ce986b19eb88 PHPBB3-11438
| * [ticket/11438] Update sphinx.sample.conf to one provided by config_generate()Joas Schilling2013-03-151-1/+1
| | | | | | | | PHPBB3-11438
* | [ticket/9657] Check for post visibility when searching with SphinxJoas Schilling2013-03-141-0/+5
|/ | | | | | | | This update will require admins to manually update their Sphinx config file aswell as to delete the index and rebuild it from scratch. Before this is done the search will not be usable anymore. PHPBB3-9657
* [ticket/11248] Convert line endings to LF - develop edition.Oleg Pudeyev2012-12-071-30/+60
| | | | PHPBB3-11248
* [feature/sphinx-fulltext-search] improve port optionDhruv2012-07-221-3/+2
| | | | | | | Use listen instead of deprecated port value in sphinx config file. sqlhost uses default $dbhost. PHPBB3-10946
* [feature/sphinx-fulltext-search] makes sql host configurableDhruv2012-07-221-2/+2
| | | | | | | The SQL server host which sphinx connects to index the posts is now configurable via ACP. PHPBB3-10946
* [feature/sphinx-fulltext-search] use Update in sphinx queryDhruv2012-07-191-2/+2
| | | | | | | | Instead of REPLACE use UPDATE since pgsql does not support REPLACE. A row is inserted at time of creating table so REPLACE is no longer needed. PHPBB3-10946
* [feature/sphinx-fulltext-search] use CASE instead of IFDhruv2012-07-191-2/+2
| | | | | | | IF is not supported in pgsql, use CASE instead supported in both mysql and pgsql. PHPBB3-10946
* [feature/sphinx-fulltext-search] minor changes in sphinx.confDhruv2012-07-191-2/+2
| | | | PHPBB3-10946
* [feature/sphinx-fulltext-search] use new unique id instead of saltDhruv2012-07-191-8/+8
| | | | | | | a new unique id is generated by sphinx and stored in the config table instead of using avatar_salt. PHPBB3-10946
* [feature/sphinx-fulltext-search] add binlog_path to configDhruv Goel2012-07-121-0/+1
| | | | | | binlog files are now added to the data folder. PHPBB3-10946
* [feature/sphinx-fulltext-search] include sample sphinx.conf in docsDhruv Goel2012-07-121-0/+96
PHPBB3-10946