Products not appearing in DNN Search #165
-
Currently my products are not appearing in the DNN search results so i would like to diagnose this. But i dont know where to go from here to diagnose why products dont appear. Can you give me a few hints on places to look, like database tables that should be populated, or is it done based on the sitemap? or Where is it done in code so i can start to look there? |
Beta Was this translation helpful? Give feedback.
Replies: 8 comments 3 replies
-
Did you find this? |
Beta Was this translation helpful? Give feedback.
-
it installed without error but It appears there is nothing in the installer zip in the source at that link |
Beta Was this translation helpful? Give feedback.
-
There is info on the scheduler set up which you probably already found here: https://doc.openstore-ecommerce.com/ The NBrightBuyDnnIdx project will need to have it's net framework updated but otherwise it should compile. Here is a screen shot of a functional plugin configuration. It's pretty cool once it's working for you and you won't likely need to look at it again. |
Beta Was this translation helpful? Give feedback.
-
You powered through it. Glad it's working for you. I have a few customizations going on in the Indexer to enable role based displays. If you have code that fixes or improves things then I'm sure everyone would love to see them. You might start with an issue so that others can give you some feedback. Dave's the long time maintainer so he will let you know if a particular issue is a good candidate for a pull request. He can also stop you from spending time if he knows it won't make it into the code base. |
Beta Was this translation helpful? Give feedback.
-
@matthew, Sorry for the late reply, for some reason Outlook insists in putting github email in my spam folder. Despite telling it not to. What code have you changed? |
Beta Was this translation helpful? Give feedback.
-
I will see if i can get some time to do a diff on a freshly downloaded source but im currently busy trying to get the OS_DisplaySearch module to work (or more acturatly, trying to learn how it works as im sure it does). |
Beta Was this translation helpful? Give feedback.
-
Most of the js that is dealing with the search is happening here: There is click and keyup enter event both of which are responsible for setting hidden input. If either of the handlers fire and generate the hidden input it will in turn trigger the jquery change handler on the .searchreturn div. That change handler essentially does a page reload but with the NavigationData in place which will get processed server side. Most of the interesting server side logic happens at about line 1817 here in the Get Filter Setup region: OpenStore/Components/Product/ProductFunctions.cs Line 1817 in 4f03e8f |
Beta Was this translation helpful? Give feedback.
-
The index module has been updated to run on v4. |
Beta Was this translation helpful? Give feedback.
The index module has been updated to run on v4.
https://github.com/openstore-ecommerce/OS_DnnIdx