active questions tagged dotnetnuke - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T19:30:51Z http://stackoverflow.com/feeds/tag/dotnetnuke http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1798415/dotnetnuke-managing-filtered-words-in-forum-module 0 DotNetNuke Managing filtered words in Forum Module unknown (google) 2009-11-25T17:07:16Z 2009-11-25T17:07:16Z <p>Is there a way to limit the Filtered word match in the dotnetnuke forum to whole words only. For example, if the word 'bum' is a filtered word replaced by a '~' then the word 'bumble bee' is also affected becoming '~ble bee'</p> <p>I'd like to limit to a full word match rather than a partial. Any help is most appreciated.</p> <p>Thanks </p> http://stackoverflow.com/questions/1795735/find-all-css-styles-used-on-website 1 Find all CSS styles used on website Dave Anderson 2009-11-25T09:33:31Z 2009-11-25T09:35:53Z <p>I have a DotNetNuke skin that has a single CSS file over 3,500 lines long. It contains styles for YUI, Telerik, Cluetip as well as the actual customisation of the site. The old developers just kept adding styles and never cleaned up the old unused ones.</p> <p>I want to cleanup the file and get it to a more managable size. I first thought about scanning through the code base but this is 5,500 files with a mixture of CSS applied in the .aspx, .ascx and .cs files as well as jQuery aplying styles sometimes from generated code and sometimes from js files. Some styles are applied with class selectors and others with id selectors.</p> <p>Is there a way I can easily check just which styles the website actually needs across all of its pages? Is there some crawler that could do this?</p> http://stackoverflow.com/questions/1198217/dotnetnuke-module-installer 2 dotnetnuke module installer Muhammad Adnan 2009-07-29T05:42:06Z 2009-11-24T08:24:08Z <p>Hello guys, I am just looking for some option in dotnetnuke or some utility or some installer module of dnn which could make installer (.zip package) of my dynamic desktop module.</p> <p>at the moment when i try to create module package through Host->Module Definition... It only creates package of those files which does exist in that Module folder but i want it should also include relevant DLL and Database Script, Please guide me how can I include dependent/relavent dll and script files.</p> <p>Thanks, Report Post </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/1768885/dotnetnuke-how-to-do-single-sing-on-to-multiple-portals 1 DotNetNuke : How to do single sing-on to multiple portals Morri 2009-11-20T07:25:05Z 2009-11-20T14:48:33Z <p>I have a Dotnetnuke environment with multiple portals running at different subdomains (serviceA.company.com, serviceB.company.com). I can allow users the access to each portal by adding rows to UserPortals table, but since DNN uses full domain name in the auth cookie, the users need to log separately to each portal.</p> <p>I'd like to have the system working so, that you only need to log in once on some of the portals, and wouldn't have to log in on the others. Is this possible?</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/1434083/how-to-use-transactions-in-dotnetnuke-entangled-with-l2s 1 How to use transactions in DotNetNuke (entangled with L2S)? Eran Betzalel 2009-09-16T16:30:54Z 2009-11-18T05:30:25Z <p>I use L2S at my module. The problem occurs while I'm using the default DNN entities at the same TransactionScope with my L2S data access, then I get a DTC request which I want to avoid. </p> <p>How can I share the connection/transaction for both DNN entities and my L2S data access?</p> http://stackoverflow.com/questions/1750755/401-error-using-httpwebrequest-with-active-directory-authentication-in-dotnetnuke 0 401 Error using HTTPWebRequest with Active Directory Authentication in DotNetNuke xfernal 2009-11-17T18:16:46Z 2009-11-18T02:02:03Z <p>Has anyone successfully used the System.Net.HTTPWebRequest with Active Directory authentication in a DotNetNuke website? I have looked around and found several references to HTTPWebRequest and Active Directory authentication, but none seem to have the special sauce. I have tried uncountable variations of the attributes/methods, without success.</p> <p>The development environment I am working in is a Windows 2003 Server that acts as a backup PDC and runs IIS 6.0. The website is running DotNetNuke 4.9.4 with Active Directory authentication (also tried it in DNN 5.1.4) and is working great for login. However, one of the modules does a HTTPWebRequest to process files and it is faling with a 401 Unauthorized error.</p> <p>The most basic of code I have tried:</p> <p>Dim webReq As HttpWebRequest = DirectCast(WebRequest.Create(sURL), HttpWebRequest) webReq.Timeout = 30000 Dim credential As New NetworkCredential(sUserName, sPassword) Dim credentialCache As New CredentialCache() credentialCache.Add(New Uri(sURL), "NTLM", credential) webReq.Credentials = credentialCache webReq.KeepAlive = True webReq.Accept = "<em>/</em>"</p> <p>I have tried adding PreAuthenticate.</p> <p>I have also tried registry key modifications, including this one:</p> <p><a href="http://msdn.microsoft.com/en-us/library/cc982052.aspx" rel="nofollow">Changes to NTLM authentication for HTTPWebRequest in Version 3.5 SP1</a></p> <p>All without success. Each time I get the dreaded 401:</p> <p>The remote server returned an error: (401) Unauthorized. at System.Net.HttpWebRequest.GetResponse() </p> <p>I have also created a simple aspx page with the following int he code behind: Dim requestUrlString As String = "http://adtestsite/somepage.aspx" Dim webReq As HttpWebRequest = DirectCast(WebRequest.Create(requestUrlString), HttpWebRequest) Dim nc As New NetworkCredential("UserName", "Password", "OurDomainName")</p> <pre><code> Dim webResponse As System.Net.HttpWebResponse = DirectCast(webReq.GetResponse, HttpWebResponse) If webResponse.StatusCode = HttpStatusCode.OK Then Response.Write("Yes!") Else Response.Write("NO!") End If </code></pre> <p>I get a "NO!" everytime with the 401 error.</p> <p>I am beating my head against the wall on this one. If anyone has the recipe for the secret sauce, PLEASE let me know!</p> http://stackoverflow.com/questions/1747948/fck-editor-set-image-path-in-dotnetnuke 0 FCK-Editor set image path in DotNetNuke RL 2009-11-17T10:34:48Z 2009-11-17T12:51:19Z <p>Hi trying to set the default image-path of the FCK-Editor in DotNetNuke..?!</p> <p>any ideas?</p> <p>Best Regards RL</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/778502/need-user-friendly-wysiwyg-dotnetnuke-skin-editor 2 Need user friendly WYSIWYG DotNetNuke skin editor bychkov 2009-04-22T18:13:29Z 2009-11-13T17:55:09Z <p>Client wants to edit DotNetNuke skin and he is not a programmer, so I'm looking for some WYSIWYG skin editor. Either web or desktop solution will do.</p> http://stackoverflow.com/questions/1722838/ssl-on-a-dotnetnuke-portal 0 SSL on a DotNetNuke portal Matthew 2009-11-12T15:04:36Z 2009-11-12T15:11:52Z <p>Hello everyone, I have a question. </p> <p>I have never worked with a DotNetNuke setup with SSL before. Our server has SSL set up correctly on the server via our hosting company.</p> <p>My question is, if I enable SSL on one of my DNN portals, are there any gotchas or settings I need to be aware of, assuming the server is set up correctly? </p> http://stackoverflow.com/questions/1715884/dotnetnuke-5-how-do-you-edit-module-content-in-dotnetnuke-5 0 DotNetNuke 5: How do you edit module content in DotNetNuke 5? unknown (google) 2009-11-11T15:22:33Z 2009-11-11T16:08:16Z <p>Hello, How can I edit modules in DNN5? I have previously used DNN4. It is not obvious to me what to do now. Thanks in advance.</p> <p>p.s. No links to video tutorials please. I cannot watch them on this box.</p> http://stackoverflow.com/questions/404009/free-dotnetnuke-skin-resources 2 Free DotNetNuke skin resources craigmoliver 2008-12-31T20:48:20Z 2009-11-10T00:24:01Z <p>Does anyone have any quality resources for some free (or cheap) DotNetNuke skins? Most of the skin resources in the DotNetNuke ecosystem are to costly when you need a simple skin for a site that may not turn any revenue.</p> http://stackoverflow.com/questions/1700943/how-do-i-dynamically-load-usercontrols-the-correct-way 0 How do i Dynamically load UserControls the correct way? Cwisking 2009-11-09T13:18:52Z 2009-11-09T13:56:28Z <p>Hi All, </p> <p>im basically creating a portal system, and want to load UserControls Dynamically, now i have read a couple of articles on this where they loading them into a placeholder, i have tried this. but it just seems a little buggy. its there not a better way to manage the viewstate etc</p> <p>how does dotnetnuke do it where they inject the controls into regions/tablecells? and then how is the viewstate managed?</p> <p>thanks in advanced...</p> http://stackoverflow.com/questions/867584/extender-controls-must-be-registered-using-registerextendercontrol-before-calli 1 Extender controls must be registered using RegisterExtenderControl() before calling RegisterScriptDescriptors() Khurram Aziz 2009-05-15T08:35:21Z 2009-11-06T12:00:07Z <p>I am trying to deploy a web application built with Dotnetnuke. There is an DNN Control/ASCX having a MultiView and few AjaxToolkit Controls like AutoComplete, ModalPopup. In Views other (plain) ASCXs are included and some of which have UpdatePanel.</p> <p>On the developer machine (WinXp / ASP.NET Web Server) there is no error...but when I try to deploy it on server, I get the above error.</p> http://stackoverflow.com/questions/1519602/howtodeploy-dotnetnuke-webapplication-in-webserver 0 howtodeploy dotnetnuke webapplication in webserver Raghu 2009-10-05T11:46:11Z 2009-11-06T08:00:04Z <p>Hi, I created one dotnetnuke web application and also i worked with the database aslo, now i want to deploy in my webserver as a portal. How to deploy the dotnetnuke web application in my web server, I want the steps how to deploy the dnn application..</p> http://stackoverflow.com/questions/1100032/dotnetnuke-css-problem-on-page-postback 0 DotNetNuke CSS problem on page postback? Thomas 2009-07-08T19:17:00Z 2009-11-02T03:55:46Z <p>We're having a very strange problem with css in DotNetNuke.</p> <p>It seems that with any of our custom modules, if a user clicks to postback 9 times the skin css is removed and the page becomes rather ugly. Looking at the source the tags with the urls to the css files are gone. After one more click making 10 postbacks, any custom css files we've added are removed as well. It seems that sometimes the css will come back after more postbacks but other times it will not.</p> <p>what you click on doesn't matter, just the amount of postbacks. However we have another server that on some days will behave fine, and others will have the same behavior.</p> <p>We can't narrow it down to anything our modules have in common. It happens in modules that do not share any code, but somehow happens in all our modules that we've tried but not in any other modules that come with DNN.</p> <p>Though experimenting we've also found you can postback say 8 times leave the page and come back, you then can postback 9 more times before the css will be gone.</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/1570505/dotnetnuke-browsing-problem 0 dotnetnuke browsing problem Raghu 2009-10-15T05:50:32Z 2009-10-28T01:36:51Z <p>I developped a Dotnetnuke application. It works locally perfect, but when hosted on the webserver I am getting this error:</p> <pre> DotNetNuke Error -------------------------------------------------------------------------------- Windows Vista Return to Site </pre> http://stackoverflow.com/questions/1631496/adding-asp-or-dynamic-content-into-the-fck-textbox 0 Adding ASP or Dynamic Content into the FCK textbox Mike Sav 2009-10-27T15:13:58Z 2009-10-27T17:03:01Z <p>Hi there,</p> <p>I'd like to add some dynamic content into the FCK text box when I'm adding links, for example when I add a link or link some text I want to be able to put some ASP delimeters into the textbox and a variable name. Something like this <code>&lt;%= myLinkVariable %&gt;</code>.</p> <p>I've tried looking at the textbox content in the source view and adding a simple <code>&lt;% Response.Write("Hello World")%&gt;</code> but like the link text the asp delimeters have been converted to unicode/html like this <code>&amp;lt;% Response.Write("hello world")%&amp;gt;"</code></p> <p>Do I need to comment / uncommment the </p> <pre><code>FCKConfig.ProtectedSource.Add( /&lt;%[\s\S]*?%&gt;/g ) ; // ASP style server side code &lt;%...%&gt; </code></pre> <p>or any of the other custom items in the custom.js file.</p> http://stackoverflow.com/questions/1588362/dotnetnuke-page-redirecting 0 DotNetNuke Page Redirecting Raghu 2009-10-19T12:18:41Z 2009-10-23T03:48:41Z <p>Hi, When i browsing my dotnetnuke application from the server it defaulty redirects to the error.aspx. Can anyone plz help me to set the default.aspx as the default page... Tanks in advance</p> http://stackoverflow.com/questions/1578595/is-it-possible-to-create-a-sharepoint-internet-site 1 Is it possible to create a SharePoint internet site? Edward Leno 2009-10-16T14:57:45Z 2009-10-20T10:48:38Z <p>I want to use a CMS that can be accessed by my clients via the internet. All SharePoint usage I have seen is for intranet sites only. What I am looking to do:</p> <ul> <li>Landing page for all clients, with general information.</li> <li>Client login to client specific portal page with client specific information.</li> <li>Accessible via the internet. The clients may or may not have SharePoint.</li> <li>General and client specific wikis.</li> <li>I won't be hosting this myself. I would be looking for a hosting provider as well.</li> </ul> <p>I am also looking at using DotNetNuke, which has a lower cost of entry. I am open to suggestions of other CMSs, but my skills are built around C# and ASP.NET.</p> <p>Before going down the SharePoint path, I wanted to make sure these things are possible.</p> <p>Thanks!</p> <p><strong>Update:</strong></p> <p>Thanks to all that have given me some points to ponder. In summary, here is what I have decided to do (given my current skill set):</p> <ul> <li>SharePoint can be used for my needs (my initial question). Many great example sites.</li> <li>DotNetNuke as my CMS. I realize other good CMSs are available, but I prefer to stick to the Microsoft stack.</li> <li>Branding will be easier in DotNetNuke.</li> <li>The site will not be very big and not used by many. SharePoint will be overkill at this point.</li> <li>Many of the 'modules' I am looking to use (wiki, forum, ...) seem to have more options/maturity using DotNetNuke.</li> </ul> <p><strong>Biggest Deciding Factor</strong></p> <p>Integrating a CMS solution with my software product and then installing/implementing this solution for individual clients will have a much larger cost with SharePoint. DotNetNuke will allow me to 'leave behind' the solution with the client without having them to invest heavily in SharePoint if they do not already own it.</p> <p>Thanks to all!</p> <p>Ed</p> http://stackoverflow.com/questions/1164604/referencing-dotnetnuke-dll-from-another-folder-on-asp-net 2 referencing dotnetnuke.dll from another folder on asp.net Ivan 2009-07-22T11:21:36Z 2009-10-19T16:55:44Z <p>I have dotnetnuke portal on server in /root/dnn and I am creating asp.net app in c# VS2008 that I need to upload on /root/app.</p> <p>when I deploy my app, it needs to reference dotnetnuke.dll assembly from /root/dnn/bin instead of /root/app/bin.</p> <p>how can I manage that, without putting app files in /root/dnn?</p> <p>I tried to set auto-refresh path and then after upload deleting the /root/app/bin/dotnetnuke.dll so that the app tries to reference the missing assembly in ../dnn/bin/dotnetnuke.dll but the "application is not pre-compiled" error pops, so I tried to upload it without pre-compiling, but still the reference couldn't be found.</p> http://stackoverflow.com/questions/1586982/dotnetnuke-error 0 DotNetNuke Error Raghu 2009-10-19T04:38:39Z 2009-10-19T04:38:39Z <p>Hi, I developed one DNN applciation it works locally but in hosting i got dotnetnuke error. I changed the Path in the Database also, but i am getting same error. How to set the default.aspx page as the default page..</p> http://stackoverflow.com/questions/1491807/how-modules-can-linked 0 how modules can linked unknown (google) 2009-09-29T10:42:08Z 2009-10-16T23:26:43Z <p>Hi, In my dotnetnuke application i added so many modules, i want to display the content in the contentpane when i clicked on the items that is in in the left / right pane. Can you give me the code for navigating the modules..</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/1547345/blog-host-with-importing-from-dotnetnuke-blog 0 Blog host with importing from dotnetnuke blog papadi 2009-10-10T08:00:42Z 2009-10-16T07:02:29Z <p>I want to migrate my blog from my own dotnetnuke site to another host (like blogger, posterous etc). Do you know any such host that supports importing from dotnetnuke. Posterous supports importing using MetaWebLog API, which is supposed to be supported by dotnetnuke blog module. I tried it but it does not work. I always get 'We were not able to authenticate this account' message from Posterous, altough at the same time I can post to my dnn blog using Word and MetaWebLog API.</p> http://stackoverflow.com/questions/1576277/dotnetnuke-error 0 DotNetNuke error Raghu 2009-10-16T05:43:01Z 2009-10-16T06:45:54Z <p>Hi, I hosted one <code>DotNetNUke Application</code> to my production server, and locally it works perfectly. But, when browsing it redirects to the error page. </p> <p>How do I set the <code>default.aspx</code> as my application default page? I am getting the error as below: </p> <pre><code>DotNetNuke Error -------------------------------------------------------------------------------- Windows Vista Return to Site </code></pre> <p>Can anyone can help me, please? Will be appreciated.</p> <p><strong>UPDATE:</strong> Hi, I changed the Path in the PortalAlias table to the server url and <code>default.aspx</code> as the starting page, but it displays the <code>error.aspx</code> as default page. </p> <p>Please help me resolve this problem..</p> http://stackoverflow.com/questions/1576444/dotnetnuke-error 0 DotNetNuke Error Raghu 2009-10-16T06:33:53Z 2009-10-16T06:38:10Z <p>Hi, I changed the Path in the PortalAlias table to the server url and <code>default.aspx</code> as the starting page, but it displays the <code>error.aspx</code> as default page. </p> <p>Please help me resolve this problem..</p>