More bug reports and non-working Relevanssi installations, hence a new bug fix release. Heavily recommended; I’m also terribly sorry of my flaky quality control.
Indexing with a cron job
…directory. If they’re not, adjust the path to wp-blog-header.php so that it points to the right place. Now to start indexing, have the cron job visit the relevanssi-start-indexing.php – this will start the indexing and will index 100 posts. Then have the cron job visit relevanssi-continue-indexing.php as many times as……this happen in practice, you need two files. First, create a file relevanssi-start-indexing.php with this content: <?php require ‘wp-blog-header.php’; relevanssi_build_index( false, false, 100 ); and then a file relevanssi-continue-indexing.php with this content: <?php require ‘wp-blog-header.php’; relevanssi_build_index( true, false, 100 ); This assumes the files are in your WP installation root……your posts and server. Removing automatic indexing If you index with a cron job, you may want to disable automatic indexing. You can do it by adding this to your site: remove_action( ‘wp_insert_post’, ‘relevanssi_insert_edit’, 99 ); remove_action( ‘wp_after_insert_post’, ‘relevanssi_insert_edit’, 99 ); // Relevanssi 4.17 / Premium 2.19 onwards. This was…