﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Knowledgebase » Knowledgebase » ASP.NET plugins » DotNetNuke</title><generator>InstantKB.NET 2.0.4</generator><description>Knowledgebase</description><link>http://www.webhost4life.com/HostingKB/</link><webMaster>kb@webhost4life.com</webMaster><lastBuildDate>Fri, 20 Nov 2009 20:23:38 GMT</lastBuildDate><ttl>20</ttl><item><title>Why do I get "Application Shutting Down / Application Started" in my DNN?</title><link>http://www.webhost4life.com/HostingKB/Goto50508.aspx</link><description>&lt;p&gt;You may receive the following error in dnn admin account -&gt; admin -&gt; event viewer (for DNN4.0 or above) or log viewer (for earlier version of DNN):&lt;br /&gt;&lt;span id="dnn_ctr364_LogViewer_dlLog_ctl04_lblType"&gt;&lt;br /&gt;&lt;br /&gt;Application Shutting Down&lt;/span&gt;       &lt;span class="Normal" id="dnn_ctr364_LogViewer_dlLog_ctl04_lblException"&gt;&lt;strong&gt;Shutdown Details&lt;/strong&gt;: The AppDomain shut down because of the hosting environment&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The reason for this error is that, when your dnn site is idle for about 20 minutes, IIS would shutdown the application pool your site located in order to maintain a healthy server environment. &lt;/p&gt;&lt;p&gt;The DNN will then logged it as Application Shutting Down. But once another visitor visit your site, IIS will start the application and your dnn site will be recompiled to serve the visitor.&lt;/p&gt;</description><pubDate>Thu, 20 Aug 2009 09:38:18 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>How to reset dnn password? </title><link>http://www.webhost4life.com/HostingKB/Goto50235.aspx</link><description>1)Open SQL Query Analyzer - Connect to your DotNetNuke database  &lt;br /&gt;&lt;br /&gt;2)Paste the following Stored Procedure code into the window, this will create a stored procedure for later use called uap_ResetPassword. This should survive DNN upgrades because we are predicating the stored procedure name with uap_  &lt;br /&gt;&lt;br /&gt;&lt;span class="Quote"&gt;create procedure [dbo].[uap_ResetPassword]&lt;br /&gt;@UserName NVarChar(255),&lt;br /&gt;@NewPassword NVarChar(255)&lt;br /&gt;as&lt;br /&gt;begin&lt;br /&gt;Declare @PasswordSalt NVarChar(128)&lt;br /&gt;Declare @ApplicationID NVarChar(255)&lt;br /&gt;Declare @ApplicationName NVarChar(255)&lt;br /&gt;Set @ApplicationID = (SELECT [ApplicationID] FROM aspnet_Users WHERE UserName=@UserName)&lt;br /&gt;Set @ApplicationName = (SELECT [ApplicationName] FROM aspnet_Applications WHERE ApplicationID=@ApplicationID)&lt;br /&gt;Set @PasswordSalt = (SELECT PasswordSalt FROM aspnet_Membership WHERE UserID IN (SELECT UserID FROM aspnet_Users WHERE UserName=@UserName))&lt;br /&gt;select @ApplicationID, @ApplicationName&lt;br /&gt;declare @RetVal as int&lt;br /&gt;Exec @RetVal = dbo.aspnet_Membership_ResetPassword @ApplicationName, @UserName, @NewPassword, 10, 10, @PasswordSalt, -5&lt;br /&gt;return @RetVal&lt;br /&gt;end&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;3)Now you can reset your DotNetNuke passwords by simply opening up SQL Query Analyzer, connecting to your dotNetNuke database, then typing &lt;br /&gt;uap_ResetPassword 'username', 'newpassword'&lt;br /&gt;</description><pubDate>Wed, 24 Jun 2009 02:32:48 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>How to reset my DNN3 host password?</title><link>http://www.webhost4life.com/HostingKB/Goto50473.aspx</link><description>&lt;font color="#ff0000"&gt;*This tips works on DNN3.x only.&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;To reset the host password for your DNN site, you can do this:&lt;br /&gt;&lt;br /&gt;1) Register a new user on your dnn site&lt;br /&gt;2) connect to your database&lt;br /&gt;3) open the table &lt;strong&gt;users&lt;/strong&gt;&lt;br /&gt;4) find the new user you created just now and update the field "&lt;strong&gt;IsSuperUser&lt;/strong&gt;" from false to true. &lt;br /&gt;5) This new user have the same right as the host account now&lt;br /&gt;6) Login to your DNN site with this new user&lt;br /&gt;7) Change the password of the original host account in &lt;strong&gt;host &lt;/strong&gt;&gt;&gt; &lt;strong&gt;Superuser Account &lt;/strong&gt;&gt;&gt; &lt;strong&gt;Edit &lt;/strong&gt;&gt;&gt; &lt;strong&gt;Manage Password&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description><pubDate>Wed, 24 Jun 2009 01:50:33 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>How do I migrate/move my DNN site to your hosting?</title><link>http://www.webhost4life.com/HostingKB/Goto50234.aspx</link><description>To transfer and migrate your exisitng DNN site, you need to:&lt;br /&gt;&lt;br /&gt;1. moving your files&lt;br /&gt;&lt;br /&gt;2. moving your database&lt;br /&gt;&lt;br /&gt;3. configuring your web site.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;1. moving your files&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;- Get a copy of your DNN files. If you were hosting your DNN from other hosting company, you can consult with the company and download them from FTP. &lt;br /&gt;&lt;br /&gt;- Next upload your DNN files to your hosting account folder using FTP. Your FTP information can be found from your hosting control panel. The location of the files you should upload to depends on the path your domain point to. eg. If your site is http://mydnn.domain.com and you have created this subdomain from your hosting control panel and pointed to path c:\....\member\yourmemberID\DNN, then you should upload to DNN folder from FTP. This is because your ftp root is pointing to c:\....\member\yourmemberID. For help on using ftp, please refer to &lt;a href="KnowledgebaseArticle50060.aspx"&gt;this article&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt; 2. moving your database&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;- make a database backup of your database. Note, this is backup file generated from the database server, not a raw database file and log file ending with mdf and ldf&lt;br /&gt;&lt;br /&gt;- create a database with the same name and same login id from your hosting control panel&lt;br /&gt;&lt;br /&gt;- from the mssql database menu in hosting control panel, click on "restore db" next to the new database you recreated. You will find a "Click here to create FTP access to the Database server, if you haven't do this already." link to create your ftp account to upload your database backup file. Follow the instruction to create the ftp account&lt;br /&gt;&lt;br /&gt;- Now upload your database file through the new ftp account. When it is done, go back to the mssql admin page in hosting control panel. Click on "restore db", enter the information and click restore.&lt;br /&gt;&lt;br /&gt;- Now you have your database migrated.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;3. configuring your web site&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;- you need to configure file permission, edit your connection string, and configure your asp.net application to fit your DNN&lt;br /&gt;&lt;br /&gt;- go to hosting control panel -&gt; security -&gt; file permission. Find the folder that contain your DNN files. Click the the "EDIT" button, give "NETWORK SERVICE" "Full Permissions".&lt;br /&gt;&lt;br /&gt;- control panel -&gt; File Manager, go into the folder that contains your DNN files. Find within the folder there's a file named "web.config". Your connection string is located in this file. You can edit the file from the file manager. Update the connection string to use your new database. Note, DNN 3.22 and later has two connection strings, please make sure you update both.&lt;br /&gt;&lt;br /&gt;- If your DNN site is in a folder under your domain, eg. http://domain.com/mydnn, go to hosting control panel -&gt; site admin -&gt; .NET Application. Click "GO" next to your domain, click on "set application' icon next to the folder your DNN site is at. Now you have the folder set to a seperated asp.net applicatoin and it is displayed on top of the screen.&lt;br /&gt;&lt;br /&gt;- If you are using DNN 4 and later version, you also need to click on "change .net version" to asp.net 2.0 from the same screen.&lt;br /&gt;&lt;br /&gt;- If your DNN site is at the domain root, eg. http://mydnn.domain.com or http://domain.com, and, is DNN 4 or later, go to hosting control panel -&gt; site admin. Click on "change root's .net version" next to the domain for your DNN, change it to asp.net 2.0.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;After steps 1, 2, 3 you should be good to go with your DNN at our hosting server.&lt;br /&gt;&lt;br /&gt;</description><pubDate>Tue, 19 May 2009 09:53:16 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>How To: Manually install DotNetNuke (DNN)</title><link>http://www.webhost4life.com/HostingKB/Goto50225.aspx</link><description>&lt;ol&gt;&lt;li&gt;																		Create MS SQL DB via control panel for your installation. In Hosting Control Panel -&gt; Databases -&gt; MSSQL Admin -&gt; CreateDB to create one. Remember the DB IP, name, user and password&lt;/li&gt;&lt;li&gt;Download DNN zip-file from DNN website(http://www.dotnetnuke.com/) You need to register an account to access the download section&lt;/li&gt;&lt;li&gt;Unzip all file and upload it&lt;/li&gt;&lt;li&gt;In Hosting Control Panel -&gt; Security -&gt; File permission, select your DNN installation folder and grant read, write and execute permission for user "Network Service", remember to remove write permission after DNN has been installed&lt;/li&gt;&lt;li&gt;For DNN version 4 or after, you need to set your application run with ASP.NET 2.0. You can do it via Hosting Control Panel &lt;span class="Apple-style-span" style="border-collapse: separate; color: rgb(31, 80, 128); font-family: Verdana; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;-&gt; Site Admin-&gt; .net application. If you are installing on a subfolder, you need to change this subfolder as .net application folder as well.&lt;span class="SearchHighlight" style="background-color: rgb(246, 255, 0); font-weight: bold;"&gt;&lt;span class="Apple-converted-space"&gt;&lt;span class="SearchHighlight" style="background-color: rgb(246, 255, 0); font-weight: bold;" /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Browse your site URL and follow the instruction to install it, remember to select sql database instead of sqlexpress and use sql authentication (use database user and password to login).&lt;/li&gt;&lt;li&gt;After installation complete, just browse it. You will see the default DNN login/password show up in home page. You can now login and start work with your DNN&lt;/li&gt;&lt;/ol&gt;</description><pubDate>Tue, 19 May 2009 09:48:03 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>How to remove register link from DNN</title><link>http://www.webhost4life.com/HostingKB/Goto50471.aspx</link><description>To remove register link from dnn site, you can login as admin, then select:&lt;br /&gt;admin -&gt; site settings -&gt; advanced settings -&gt; security settings, set user 		registration to "none"　</description><pubDate>Mon, 18 May 2009 12:07:59 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>How to synchronize file in dnn site</title><link>http://www.webhost4life.com/HostingKB/Goto50469.aspx</link><description>&lt;p style="margin-top: 0pt; margin-bottom: 0pt;"&gt;		&lt;font face="Arial" size="2"&gt;File manager for 		user admin and super admin host has different root folder. &lt;/font&gt;&lt;/p&gt;&lt;p style="margin-top: 0pt; margin-bottom: 0pt;"&gt;&lt;font face="Arial" size="2"&gt;&lt;br /&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style="margin-top: 0pt; margin-bottom: 0pt;"&gt;&lt;font face="Arial" size="2"&gt;For &lt;strong&gt;admin &lt;/strong&gt;account, the default root folder is /portals/0&lt;/font&gt;&lt;/p&gt;&lt;p style="margin-top: 0pt; margin-bottom: 0pt;"&gt;&lt;font face="Arial" size="2"&gt;For &lt;strong&gt;host&lt;/strong&gt; account (or dnnhost in later version), the default root folder is /portals/_default&lt;br /&gt;&lt;/font&gt;&lt;/p&gt;&lt;font face="Arial" size="2"&gt;&lt;br /&gt;To &lt;/font&gt;&lt;font face="Arial" size="2"&gt;check the path of root folder, you can simply click &lt;strong&gt;Upload&lt;/strong&gt;&lt;/font&gt;&lt;font face="Arial" size="2"&gt; and you will be able to see a path besides &lt;strong&gt;Portal Root&lt;/strong&gt;.&lt;br /&gt;&lt;br /&gt;&lt;/font&gt;&lt;p style="margin-top: 0pt; margin-bottom: 0pt;"&gt;&lt;font face="Arial" size="2"&gt;If you upload files to the correct folder 		using ftp, but could not find those files under the file manager in dnn,  you can check the &lt;strong&gt;recursive&lt;/strong&gt; &lt;/font&gt;&lt;font face="Arial" size="2"&gt;option &lt;/font&gt;&lt;font face="Arial" size="2"&gt;and then click on &lt;strong&gt;synchronize 		files&lt;/strong&gt; in the file manager and the files should be shown after 		synchronization. &lt;/font&gt;&lt;/p&gt;		&lt;p style="margin-top: 0pt; margin-bottom: 0pt;"&gt;&lt;font face="Arial" size="4"&gt;　&lt;/font&gt;&lt;/p&gt;</description><pubDate>Mon, 18 May 2009 11:13:18 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>My DNN login page does not work!</title><link>http://www.webhost4life.com/HostingKB/Goto50470.aspx</link><description>** Following procedure involve change of your database. We suggest you backup your database and files before process.&lt;br /&gt;&lt;br /&gt;If you find your DNN login page does not work, or the login page keep refreshing, you can try to do this.&lt;br /&gt;&lt;br /&gt;Connect to your DNN database and run the following query:&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Update Portals Set LoginTabId=null Where PortalId=&lt;font color="#ff0000"&gt;0&lt;span style="background-color: rgb(0, 0, 0);" /&gt;&lt;/font&gt;&lt;br /&gt;&lt;/strong&gt;(Change the PortalID to the one that you find problems)&lt;br /&gt;&lt;br /&gt;After running the query, reload your site and the problem should be fixed.&lt;br /&gt;　&lt;br /&gt;</description><pubDate>Mon, 18 May 2009 11:12:37 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>How to add new Portal and PortalAlias?</title><link>http://www.webhost4life.com/HostingKB/Goto50472.aspx</link><description>&lt;strong&gt;Portal: &lt;/strong&gt;&lt;br /&gt;To create another complete new DNN website using the portal URL, you can use a new domain name which pointed to the same folder of your existing DNN. &lt;br /&gt;To add a new portal, please login as host account &gt;&gt; go to host &gt;&gt; portals &gt;&gt; add new portal.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Portal Alias:&lt;/strong&gt;&lt;br /&gt;To use another domain to browse your existing DNN website, you can do this.&lt;br /&gt;Login as admin account &gt;&gt; go to Admin &gt;&gt; Site Settings &gt;&gt; Advance Settings &gt;&gt; Portal Alias &gt;&gt;  Add New Alias&lt;br /&gt;&lt;br /&gt;　</description><pubDate>Mon, 18 May 2009 11:11:40 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>How to enable Captcha for DNN registration?</title><link>http://www.webhost4life.com/HostingKB/Goto50474.aspx</link><description>Captcha is a server Control that requires the "user" to enter a randomly generated  "Human Readable Security Code" during registration.&lt;br /&gt;Following is an example.&lt;br /&gt;&lt;br /&gt;&lt;img src="/HostingKB/Uploads/Images/captcha.JPG" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;To enable captcha for dnn registration page for dnn 4.8.1 or later version, you need to do the following:&lt;br /&gt;&lt;br /&gt;1) Login as Host/Admin accounts&lt;br /&gt;2) Go to &lt;strong&gt;admin &lt;/strong&gt;&gt;&gt; &lt;strong&gt;User accounts&lt;/strong&gt;&lt;br /&gt;3) Click "&lt;strong&gt;User Settings&lt;/strong&gt;"&lt;br /&gt;4) Find the option "&lt;strong&gt;Use CAPTCHA For Registration&lt;/strong&gt;", check this option&lt;br /&gt;5) Click "&lt;strong&gt;Update&lt;/strong&gt;" in the bottom of the setting page.&lt;br /&gt;&lt;br /&gt;Reload your site and the setting will be updated.&lt;br /&gt;&lt;br /&gt;</description><pubDate>Thu, 14 May 2009 19:12:34 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>DNN Site Log Viewer Feature Disabled</title><link>http://www.webhost4life.com/HostingKB/Goto50442.aspx</link><description>When login to the DNN Log Viewer, you got the following error messages:&lt;br /&gt;&lt;br /&gt;&lt;span class="Quote"&gt;Your Hosting Provider Has Disabled the Site Log Viewer Feature For Your Portal. The Logs can be viewed offline and are available in the \Logs\ subfolder of your Portal's Home Directory.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;To fix this issue, please login as the host user, Go to:&lt;br /&gt;&lt;br /&gt;Admin menu -&gt; site settings -&gt; advanced settings -&gt; host settings -&gt; Site Log History in Days&lt;br /&gt;&lt;br /&gt;You can enter the number of days you wish to log.&lt;br /&gt;&lt;br /&gt;There may have another possibilities that it is setup to store the site logs in the file system rather than the database that would show this message.&lt;br /&gt;&lt;br /&gt;To check your settings, please go to Host menu -&gt; HostSettings -&gt; advanced settings -&gt; other settings -&gt; SiteLog storage -&gt; select database&lt;br /&gt;</description><pubDate>Mon, 30 Mar 2009 10:22:18 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>Why is my dotnetnuke application slow? </title><link>http://www.webhost4life.com/HostingKB/Goto50239.aspx</link><description>There can be lots of reason why your DNN application is running slow.  The first thing you can check is to check the size of your DNN eventlog.  Often in time, DNN logs a lot of activities in its eventlog and the site owner never bother to clear them.  This would create severe performance problem to the DNN application.  You should login as the DNN host and clear those logs.  The loading speed should improve a lot.&lt;br /&gt;&lt;br /&gt;To do so, &lt;span id="ctl00_ctlContentPlaceHolder_ctl00_ctlViewArticle_ctlPanelBar_lblArticleText"&gt;login to your DNN site as HOST or ADMIN.  Then go to "Admin" &gt; "Log Viewer". You can review and remove your log there.&lt;/span&gt;&lt;span id="ctl00_ctlContentPlaceHolder_ctl00_ctlViewArticle_ctlPanelBar_lblArticleText"&gt;&lt;p&gt;&lt;font size="2"&gt;&lt;font face="MS Sans Serif"&gt;Moreover, DNN schedule tasks could consume heavy system resource on Web and DBserver. You may log in as host to check if any DNN schedule tasks arenot necessary and remove them.&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;/span&gt;To do so, &lt;span id="ctl00_ctlContentPlaceHolder_ctl00_ctlViewArticle_ctlPanelBar_lblArticleText"&gt;login to your DNN site as HOST.  Then go to "HOST" &gt; "Schedule". You can review and edit your DNN scheduling task there.&lt;/span&gt;</description><pubDate>Thu, 26 Feb 2009 16:53:32 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>How can I remove Line Spacing in text/html editor in DNN 4.9 ?</title><link>http://www.webhost4life.com/HostingKB/Goto50250.aspx</link><description>Try "Edit Text" in your DNN site. You can find "Basic Text Box" and "Rich Text Editor". By default it uses "rich text editor".&lt;br /&gt;If you want to skip to next line, normally you will press "enter". But the line spacing becomes double.&lt;br /&gt;Expected Result:&lt;br /&gt;line1&lt;br /&gt;line2&lt;br /&gt;&lt;br /&gt;But DNN shows:&lt;br /&gt;line1&lt;br /&gt;&lt;br /&gt;line2&lt;br /&gt;&lt;br /&gt;If you check the source, you will find this&lt;br /&gt;&amp;lt;p&gt; line1 &amp;lt;/p&gt; &amp;lt;p&gt; line2 &amp;lt;/p&gt;&lt;br /&gt;&lt;br /&gt;If you don't want double spacing, please press "shift +   enter" instead of "enter"&lt;br /&gt;</description><pubDate>Thu, 05 Feb 2009 14:01:10 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>How to resolve collation conflict in ASPNETForum?</title><link>http://www.webhost4life.com/HostingKB/Goto50252.aspx</link><description>You could mostly be solved by follow steps:&lt;br /&gt;&lt;br /&gt;1) change database collation to SQL_Latin1_General_CP1_CI_AS via the control panel -&gt; databases -&gt; MSSQL admin&lt;br /&gt;2) connect the database, find stored procedure "Statistics_ResetTopPosters"&lt;br /&gt;3) find and change the code from: &lt;br /&gt;&lt;br /&gt;CREATE Table #Top500Users (&lt;br /&gt;Rank int IDENTITY (1, 1) NOT NULL,&lt;br /&gt;UserName nvarchar(50)&lt;br /&gt;)&lt;br /&gt;&lt;br /&gt;to:&lt;br /&gt;&lt;br /&gt;CREATE Table #Top500Users (&lt;br /&gt;Rank int IDENTITY (1, 1) NOT NULL,&lt;br /&gt;UserName nvarchar(50) collate database_default&lt;br /&gt;)&lt;br /&gt;&lt;br /&gt;reference link:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://forums.asp.net/535822/ShowPost.aspx"&gt;http://forums.asp.net/535822/ShowPost.aspx&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;</description><pubDate>Thu, 05 Feb 2009 13:57:17 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>What to do when my DNN site issues "directory '/App_ANYTHING/' is not allowed" error?</title><link>http://www.webhost4life.com/HostingKB/Goto50251.aspx</link><description>Please check if file PrecompiledApp.config exists in the application folder.  This file tells the compiler the application is precompiled and not supported to run APP folder. Just remove this folder and the site will work.  Also remember to force recompilation by editing web.config (just open and save the file).</description><pubDate>Thu, 05 Feb 2009 13:54:46 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>What to do when my DNN 'forget password function' fail and email log shows authentication fail?</title><link>http://www.webhost4life.com/HostingKB/Goto50249.aspx</link><description>Normally the email address of site admin user is that of user account "admin".&lt;br /&gt;DNN uses that email address to send the "Forget Password" email. If the admin account is using different email address, email authentication will fail.&lt;br /&gt;Therefore you have to use the email address in SMTP authentication as the email address of site admin user.</description><pubDate>Thu, 05 Feb 2009 13:07:31 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>How to solve [DNN Error: Edit Text/HTML is currently unavailable]?</title><link>http://www.webhost4life.com/HostingKB/Goto50248.aspx</link><description>Please find the file controls/texteditor.ascx and edit the follow: change quote from :  &amp;lt;td id=”celTextEditor” Runat=”server”&gt; to &amp;lt;td id="celTextEditor" Runat="server"&gt;</description><pubDate>Thu, 05 Feb 2009 13:05:36 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>what to do when my dnn site shows "Object reference not set to an instance of an object." error?</title><link>http://www.webhost4life.com/HostingKB/Goto50247.aspx</link><description>There could be many different reasons for this error. The most common cause is the application tries to do some initialization from files such as database, xml, text files etc. Usually there are diagnostic messages follow after the error message above, such as sql error if it is database related. Usually it is caused by missing configuration files. Please double check if there are config files that have not yet been uploaded to the site folder.</description><pubDate>Thu, 05 Feb 2009 12:54:57 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>What to do when my dnn site has this error: 『parser error message: the entry 'localsqlserver' has already been added.』?</title><link>http://www.webhost4life.com/HostingKB/Goto50245.aspx</link><description>Since the name "localsqlserver" is already defined in "machine.config' at the server level by default. "web.config" needs to remove this name first by adding the tag &amp;lt; remove name="LocalSqlServer" / &gt; before the same name is redinfed in the web.config file.</description><pubDate>Thu, 05 Feb 2009 12:50:53 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>How to share files in my dnn site?</title><link>http://www.webhost4life.com/HostingKB/Goto50242.aspx</link><description>If you want to share file, you can use the "Document" module, it renders a list of documents, including links to browse ordownload the document. You can share file which inside your DNN or add external link to it.</description><pubDate>Thu, 05 Feb 2009 12:41:50 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>How to configure my dnn site to send mail?</title><link>http://www.webhost4life.com/HostingKB/Goto50240.aspx</link><description>Please make sure you configure the email settings properly within your DNN. Our mail server requires smtp authentication, if it's not configured properly, then it won't send out the email messages.&lt;br /&gt;Go to DNN with host login &gt;&gt; host settings &gt;&gt; advanced settings &gt;&gt; smtp server settings &gt;&gt; SMTP Server&lt;br /&gt;The information required are :&lt;br /&gt;smtp server/host : mail.yourdomainname.com&lt;br /&gt;Type: BASIC (not anonymous or NTLM)&lt;br /&gt;valid email account from yourdomainname.com&lt;br /&gt;and password for the email account.&lt;br /&gt;Make sure the HOST email should be same as the AUTH address. (Depends on which DNN module you are using, some module will use the "admin" user email as from address.)</description><pubDate>Thu, 05 Feb 2009 12:25:17 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>How to use Domain Name with DNN Child Portal?</title><link>http://www.webhost4life.com/HostingKB/Goto50243.aspx</link><description>Log into your DNN site as the Host. &lt;br /&gt;&lt;br /&gt;From the Host menu, choose Portals. &lt;br /&gt;&lt;br /&gt;Select the portal you need to change. At the bottom of the page you should see "portal aliases" section.&lt;br /&gt;&lt;br /&gt;Configure a new alias for that portal to use that URL. In your hosting control panel, point the domain name to the path DNN installation.  It will redirect it to the proper child portal after you have setup the portal alias as described above.&lt;br /&gt;</description><pubDate>Thu, 05 Feb 2009 12:24:16 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>How to remove Webhost4life DNN footer in my dnn site?</title><link>http://www.webhost4life.com/HostingKB/Goto50244.aspx</link><description>Our development team has made great efforts to simplify the whole DNN installation process and now DNN can be installed by just a "few" clicks. The "webhost4life" banner at the bottom of the page is a sign of appreciation to the efforts made by our development team. Our development team welcomes any inquiry you have in the DNN setup and administration.</description><pubDate>Thu, 05 Feb 2009 12:22:20 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>What to do when my dnn site has nothing to show but says "Nothing To Install At This Time" after upgrading from DNN3 to DNN4?</title><link>http://www.webhost4life.com/HostingKB/Goto50246.aspx</link><description>Please add the tag  &amp;lt;add key="InstallationDate" value="11/18/2005" /&gt; in web.config under "&amp;lt;appSettings&gt;" section.</description><pubDate>Thu, 05 Feb 2009 12:19:24 GMT</pubDate><dc:creator>Mark</dc:creator></item><item><title>What to do when editing DNN blog module it returns: Error: Edit Entry is currently unavailable?</title><link>http://www.webhost4life.com/HostingKB/Goto50238.aspx</link><description> The reason for this error is because there is an invalid character located in the file EditEntry.ascs. You can fix the issue with the steps below: &lt;br /&gt;&lt;br /&gt;1) Open DesktopModules\Blog\EditEntry.ascx &lt;br /&gt;2) Look for the string "ResourcêKey" around Line 21&lt;br /&gt;3) Replace the "ê" with "e" &lt;br /&gt;4) Save and replace the original file&lt;br /&gt;&lt;br /&gt;</description><pubDate>Thu, 05 Feb 2009 12:09:31 GMT</pubDate><dc:creator>Mark</dc:creator></item></channel></rss>