active questions tagged dnn - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T07:54:03Z http://stackoverflow.com/feeds/tag/dnn http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1819547/develop-a-family-tree-portal-with-several-functinality 0 Develop a Family Tree Portal with several functinality Harish Bhattbhatt 2009-11-30T12:31:17Z 2009-11-30T13:09:04Z <p>We need to develop a family tree portal which also supports functinality like</p> <ol> <li>Portal Framework (Sub portal)</li> <li>Dashboard</li> <li>Blogs, Forums, Events, Polls, Task</li> <li>Member subscription</li> <li>Advertisement</li> <li>Chat</li> <li>Broadcast</li> <li>Document Management</li> <li>Personalization</li> <li>Alerts &amp; Reminders</li> </ol> <p>And above all <strong>Family tree</strong></p> <p>It is also decided to build family tree from scratch and develop UI in Flex.</p> <p>I am planning to develop it in DNN as i feel other modules are freely available in DNN</p> <p>Questions</p> <p>1) Is all listed modules freely available in DNN ...if yes can you provide link? 2) Do i need to consider any other Opensource CMS like umbraco or any other suggestion 3) Very unlikely...But should i develop it from scratch</p> <p>Limitation : I will not be able to afford costly CMS </p> <p>Development Platform : ASP .Net 3.5 &amp; SQL Server 2008</p> <p>Please suggest</p> http://stackoverflow.com/questions/1750783/url-rewrite-in-dotnetnuke-remove-chunk-of-address-and-read-cookie 0 URL Rewrite in DotNetNuke remove chunk of address (and read cookie?) Pselus 2009-11-17T18:20:26Z 2009-11-20T19:41:28Z <p>I am working on a DotNetNuke application using the iFinity URL Master module. (that may be irrelevant, as a solution may be platform independent)</p> <p>What I have is a site with addresses based on language. so www.thesite.com/<strong>en</strong>/products/towels/redtowel is the english version and www.thesite.com/<strong>de</strong>/products/towels/redtowel is the german version.</p> <p>What I need to do is allow a user (who has already visited the site and set a cookie with their language) to be able to go to www.thesite.com/products/towels/redtowel and get to www.thesite.com/<strong>en</strong>/products/towels/redtowel if their cookie is set to english, and /<strong>de</strong>/products/towels/redtowel if it is set to german.</p> <p>How would I do this?</p> http://stackoverflow.com/questions/1622682/problems-building-a-dnn-module-using-linq-to-sql 0 Problems building a DNN module using Linq to SQL Ross 2009-10-26T01:04:57Z 2009-11-18T18:11:03Z <p>I am building a module using linq to SQL and I am running into some problems. I have been following Michal Washington's tutorial on adefwebserver.com. The problem is that VB does not recognize my Complaint Class when I try to create new Complaint object. Any idea why I am unable to Dim a Complaint object? Here is my code:</p> <p>View.ascx.vb(</p> <pre><code>Imports Complaint Protected Sub LinqDataSource1_Inserting(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.LinqDataSourceInsertEventArgs) Handles LinqDataSource1.Inserting Dim Complaint As **Complaint** = DirectCast(e.NewObject, Complaint) Complaint.UserID = Entities.Users.UserController.GetCurrentUserInfo().Username Complaint.ModuleId = ModuleId Complaint.System_Time_Date_Stamp = Format(DateTime.Now, "yyyy-MM-dd HH:mm:ss.fff") End Sub Protected Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView1.RowDataBound If (e.Row.RowType = DataControlRowType.DataRow) Then Dim Complaint As Complaint = (DirectCast((e.Row.DataItem), Complaint)) If (PortalSecurity.IsInRole("Administrators")) Then e.Row.Cells(0).Enabled = True Else e.Row.Cells(0).Text = " " End If End If End Sub </code></pre> <p>)</p> <p>Complaint.designer.vb(</p> <pre><code>Option Strict On Option Explicit On Imports System Imports System.Collections.Generic Imports System.ComponentModel Imports System.Data Imports System.Data.Linq Imports System.Data.Linq.Mapping Imports System.Linq Imports System.Linq.Expressions Imports System.Reflection Namespace Complaint &lt;System.Data.Linq.Mapping.DatabaseAttribute(Name:="NewDnn")&gt; _ Partial Public Class ComplaintDataContext Inherits System.Data.Linq.DataContext Private Shared mappingSource As System.Data.Linq.Mapping.MappingSource = New AttributeMappingSource #Region "Extensibility Method Definitions" Partial Private Sub OnCreated() End Sub Partial Private Sub InsertComplaint(instance As Complaint) End Sub Partial Private Sub UpdateComplaint(instance As Complaint) End Sub Partial Private Sub DeleteComplaint(instance As Complaint) End Sub #End Region Public Sub New() MyBase.New(Global.System.Configuration.ConfigurationManager.ConnectionStrings("SiteSqlServer").ConnectionString, mappingSource) OnCreated End Sub Public Sub New(ByVal connection As String) MyBase.New(connection, mappingSource) OnCreated End Sub Public Sub New(ByVal connection As System.Data.IDbConnection) MyBase.New(connection, mappingSource) OnCreated End Sub Public Sub New(ByVal connection As String, ByVal mappingSource As System.Data.Linq.Mapping.MappingSource) MyBase.New(connection, mappingSource) OnCreated End Sub Public Sub New(ByVal connection As System.Data.IDbConnection, ByVal mappingSource As System.Data.Linq.Mapping.MappingSource) MyBase.New(connection, mappingSource) OnCreated End Sub Public ReadOnly Property Complaints() As System.Data.Linq.Table(Of Complaint) Get Return Me.GetTable(Of Complaint) End Get End Property End Class &lt;Table(Name:="dbo.Complaint")&gt; _ Partial Public Class Complaint Implements System.ComponentModel.INotifyPropertyChanging, System.ComponentModel.INotifyPropertyChanged Private Shared emptyChangingEventArgs As PropertyChangingEventArgs = New PropertyChangingEventArgs(String.Empty) Private _ID As Integer Private _ModuleID As System.Nullable(Of Integer) Private _Member_UserName As String Private _Reporter_Preffered_Contact As String Private _Target_FName As String Private _Target_LName As String Private _Target_Street_Address As String Private _Target_City As String Private _Target_State As String Private _Target_Zip As String Private _Complaint_Details As String Private _Status As String Private _System_Time_Date_Stamp As System.Nullable(Of Date) #Region "Extensibility Method Definitions" Partial Private Sub OnLoaded() End Sub Partial Private Sub OnValidate(action As System.Data.Linq.ChangeAction) End Sub Partial Private Sub OnCreated() End Sub Partial Private Sub OnIDChanging(value As Integer) End Sub Partial Private Sub OnIDChanged() End Sub Partial Private Sub OnModuleIDChanging(value As System.Nullable(Of Integer)) End Sub Partial Private Sub OnModuleIDChanged() End Sub Partial Private Sub OnMember_UserNameChanging(value As String) End Sub Partial Private Sub OnMember_UserNameChanged() End Sub Partial Private Sub OnReporter_Preffered_ContactChanging(value As String) End Sub Partial Private Sub OnReporter_Preffered_ContactChanged() End Sub Partial Private Sub OnTarget_FNameChanging(value As String) End Sub Partial Private Sub OnTarget_FNameChanged() End Sub Partial Private Sub OnTarget_LNameChanging(value As String) End Sub Partial Private Sub OnTarget_LNameChanged() End Sub Partial Private Sub OnTarget_Street_AddressChanging(value As String) End Sub Partial Private Sub OnTarget_Street_AddressChanged() End Sub Partial Private Sub OnTarget_CityChanging(value As String) End Sub Partial Private Sub OnTarget_CityChanged() End Sub Partial Private Sub OnTarget_StateChanging(value As String) End Sub Partial Private Sub OnTarget_StateChanged() End Sub Partial Private Sub OnTarget_ZipChanging(value As String) End Sub Partial Private Sub OnTarget_ZipChanged() End Sub Partial Private Sub OnComplaint_DetailsChanging(value As String) End Sub Partial Private Sub OnComplaint_DetailsChanged() End Sub Partial Private Sub OnStatusChanging(value As String) End Sub Partial Private Sub OnStatusChanged() End Sub Partial Private Sub OnSystem_Time_Date_StampChanging(value As System.Nullable(Of Date)) End Sub Partial Private Sub OnSystem_Time_Date_StampChanged() End Sub #End Region Public Sub New() MyBase.New OnCreated End Sub &lt;Column(Storage:="_ID", AutoSync:=AutoSync.OnInsert, DbType:="Int NOT NULL IDENTITY", IsPrimaryKey:=true, IsDbGenerated:=true)&gt; _ Public Property ID() As Integer Get Return Me._ID End Get Set If ((Me._ID = value) _ = false) Then Me.OnIDChanging(value) Me.SendPropertyChanging Me._ID = value Me.SendPropertyChanged("ID") Me.OnIDChanged End If End Set End Property &lt;Column(Storage:="_ModuleID", DbType:="Int")&gt; _ Public Property ModuleID() As System.Nullable(Of Integer) Get Return Me._ModuleID End Get Set If (Me._ModuleID.Equals(value) = false) Then Me.OnModuleIDChanging(value) Me.SendPropertyChanging Me._ModuleID = value Me.SendPropertyChanged("ModuleID") Me.OnModuleIDChanged End If End Set End Property &lt;Column(Storage:="_Member_UserName", DbType:="NVarChar(50)")&gt; _ Public Property Member_UserName() As String Get Return Me._Member_UserName End Get Set If (String.Equals(Me._Member_UserName, value) = false) Then Me.OnMember_UserNameChanging(value) Me.SendPropertyChanging Me._Member_UserName = value Me.SendPropertyChanged("Member_UserName") Me.OnMember_UserNameChanged End If End Set End Property &lt;Column(Storage:="_Reporter_Preffered_Contact", DbType:="NVarChar(50)")&gt; _ Public Property Reporter_Preffered_Contact() As String Get Return Me._Reporter_Preffered_Contact End Get Set If (String.Equals(Me._Reporter_Preffered_Contact, value) = false) Then Me.OnReporter_Preffered_ContactChanging(value) Me.SendPropertyChanging Me._Reporter_Preffered_Contact = value Me.SendPropertyChanged("Reporter_Preffered_Contact") Me.OnReporter_Preffered_ContactChanged End If End Set End Property &lt;Column(Storage:="_Target_FName", DbType:="NVarChar(50)")&gt; _ Public Property Target_FName() As String Get Return Me._Target_FName End Get Set If (String.Equals(Me._Target_FName, value) = false) Then Me.OnTarget_FNameChanging(value) Me.SendPropertyChanging Me._Target_FName = value Me.SendPropertyChanged("Target_FName") Me.OnTarget_FNameChanged End If End Set End Property &lt;Column(Storage:="_Target_LName", DbType:="NVarChar(50)")&gt; _ Public Property Target_LName() As String Get Return Me._Target_LName End Get Set If (String.Equals(Me._Target_LName, value) = false) Then Me.OnTarget_LNameChanging(value) Me.SendPropertyChanging Me._Target_LName = value Me.SendPropertyChanged("Target_LName") Me.OnTarget_LNameChanged End If End Set End Property &lt;Column(Storage:="_Target_Street_Address", DbType:="NVarChar(100)")&gt; _ Public Property Target_Street_Address() As String Get Return Me._Target_Street_Address End Get Set If (String.Equals(Me._Target_Street_Address, value) = false) Then Me.OnTarget_Street_AddressChanging(value) Me.SendPropertyChanging Me._Target_Street_Address = value Me.SendPropertyChanged("Target_Street_Address") Me.OnTarget_Street_AddressChanged End If End Set End Property &lt;Column(Storage:="_Target_City", DbType:="NVarChar(50)")&gt; _ Public Property Target_City() As String Get Return Me._Target_City End Get Set If (String.Equals(Me._Target_City, value) = false) Then Me.OnTarget_CityChanging(value) Me.SendPropertyChanging Me._Target_City = value Me.SendPropertyChanged("Target_City") Me.OnTarget_CityChanged End If End Set End Property &lt;Column(Storage:="_Target_State", DbType:="NVarChar(50)")&gt; _ Public Property Target_State() As String Get Return Me._Target_State End Get Set If (String.Equals(Me._Target_State, value) = false) Then Me.OnTarget_StateChanging(value) Me.SendPropertyChanging Me._Target_State = value Me.SendPropertyChanged("Target_State") Me.OnTarget_StateChanged End If End Set End Property &lt;Column(Storage:="_Target_Zip", DbType:="NVarChar(50)")&gt; _ Public Property Target_Zip() As String Get Return Me._Target_Zip End Get Set If (String.Equals(Me._Target_Zip, value) = false) Then Me.OnTarget_ZipChanging(value) Me.SendPropertyChanging Me._Target_Zip = value Me.SendPropertyChanged("Target_Zip") Me.OnTarget_ZipChanged End If End Set End Property &lt;Column(Storage:="_Complaint_Details", DbType:="NVarChar(4000)")&gt; _ Public Property Complaint_Details() As String Get Return Me._Complaint_Details End Get Set If (String.Equals(Me._Complaint_Details, value) = false) Then Me.OnComplaint_DetailsChanging(value) Me.SendPropertyChanging Me._Complaint_Details = value Me.SendPropertyChanged("Complaint_Details") Me.OnComplaint_DetailsChanged End If End Set End Property &lt;Column(Storage:="_Status", DbType:="NVarChar(4000)")&gt; _ Public Property Status() As String Get Return Me._Status End Get Set If (String.Equals(Me._Status, value) = false) Then Me.OnStatusChanging(value) Me.SendPropertyChanging Me._Status = value Me.SendPropertyChanged("Status") Me.OnStatusChanged End If End Set End Property &lt;Column(Storage:="_System_Time_Date_Stamp", DbType:="DateTime")&gt; _ Public Property System_Time_Date_Stamp() As System.Nullable(Of Date) Get Return Me._System_Time_Date_Stamp End Get Set If (Me._System_Time_Date_Stamp.Equals(value) = false) Then Me.OnSystem_Time_Date_StampChanging(value) Me.SendPropertyChanging Me._System_Time_Date_Stamp = value Me.SendPropertyChanged("System_Time_Date_Stamp") Me.OnSystem_Time_Date_StampChanged End If End Set End Property Public Event PropertyChanging As PropertyChangingEventHandler Implements System.ComponentModel.INotifyPropertyChanging.PropertyChanging Public Event PropertyChanged As PropertyChangedEventHandler Implements System.ComponentModel.INotifyPropertyChanged.PropertyChanged Protected Overridable Sub SendPropertyChanging() If ((Me.PropertyChangingEvent Is Nothing) _ = false) Then RaiseEvent PropertyChanging(Me, emptyChangingEventArgs) End If End Sub Protected Overridable Sub SendPropertyChanged(ByVal propertyName As [String]) If ((Me.PropertyChangedEvent Is Nothing) _ = false) Then RaiseEvent PropertyChanged(Me, New PropertyChangedEventArgs(propertyName)) End If End Sub End Class End Namespace </code></pre> <p>)</p> http://stackoverflow.com/questions/1537393/multiple-swf-files-not-loading-in-dnn-5-x 0 Multiple swf files not loading in DNN 5.X unknown (google) 2009-10-08T12:04:21Z 2009-11-17T13:38:30Z <p>Hi Guys,</p> <p>We have run numerous tests now and it has now come down to either a DNN-SWFObject loading multiple swf files on a page or Firefox bug.</p> <p>Here's the outcome we need:</p> <p>Two swf files on one page:</p> <ol> <li>Header.swf: which holds the nav and some bling animation.</li> <li>Map.swf: which has different provinces of the country highlighted on rollover. The active province is highlighted by reading the URL via Javascript and then loaded into the Map.swf via FlashVars.</li> </ol> <p>In all of our other tests in other browsers, the scenario works very well but in Firefox 3.5.3 The swf files refuse to show.</p> <p>We have stripped this test down to the bare minimum, one html page scenario and embedding it the same way using SWFObject 2.2 and this works in Firefox. When it is uploaded in DNN, the swf files refuse to show.</p> <p>Is there anything anyone can think of?</p> <p>Many thanks, James</p> http://stackoverflow.com/questions/914171/dotnetnuke-nav-menu-not-showing-unless-im-loggged-in 0 DotNetNuke Nav menu not showing unless I'm loggged in? evanmortland 2009-05-27T05:58:46Z 2009-11-15T06:49:07Z <p>Hello,</p> <p>Am working with a DotNetNuke(DNN) site and for some reason, the DNN:NAV control only displays the menu when I am logged in. </p> <p>The menu is part of the template file itself, which in this case is 'index.ascx'</p> <p>Any way for me to troubleshoot the visibility of the menu? Why wouldn't it be showing up? Everything else on the page is.</p> <p>Thanks for any help!</p> http://stackoverflow.com/questions/1603197/is-it-possible-to-make-a-tooltip-appear-on-a-dotnetnuke-menu 0 Is it possible to make a tooltip appear on a DotNetNuke menu? Scott and the Dev Team 2009-10-21T19:54:25Z 2009-11-12T06:29:54Z <p>I am running DNN 5.x and the XDMediaBlue skin in horizontal menu full mode. Is there any way to have a tooltip appear for menu items?</p> http://stackoverflow.com/questions/986557/scriptresource-axd-requests-return-http-302 0 ScriptResource.axd requests return HTTP 302 Uchitha 2009-06-12T13:09:24Z 2009-11-04T11:23:08Z <p>The DNN application I develop has this familiar problem in the deployment env (Win 2003/IIS 6). From all resources I've searched only one came close to my situation. i.e this request returning 404 instead of 302 I get.</p> <p>Common suggestions like aspnet reinstallation, web.config settings, removing 'verify file exists' in IIS handler settings are all tried with nor results.</p> <p>Any Clues?</p> http://stackoverflow.com/questions/1655702/localize-dnn-site-via-codebehind 0 Localize DNN Site via CodeBehind enzone 2009-10-31T21:40:23Z 2009-10-31T21:51:10Z <p>Hi,</p> <p>I've a portal with two different alias, one for eache language: - en.mysite.com - it.mysite.com</p> <p>Now I've the issue to have English language on the first portal and Italian on the second one.</p> <p>What I've done is to add the following line in the default.vb.aspx in the Page_Load:</p> <p>If Request.Url.Host = "en.mysite.com" Then System.Threading.Thread.CurrentThread.CurrentCulture = New System.Globalization.CultureInfo("en-GB") ElseIf Request.Url.Host = "it.mysite.com" Then System.Threading.Thread.CurrentThread.CurrentCulture = New System.Globalization.CultureInfo("it-IT") Else System.Threading.Thread.CurrentThread.CurrentCulture = New System.Globalization.CultureInfo("en-GB") End If</p> <p>It partially works, the LOCALE variable is correctly set, but I've noticed that:</p> <ul> <li>the combobox of the language is not set correctly </li> <li>the html tag doesn't change, it always remains with the default language of the portal, in my case it-IT </li> <li>the localization module doesn't run, for eg using Locopon to change the TabName for each language doesn't work.</li> </ul> <p>I think the the previous issues are related to the same thing, but I don't know how to solve it</p> <p>thanks</p> http://stackoverflow.com/questions/1644233/tabinfo-iconfile 1 TabInfo IconFile Yobi21 2009-10-29T14:44:19Z 2009-10-30T20:09:36Z <p>I'm wondering how to correctly use the IconFile property of a TabInfo object in DotNetNuke? I am building a custom overlay menu that will be displaying the tab name, description, and an icon similar to the Admin and Host pages that use the 'console' DesktopModule. If I have a TabInfo object that has an IconFile set for it the value of the IconFile field is something like 'FileID=83'. I'm assuming this needs to be run through some sort of File API to determine what the URL of the file is.</p> http://stackoverflow.com/questions/380069/adding-jquery-include-to-a-dotnetnuke-4-8-skin-does-nothing 0 Adding jquery include to a DotNetNuke 4.8 skin does nothing Dave Markle 2008-12-19T03:59:51Z 2009-10-25T08:31:31Z <p>I'm trying to include JQuery in my DotNetNuke skin by adding these two lines of code at the top of my DNN skin:</p> <pre><code>&lt;% Page.ClientScript.RegisterClientScriptInclude("jquery", "http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js") Page.ClientScript.RegisterStartupScript(Me.GetType(), "jQueryNoConflict", "jQuery.noConflict()", True) %&gt; </code></pre> <p>Sadly, when I view source on my page, I don't see the appropriate tag referencing jquery.min.js anywhere. Is DotNetNuke somehow flushing out my requests to add script to my pages here? What am I missing? I'm somewhat of a DNN newbie.</p> http://stackoverflow.com/questions/1574163/mixing-dnn-modules-that-use-net-2-0-and-3-5 0 Mixing DNN modules that use .NET 2.0 and 3.5 AndyMcKenna 2009-10-15T18:21:10Z 2009-10-16T16:49:47Z <p>I am running a DNN 4.9.x site with a number of custom modules that we've written. They all use .NET 2.0 until I upgraded one of them to use 3.5.</p> <p>Now I'm getting this error on the 2.0 modules</p> <blockquote> <p>error CS0433: The type 'System.Web.UI.UpdatePanel' exists in both 'c:\WINDOWS\assembly\GAC_MSIL\System.Web.Extensions\3.5.0.0__31bf3856ad364e35\System.Web.Extensions.dll' and 'c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\5badfcee\f17ac744\assembly\dl3\69975b21\004187ac_515cc701\System.Web.Extensions.DLL'</p> </blockquote> <p>Is there anything I can do besides upgrading all my other modules to use 3.5?</p> <p>Update: It's going to be easier to just upgrade the rest of my modules to 3.5</p> <p>If I remove the 2.0 version of System.Web.Extensions.dll I get this:</p> <blockquote> <p>Could not load file or assembly 'System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.</p> </blockquote> <p>My prefix extension is just:</p> <pre><code>&lt;%@ Register Assembly="System.Web.Extensions" Namespace="System.Web.UI" TagPrefix="ajx" %&gt; </code></pre> <p>So there is nothing specifying the 2.0 version except the reference for the project. My understanding of references was that you just have to reference the minimum version of an assembly and it will work with future versions unless there is a breaking change.</p> <p><strong>Solved</strong> I needed to add this to my web.config</p> <pre><code>&lt;assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"&gt; &lt;dependentAssembly&gt; &lt;assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/&gt; &lt;bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/&gt; &lt;/dependentAssembly&gt; &lt;/assemblyBinding&gt; </code></pre> http://stackoverflow.com/questions/540201/best-dotnetnuke-url-rewriting-approach 1 Best DotNetNuke url rewriting approach? evanmortland 2009-02-12T05:43:23Z 2009-10-16T07:55:48Z <p>I would like to implement a URL rewrriter for DotNetNuke. Have questions as to whether this is a good or possible approach and any suggestions other developers may have.</p> <p>Can I add a dynamic or static route for URL rewriter from the 'Pages'-> 'Add Page' section?</p> <p>Let's say I'm creating a page called 'Events' underneath the 'Activities' menu item.</p> <p>Can I write some custom code in DotNetNuke that will add a prompt on the add page screen that assumes I will want a static or dynamic route added for - site.com/Activities/Events Or if I name the page 'Event Calendar' then it would suggest 'site.com/Activities/Event-Calendar'?</p> <p>I would like any feedback or suggestions on how I would accomplish this! Thank you.</p> http://stackoverflow.com/questions/1522777/dotnetnuke-menu-custom-root 0 Dotnetnuke menu custom root Yobi21 2009-10-05T22:40:15Z 2009-10-16T07:10:08Z <p>Is there anyway to use the built-in DNN Menu module to display a menu based at a different root node other than the current tab node?</p> <p>Given the following structure:</p> <pre> Page1 -child1_1 -child1_2 Page3 Page2(hidden) -child2_1 -child2_2 </pre> <p>In this scenario I will be having 2 menus on this skin. One will be normal navigation based off of the current node and the other will be a set of 'static' links to pages located outside the current node. </p> <p>When on Page1 the normal navigation will show Page1, Page3 and the children of Page1 nested under Page1. The 'static' links will use 'Page2' as their root and will show child2_1 and child2_2.</p> http://stackoverflow.com/questions/1570620/transferring-dnndatabase-from-local-to-production 0 Transferring DNNdatabase from local to production Raghu 2009-10-15T06:32:07Z 2009-10-16T05:54:07Z <p>Hi, I creaed one dnn applicaiton, and the source is moved to production and also same as the database is also moved to production server, but i am getting the dotnetnuke error. I think there is a database not inserted correctly. Can you help me how to transfer the database from local to production..</p> http://stackoverflow.com/questions/644748/dnn-5-cant-get-current-moduleid-from-nested-user-control-in-cutom-module 1 DNN 5 - Can't get current ModuleId from nested user control in cutom module roman m 2009-03-13T21:50:11Z 2009-10-13T11:24:10Z <p>I'm writing a custom module for DNN 5, and I need a "Manage" link to be on every control in the module. I created a new UserControl ("ManagerLink") that inherits from PortalModuleBase, put my link into that control, and dropped that control on ALL OF MY MAIN CONTROLS.</p> <p>The problem is that ModuleId and TabId are always -1 in "ManagerLink" nested control. PortalId works just fine, and I can get a TabId by doing PortalSettings.ActiveTab.TabID.</p> <ol> <li><p>Why can't I get ModuleId and TabId in from "ManagerLink" control, even though it inherits from PortalModuleBase?</p></li> <li><p>Is there an alternative method to get ModuleId (equivalent of PortalSettings.ActiveTab.TabID)</p></li> </ol> http://stackoverflow.com/questions/775045/is-it-worth-the-effort-to-try-and-override-the-default-classes-in-dnn 2 is it worth the effort to try and override the default classes in DNN Steve Perks 2009-04-21T23:04:58Z 2009-10-08T13:00:01Z <p>DotNetNuke uses quite a few preset classes like .Normal, .Head, .SubHead, etc. in spans inside other classless spans etc. that I find really annoying and rather than figuring out how to work with them I'm considering overriding them by having them all inherit their styles from their parent, but I'm curious if others have already given this a try and have stories to tell of success or fallen foul of something on the module / admin end that makes this a fruitless task?</p> <p>Thanks, Steve</p> http://stackoverflow.com/questions/392211/dnn-4-9-intermittent-error-while-uploading-pdf-files 0 DNN 4.9 ... Intermittent error while uploading PDF files roman m 2008-12-24T21:01:11Z 2009-10-05T07:00:03Z <p>I get intermittent "Object reference is not set to an instance of an object" errors when uploading PDF files in FCKEditor in DNN 4.9.</p> <p>Here's the error:</p> <p>AssemblyVersion: 04.09.00<br /> AbsoluteURL: /.../Providers/HtmlEditorProviders/Fck/fcklinkgallery.aspx<br /> UserAgent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; IEMB3; IEMB3)<br /> InnerException: Object reference not set to an instance of an object.<br /> FileName:<br /> FileLineNumber: 0<br /> FileColumnNumber: 0<br /> Method: DotNetNuke.UI.UserControls.UrlControl.cmdSave_Click<br /> StackTrace: Message: DotNetNuke.Services.Exceptions.PageLoadException: Object reference not set to an instance of an object. ---> System.NullReferenceException: Object reference not set to an instance of an object. at DotNetNuke.UI.UserControls.UrlControl.cmdSave_Click(Object sender, EventArgs e) at System.Web.UI.WebControls.LinkButton.OnClick(EventArgs e) at System.Web.UI.WebControls.LinkButton.RaisePostBackEvent(String eventArgument) at System.Web.UI.WebControls.LinkButton.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) at System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) --- End of inner exception stack trace --- </p> <p>The error comes and goes, file size doesn't seem to matter, last time i got it after uploading a couple of 1MB files, the third file (600kB) gave me an error.</p> <p>Please help!</p> http://stackoverflow.com/questions/1510315/dotnetnuke-run-as-script-sql-option 3 DotNetNuke 'Run As Script' sql option Yobi21 2009-10-02T15:37:53Z 2009-10-02T18:46:35Z <p>What does the 'Run as Script' option do in the Host->Sql page in DotNetNuke?</p> http://stackoverflow.com/questions/1487610/reuse-dnn-modules-in-other-applications 0 Reuse DNN modules in other applications Ali Kazmi 2009-09-28T15:13:26Z 2009-09-29T02:45:04Z <p>Hi,</p> <p>I had an application built on top of DNN. We created a few custom DNN modules for it. Now the functionality is required in another application that is not going to be built on DNN but on plain old ASP.NET. The question is that can the existing modules somehow be reused as is in other applications as plain UserControls somehow??</p> http://stackoverflow.com/questions/493887/joomla-drupal-or-dotnetnuke 11 Joomla, drupal or dotnetnuke? hovercraft2x 2009-01-29T23:04:25Z 2009-09-26T21:44:49Z <p>I'm in the process of starting my own podcasting website. I'm trying to find a good cms to use. At work I'm a .net developer and we are starting to use DNN for some small projects around the office. I'd like the new business to be fully open source but it might be nice to use Dnn cause I will already have some experience with it from work. I'm worried that I'll be spreading myself too thin learning php/Lamp at home and .net at work. What does everyone recommend? </p> http://stackoverflow.com/questions/1478612/how-to-use-transactions-in-dotnetnuke 3 How to use transactions in DotNetNuke? Eran Betzalel 2009-09-25T17:31:16Z 2009-09-25T20:19:02Z <p>I'm trying to do the most simple thing and apply a transaction to the <code>CreatePortal</code> method.</p> <p>If I'm using <code>TransactionScope</code> - It promotes to DTC for some unknown reason - BAD.</p> <pre><code>using (var ts = new TransactionScope()) { var portalController = new PortalController(); var portalId = portalController.CreatePortal( "TESTTESTTEST", string.Empty, string.Empty, "TESTTESTTEST_" + new Random().Next(999999), UserController.GeneratePassword(), "TESTTESTTEST_" + new Random().Next(999999) + "@something.com", string.Empty, string.Empty, Globals.ApplicationMapPath + "/Portals/_default/", "Default Website.template", "Portals/TESTTEST", "TESTTESTTEST", string.Empty, string.Empty, false); ts.Complete(); } </code></pre> <p>If I'm using <code>DataProvider.Instance().GetTransaction</code> and performs <code>RollbackTransaction</code> at the end - IT DOES NOT ROLLBACK, which means that the transaction didn't even work.</p> <pre><code>var t = Data.DataProvider.Instance().GetTransaction(); var portalController = new PortalController(); var portalId = portalController.CreatePortal( "TESTTESTTEST", string.Empty, string.Empty, "TESTTESTTEST_" + new Random().Next(999999), UserController.GeneratePassword(), "TESTTESTTEST_" + new Random().Next(999999) + "@something.com", string.Empty, string.Empty, Globals.ApplicationMapPath + "/Portals/_default/", "Default Website.template", "Portals/TESTTEST", "TESTTESTTEST", string.Empty, string.Empty, false); Data.DataProvider.Instance().RollbackTransaction(t); </code></pre> <p>So, How to use transactions in DotNetNuke?</p> http://stackoverflow.com/questions/1293366/dotnetnuke-retrieving-userinfo-for-the-given-userid 1 DotNetNuke Retrieving UserInfo for the given UserID unknown (google) 2009-08-18T11:47:57Z 2009-09-24T23:44:20Z <p>Is there somthing in the dotnetnuke framework which will allow me to pass it a userId and it would return the UserInfo object filled with details of that userId.</p> <p>If not what would be the normal way of doing this?</p> http://stackoverflow.com/questions/1457313/dotnetnuke-and-gzip 1 Dotnetnuke and gzip klaasens 2009-09-21T22:57:48Z 2009-09-21T22:57:48Z <p>I am currently running Dotnetnuke version 4.9.4 and would like to enable gzip compression. My concern is that IE6 prior to SP2 has known issues with gzipped content. Does the Dotnetnuke framework handle the gzip issues with IE6 or will I need to apply a fix outside of the framework?</p> http://stackoverflow.com/questions/1246461/how-do-you-disable-the-forum-in-dnn-4 0 How do you disable the Forum in DNN 4? gwc 2009-08-07T19:05:40Z 2009-09-17T14:48:14Z <p>I have a dot net nuke 4 site with that has a forum. It is getting a lot spam and I wanted to know how I could disable the forum. Screenshots of the solution would be appreciated.</p> http://stackoverflow.com/questions/790918/dnn-page-render-correctly-in-ie7-vista 0 DNN page render correctly in IE7/Vista Rick 2009-04-26T14:19:14Z 2009-09-14T16:51:12Z <p>I have a dot net nuke site that I have written a custom module for. It a form that users fill out to submit information - no big deal.</p> <p>On the form, I use the Ajax and the Ajaxoolkit for validation, and a calendar popup. I enable/disable controls based on form data.</p> <p>Everthing works well in every browser/OS combo that I have tested EXCEPT IE7/Vista.</p> <p>The page renders with most of the lables and conrols invisible. The controls are there and you can even enter data, you just can see them.</p> <p>Here is a link: <a href="http://www.gpusbc.com/test/tabid/76/Default.aspx" rel="nofollow">http://www.gpusbc.com/test/tabid/76/Default.aspx</a></p> <p>I develop on a Win XP machine with IE7 and FireFox and there are no problems. FireFox on Vista has no problems.</p> http://stackoverflow.com/questions/1421778/dnn-module-packaging-question 0 Dnn Module Packaging Question e-turhan 2009-09-14T14:07:10Z 2009-09-14T14:25:20Z <p>Hi, I have folders inside a module which I developed and there are many files inside them.</p> <ul> <li>How can I package the folders with files?</li> <li>Should I archive the folders in a zip file? If so, how can I extract them again?</li> </ul> http://stackoverflow.com/questions/1398012/how-to-stop-smtp-configuration-test-email-every-time-i-send-a-newsletter-in-dot 0 How to stop "SMTP Configuration Test" email every time I send a Newsletter in DotNetNuke 5.0? roman m 2009-09-09T07:13:19Z 2009-09-11T08:23:15Z <p>The question is in the title, every time i send out a Newsletter from DNN (Newsletter Module) the Admin gets a blank "SMTP Configuration Test" email.</p> <p>How do I stop that email?</p> http://stackoverflow.com/questions/1306155/change-favicon-in-dotnetnuke-portal 1 Change favicon in DotNetNuke portal Rap 2009-08-20T13:23:18Z 2009-09-02T23:49:04Z <p>I'm managing several DotNetNuke portals (as well as the main hosting itself). All of the portals have the default DNN icon in the address and when they're bookmarked. I want to have a custom favicon.!</p> <p>It's the icon on the left side of this: <img src="http://www.dotnetnuke.com/Portals/25/SystemAvatar/%5Fthumbs/dnn%5Fpt%5Fxml%5F130x49%5Fborder.gif" alt="DNN icon" /></p> <p>I've tried clobbering the default favicon.ico file in the root directory (where the web.config file is located). I've deleted, I've replaced, I've restarted the browser, I've bounced IIS. None of that works.</p> <p>Has anyone come across a solution for the wonky favicon problem in DNN?</p> http://stackoverflow.com/questions/1356279/prevent-jquery-multiple-reference 0 Prevent jQuery multiple reference e-turhan 2009-08-31T07:39:42Z 2009-08-31T14:27:21Z <p>Hi, I am developing Dnn modules and I am using jQuery in some modules, I add the jQuery reference to the top of the each ascx file, by the way when user add multiple modules to the page it references every time when modules are added, this situation gives some errors, when I remove the reference from the module which is bottom of the other module which both use jQuery, they work good, is there a way to prevent multiple reference the jQuery ? I mean if it is referenced on the page befeore it won't reference again.Thanks.</p> http://stackoverflow.com/questions/1330659/updating-dotnetnuke-module-from-another-app 0 Updating DotNetNuke module from another app Chris Tybur 2009-08-25T20:08:54Z 2009-08-26T18:13:19Z <p>I have several DNN modules that I wish to update silently, using the portal's built-in module upgrade facilities called from a separate application, in this case a Windows service. I was able to make it all work with version 4.3 of the portal by modifying the DNN source in key areas to allow DotNetNuke.dll to function outside of a web application. I'm now trying to do the same thing with the 4.9.0 source code and I'm having problems.</p> <p>Everything works fine until DNN tries to read from the database. I have my Windows service project, the DNN library project, and several other related projects loaded in one VS solution (the additional projects are the same ones that are in the main solution file provided with the DNN source). I call PaInstaller.Install in my service to update each module. Execution gets to reflection.vb and then it tries to create a DotNetNuke.Data.SqlDataProvider object based on the type name. It raises an exception when calling System.Web.Compilation.BuildManager.GetType. The exception says:</p> <p>Could not load type 'DotNetNuke.Data.SqlDataProvider' from assembly 'System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'</p> <p>I read this to mean it simply couldn't locate the DotNetNuke.SqlDataProvider.dll assembly. What's strange is that assembly is in the Bin folder for the DNN library project, and I also have it in the folder where my Windows service is running. The actual SqlDataProvider project is also loaded in the solution. I can't for the life of me understand why the runtime environment can't locate the assembly.</p> <p>Has anyone tried something like this before, or know what could cause an assembly not to be found while stepping through the DNN source? Am I better off using something other than BuildManager.GetType to get an instance of the SQL provider type?</p>