Are you using the versoin from github or the download zip from the plugins site? This was solved a while ago and I haven't uploaded the new version to the plugins site. I Just recommend people to use the latest on github. @see here: https://github.com/mcuhq/SphinxSearchPlugin/issues/19
Yes, i've fixed it using the version on github.
But i have another problem, indexes are not updated
New posts and discussions wont show up.
No errors in log
this is my cron.reindex.delta.php:
<?php /*
* Add the following cron job to update the delta index every 2 hours
*/
// 0 */2 * * * /usr/bin/php /var/www/html/vanilla5/plugins/SphinxSearch/cron/cron.reindex.delta.php
define('PATH_TO_SPHINX_INDEXER', '/usr/bin/indexer');
define('PATH_TO_SPHINX_CONFIG', '/etc/sphinxsearch/sphinx.conf');
define('SPHINX_INDEX_NAME', 'vss_');
$Command = PATH_TO_SPHINX_INDEXER." --config ".PATH_TO_SPHINX_CONFIG." ".SPHINX_INDEX_NAME."delta --rotate >> /var/www/html/vanilla5/plugins/SphinxSearch/cron/sphinx_cron.log 2>&1";
exec($Command);
Comments
Full error:
Are you using the versoin from github or the download zip from the plugins site? This was solved a while ago and I haven't uploaded the new version to the plugins site. I Just recommend people to use the latest on github. @see here: https://github.com/mcuhq/SphinxSearchPlugin/issues/19
Yes, i've fixed it using the version on github.
But i have another problem, indexes are not updated
New posts and discussions wont show up.
No errors in log
this is my cron.reindex.delta.php:
Paths are correct in other files too
For those still following, it has been solved: https://github.com/mcuhq/SphinxSearchPlugin/issues/21