xref: /plugin/sphinxsearch-was/INSTALL (revision 22:f29430e64e3f)
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
17You can solve this problem by incresing you php memory settings:
18   1) through php.ini
19        memory_limit = 1024M
20   2) through php script
21        ini_set('memory_limit', '1024M');
22   3) through .htaccess file
23        php_value memory_limit "1024M"
24
25
26