Hi everyone
I've used
this template by Chris Hammond, the director of training at DNNcorp, to develop a small custom module for our DNN 5.5.1 server.
The sourcecode is almost untouched, as I've only added a few lines of code into the Page_Load function of the View.ascx.cs. This proves a problem however when the module is getting indexed by the DNN Seach (or whatever process is causing this) as shown in the DNN log:
AssemblyVersion: 5.5.1
PortalID: -1
PortalName:
UserID: -1
UserName:
ActiveTabID: -1
ActiveTabName:
RawURL:
AbsoluteURL:
AbsoluteURLReferrer:
UserAgent:
DefaultDataProvider: DotNetNuke.Data.SqlDataProvider, DotNetNuke.SqlDataProvider
ExceptionGUID: a08e631b-1f3a-41a8-97e4-fe8727764186
InnerException: The method or operation is not implemented.
FileName:
FileLineNumber: 0
FileColumnNumber: 0
Method: DotNetNuke.Modules.***.Components.FeatureController.GetSearchItems
StackTrace:
Message: System.NotImplementedException: The method or operation is not implemented. at DotNetNuke.Modules.***.Components.FeatureController.GetSearchItems(ModuleInfo ModInfo) at DotNetNuke.Services.Search.ModuleIndexer.GetSearchIndexItems(Int32 PortalID)
Source:
Server Name: ***
Well it seems that my module is missing the implementation of the method GetSearchItems, but I really don't know how to implement that or how to tell DNN that it's not searchable. Can anyone help with that? :)