xref: /plugin/sphinxsearch-was/INSTALL (revision 23:9d137f8774e4)
1* Requirments
21. Sphinx Search with xmlpipe2 support
32. Sqlite
4
5* Install
61. unpack archive into lib/plugins direcotory of your wiki
72. change directory to lib/plugins/sphinxsearch
83. run first time Sphinx Search indexer from the root of sphinxsearch plugin directory
9   $indexer -c sphinx.conf dk_main
104. after indexer will complete indexsation, run first time searchd,
11by default searchd port is 3313, so be sure this port is free
12   $searchd -c sphinx.conf
135. Setup cronjob to periodically reindex your dokuwiki files.
14    1 10 * * * root /path/to/plugin/indexer.php
15
16
17* Troubleshooting
181. PHP Allocate memory problem
19You can solve this problem by incresing you php memory settings:
20   1) through php.ini
21        memory_limit = 1024M
22   2) through php script
23        ini_set('memory_limit', '1024M');
24   3) through .htaccess file
25        php_value memory_limit "1024M"
26
27
28