xref: /plugin/sphinxsearch-was/INSTALL (revision 16:99cd2fd2d45d)
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
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
15* Troubleshooting
161. PHP Allocate memory problem
17This plugin used dokuwiki page parser which used too much memory,
18so you can solve this problem by incresing you php memory settings:
19   1) through php.ini
20        memory_limit = 1024M
21   2) through php script
22        ini_set('memory_limit', '1024M');
23   3) through .htaccess file
24        php_value memory_limit "1024M"
25
26
27