Hi everyone! I'm new to DotNetNuke so please be patient with me :) but here's my problem. I've been tasked to make changes to a live website that I assume uses
DotNetNuke modules since I opened the code in VS2005 and found the ff lines:
Imports DotNetNuke
Imports DotNetNuke.Services.Search
Imports DotNetNuke.Common.Utilities.XmlUtils
Namespace DotNetNuke.Modules.Reports
''' <summary>
''' The Controller class for Reports
''' </summary>
''' <remarks>
''' </remarks>
''' <history>
''' [anurse] 06/16/2006 Created
''' </history>
''' -----------------------------------------------------------------------------
Public Class ReportsController
Implements Entities.Modules.ISearchable
Implements Entities.Modules.IPortable
#Region " Public Constants "
Public Const SETTING_ReportTitle As String = "dnn_ReportTitle"
Public Const SETTING_ReportDescription As String = "dnn_ReportDescription"
Public Const SETTING_ReportQuery As String = "dnn_ReportQuery"
. . .
the code goes on but i just wanted to show you this part. I tried to build the code without making any changes and got a whole lot of errors
that seem to be related to the DotNetNuke libraries imported here. Sample errors:
Error 3 Type 'Entities.Modules.ISearchable' is not defined.
Error 4 Type 'Entities.Modules.IPortable' is not defined. ...and so on..
How do I get these libraries? I installed dotnetnuke but got a pre-built cusomizable site only.
What It seems to be looking for are DotNetnuke libraries and I cant find them anywhere. The site works on the server, but deployed on my local IIS I get the 'Entities.Modules...' errors . Do i need to install some kind of DotNetNuke libraries to make it work? if so, where can I get them and how do I install them?
Any help will be appreciated, thanks!