Replies: 3 comments 3 replies
-
I downloaded the source code and attached a debugger to see what was happening "OnPublish" - and as I suspected (as per comments here - (https://github.com/skttl/umbraco-fulltextsearch8/blob/master/docs/developers-guide-v4.md#rendering)) the internal Rendering wasn't going to work on my site Anyway, seems I need to be using the HTTP rendering, and thus the original issue remains - where I cannot register the |
Beta Was this translation helpful? Give feedback.
-
I decided to use the 4.0 alpha version, and after some fiddling with the config to resolve a local SSL issue, was able to get the Homepage to fill in those new Index fields with content. Yay! Oddly, when I publish certain pages, no errors are reported, but neither are the new "FullText" index fields visible when I look at Settings > Examine Management > External Index >[search]> [open field list for a recently published node] If I check the database table I noticed this: code: Additionally, if I set breakpoints in the sourcecode, in |
Beta Was this translation helpful? Give feedback.
-
Hi @hfloyd That does indeed sound frustrating. The HTTP rendering is added in v4, so as you found out, you need the alpha right now to handle that. In settings, there is a dashboard for Full Text Search (in the tree on the left), that should report how many indexable nodes there is, and how many indexed nodes there is. Can you see what numbers that one produce? Also, try reindexing through that dashboard, just to test that it actually can index. |
Beta Was this translation helpful? Give feedback.
-
Hi @skttl ! I was thrilled to find your package, since it seems to operate very similarly to my own v7/v8 "FullTextSearch" package. I'm glad I won't have to undertake a .Net Core update of that codebase 🙂
I've been working through the setup on a v10 migration project, following the docs for the current stable version (v3.1.0) - https://github.com/skttl/umbraco-fulltextsearch8/blob/master/docs/developers-guide-v2.md
And though I'd prefer to use the internal rendering (since I know how problematic HTTP Rendering can be (since my own version relied upon that), I figured that I'd set up the service for HTTP, in case it's needed. However, when I attempt to add it to Startup.cs, I cannot find the classes referenced:
For the time being I've excluded that line. I rebuilt the solution, and as a test did a "Save & Publish" on the Homepage node. Checking the ExternalIndex, I see these fields:
But notice that the "FullTextContent" is empty. There are no related messages in the Log Viewer.
This is my config:
What am I missing here?
Beta Was this translation helpful? Give feedback.
All reactions