Yup the Examine Index path is correct and the Document node gets created and published.
The weird thing is, the new Document nodes that I've created only gets index when I manually click on "Save and publish" eventhough the node has already been published with the umbraco.cms.businesslogic.web.Document
I had the same issue with members in Umbraco version 4.9.0.
The new member would not show up in the index after creating with Member.MakeNew() and saving it.
What I did to fix it was to load it again and call save:
Dim m1 As Member = Member.MakeNew(txtUsername.Text, mt, u)
m1.Email = txtEmail.Text
m1.Save()
'--Trigger save again to popluate examine index
Dim tempM As New Member(m1.Id)
tempM.Save()
Examine index doesn't gets rebuilds when I create new Document using umbraco.cms.businesslogic.web.Document
I am able to create a published document with the umbraco.cms.businesslogic.web.Document.
But the thing is, the new Content node created are not being indexed.
I've tried to use the below but it is still not working.
Any idea what needs to be done? Appreciate any help on this
Might seem a silly question but are the Examine Index paths correct? Also, do you see the new Document node when in the back office?
Yup the Examine Index path is correct and the Document node gets created and published.
The weird thing is, the new Document nodes that I've created only gets index when I manually click on "Save and publish" eventhough the node has already been published with the umbraco.cms.businesslogic.web.Document
I had the same issue with members in Umbraco version 4.9.0.
The new member would not show up in the index after creating with Member.MakeNew() and saving it.
What I did to fix it was to load it again and call save:
is working on a reply...