amitshree
amitshree

Reputation: 2298

Solr Spell-checking and suggester configuration

I'm trying to integrate solr with Magento EE 1.14 on my local server.

What I did so far?

What issue I'm having?

When I enter : * : in solr admin panel and hit search, I'm getting 404 at localhost:8983/solr/select/?q=%3A*%3A&version=2.2&start=0&rows=10&indent=on

Problem accessing /solr/select/. Reason:

null

If I hit localhost:8983/solr/spell?q=abc%20ultrashar&spellcheck=true&spellcheck.collate=true&spellcheck.build=true , it gives Error 500.

Problem accessing /solr/spell. Reason:

    null

I want to configure search, spell-checking, auto-complete, facets for most of the product attributes(name, sku, price, qty, etc) through solrconfig.xml and schema.xml but I don't know exactly what all modification I have to do. Can someone suggest what all modification I've to do to work it with Magento?

Upvotes: 3

Views: 510

Answers (1)

Chris
Chris

Reputation: 1

I was having the same problems. I found this url to be helpful. You shouldnt have to change any Solr configurations. You need to modify the theme to include files to allow the site to control the output of the results. Basically you need to have recommendations.phtml and suggestions.phtml included in your theme.

https://www.quora.com/I-have-installed-Solr-with-Magento-EE-How-can-I-configure-auto-suggest-and-spell-check

Upvotes: 0

Related Questions