Solr Search for WordPress Plugin WordPress, Download, Install

Improve your user experience with the Apache Solr search engine for your WordPress website.

Solr Search for WordPress Download Now

Download Now

(If the link does not work)↓

Originals Link WordPress.org

https://wordpress.org/plugins/solr-power/

How to Install Solr Search for WordPress Plugin, Manually

The Solr Power plugin can be installed just like you’d install any other WordPress plugin. Because Solr Power is intended to be a bridge between WordPress and the Apache Solr search engine, you’ll need access to a functioning Solr instance for the plugin to work as expected.

If you’re using the Solr Power plugin on Pantheon, setting up Apache Solr is as easy as enabling the Apache Solr add-on in your Pantheon dashboard. Once you’ve done so:

  1. Index your existing content by going to the plugin options screen and selecting the applicable Actions:
      • Index Searchable Post Types
  2. Search on!
  3. See the examples/templates directories for more rich implementation guidelines.

If you’re using the Solr Power plugin elsewhere, you’ll need to install and configure Apache Solr. On a Linux environment, this involves three steps:

  1. Install the Java Runtime Environment.
  2. Run ./bin/install-solr.sh to install and run Apache Solr on port 8983.
  3. Configuring Solr Power to use this particular Solr instance by setting the PANTHEON_INDEX_HOST and PANTHEON_INDEX_PORT environment variables.

In a local development environment, you can point Solr Power to a custom Solr instance by creating a MU plugin with:

<?php
/**
* Define Solr host IP, port, scheme and path
* Update these as necessary if your configuration differs
*/
putenv( 'PANTHEON_INDEX_HOST=192.168.50.4' );
putenv( 'PANTHEON_INDEX_PORT=8983' );
add_filter( 'solr_scheme', function(){ return 'http'; });
define( 'SOLR_PATH', '/solr/wordpress/' );<pre><code></code></pre>

Plugin Not Working?

If any errors or problems with the plug-in then write comments.

Tags:
One Comment

Add a Comment

Your email address will not be published. Required fields are marked *