Search
  
 
Mitchel Sellers' DotNetNuke, .NET, and Other Topics BlogMinimize
 
 
Subscribe To Blog Updates by E-Mail

Current Articles | Categories | Search | Syndication

Articles from February 2007
   
 Installing DotNetNuke 4.4.1 - Clean Install Windows 2000/XP
By Mitchel Sellers on Tuesday, February 27, 2007 @ 1:00 AM
 
  3225 Views :: 8 Comments :: :: DotNetNuke, Tutorials
 
 

This posting is a complete step by step guide for installing DotNetNuke on your local machine using SQL Server Express and running on Windows 2000/XP. This article guides you through the creation of the needed database, user account, virtual directory, and configuration changes to successfully setup DNN 4.4.1. I will be posting a document for installation using Windows Vista and IIS 7 if there is enough demand.

 
 View Full Article... 
   
 Uploading Multiple Images to the Core Gallery at once
By Mitchel Sellers on Monday, February 26, 2007 @ 1:00 AM
 
  417 Views :: 0 Comments :: :: DotNetNuke, Tutorials
 
 
Recently when working with the out of the box gallery module I found that it was very complicated to quickly upload multiple images to the gallery module. I went looking into more detail regarding the base functionality of the gallery module and have created a method to be able to bulk upload images into an album within a gallery. This article explains in detail the steps needed to perform this action.
 
 View Full Article... 
   
 Allowing Users to Edit Their Own Posts (DNN Core Forum)
By Mitchel Sellers on Saturday, February 24, 2007 @ 7:00 PM
 
  243 Views :: 2 Comments :: :: DotNetNuke, Tutorials
 
 
For users to be able to edit their own posts in the DotNetNuke forums module they must be set as a trusted user, regardless if moderation is used within the particular form. It appears that the "Is Trusted" setting performs two tasks. First in moderated forums it allows users to post bypassing the moderation. Secondly it provides users with the "edit" ability for all of their own forum posts. This is done to stop any potential bypassing of the moderation system for users editing their posts as that would fall outside of the current moderation system.
 
 View Full Article... 
   
 Promoting DNN User to Super user
By Mitchel Sellers on Saturday, February 24, 2007 @ 1:00 AM
 
  442 Views :: 4 Comments :: :: DotNetNuke, Tutorials, SQL
 
 
This follow-up post discusses the process to change a user account to a "host" account via SQL. This is a followup from my previous blog regarding creating a DNN Host account via SQL.
 
 View Full Article... 
   
 Creating DotNetNuke Host Account Via SQL
By Mitchel Sellers on Friday, February 23, 2007 @ 1:00 AM
 
  1442 Views :: 12 Comments :: :: DotNetNuke, Tutorials, SQL
 
 
This posting provides a guide on how to create a new host account within DotNetNuke from your SQL Database. This is very helpful if you ever get locked out of your host account for any reason or for all of the new DotNetNuke users that have been having installation problems with the host and admin accounts. NOTE: this is provided for your use at your own risk!
 
 View Full Article... 
   
 Configuring the DotNetNuke Forums Module
By Mitchel Sellers on Friday, February 16, 2007 @ 7:00 PM
 
  761 Views :: 6 Comments :: :: DotNetNuke, Tutorials
 
 

This post provides a step by step instruction to properly configure the DotNetNuke forums module to allow all registered users to post. This article was written to end some confusion regarding the standard DotNetNuke settings and functionality. Please see the entire entry for detail.

 
 View Full Article... 
   
 Upgrading from DotNetNuke 4.3.5 (and other 4.x versions) -> 4.4.1
By Mitchel Sellers on Monday, February 12, 2007 @ 7:00 PM
 
  1636 Views :: 14 Comments :: :: DotNetNuke, Tutorials
 
 
I have been answering a large number of questions regarding upgrading from DotNetNuke 4.3.5 to 4.4.1 and have created this document to outline the process to complete the upgrade. Please note that I am not responsible for any data loss or corruption that might result from an unsuccessful upgrade of DotNetNuke. Also, even though this tutorial is guided towards users of 4.3.5 this should work for any 4.x version to upgrade to 4.4.1, the upgrade process for 3.x users is NOT the same.
 
 View Full Article... 
   
 Changing passwords in ASP.NET 2.0 applications from the database
By Mitchel Sellers on Sunday, February 11, 2007 @ 7:00 PM
 
  1093 Views :: 9 Comments :: :: DotNetNuke, ASP.NET, .NET 2.0
 
 
At one time or another I think everyone has been locked out of a system and not been able to get back in. This can be especially troubling if you happen to be locked out of your administrator account. I have seen many people asking how to reset passwords for the host and admin accounts with DotNetNuke so I thought I would write up some simple instructions on how to change a password via the database for any ASP.NET 2.0 website.
 
 View Full Article... 
   
 Shea Class Action Settlement
By Mitchel Sellers on Monday, February 05, 2007 @ 4:41 PM
 
  238 Views :: 0 Comments :: :: Other (Non Tech)
 
 
I just thought I would make a quick note up here regarding "Shea Class Action Settlement" checks that many individuals have been receiving in the mail over the past few days.

After completeing some research regarding this settlement check I have determined that they are legitimate checks.  The money is being distribuited as part of a settlement in the case of Shea et. al. Vs. Household Bank.  The class action lawsuit was related to finance charges and late payment and over limit fees charged by Household.  If you are a current household card holder I have been informed that you will just notice a credit on your account, if you have closed your account you will receive a "postcard check" in the mail. 

These postcard checks are legitimate and indicate that they are being drawn on a bank account from US Bank!

Here is a link to another blog that is tracking the amounts people are getting back.  So far it appears to be anything from $0.02 - $9.00 depending on the individual!

http://creditsuit.org/credit.php?/blog/comments/wow_2_cents_received_from_shea_class_action_settlement/

 
   
 Importance of the ASP.NET Membership "applicationName" Setting
By Mitchel Sellers on Monday, February 05, 2007 @ 1:00 AM
 
  700 Views :: 0 Comments :: :: DotNetNuke, ASP.NET, .NET 2.0
 
 

One configuration setting that seems to be overlooked frequently with ASP.NET 2.0’s membership provider is the applicationName setting.  This setting is very important if you ever want to move your application from one server to another or if you want to share users between multiple ASP.NET applications.

 

With ASP.NET membership provider stores all user information associated to a specific “Application Id” this application id is created based on the name of the application.  This allows one ASP.NET membership database to support multiple web applications with multiple sets of user identities.  If you omit the applicationName setting the ASP.NET runtime assigns a specific value for the application based on the current installation location/system.  If the application was moved to a different server this value would change.  Therefore, this value should really be set for each application!

 

One benefit of this setting is the ease of use to share user accounts between applications.  If you set the applicationName to the same value for multiple applications their membership providers will pull from the same user database allowing the users to use their same login credentials for both applications.  For more information on membership in ASP.NET 2.0 please see this MSDN Article http://msdn2.microsoft.com/en-gb/library/yh26yfzy.aspx.

 
   
 Windows Vista First Impressions
By Mitchel Sellers on Saturday, February 03, 2007 @ 1:34 PM
 
  259 Views :: 1 Comments :: :: Product Review
 
 
This entry is a detailed recollection of my inital experience with Windows Vista Ultimate and Visual Studio!  As well as an overall review of Vista running on a Tablet PC.
 
 View Full Article... 
   
 DNN Upgrade to 4.4.1 Problems with Compression
By Mitchel Sellers on Thursday, February 01, 2007 @ 1:31 PM
 
  229 Views :: 0 Comments :: :: DotNetNuke
 
 
As I mentioned on my homepage I have upgraded this site to DotNetNuke 4.4.1. Overall this was a very smooth process as the actual upgrad went off without ANY problems!  For those of you not aware, when you are upgrading a DNN site you can place an app_offline.htm file in the root of your DNN Location and it will take your application offline.  This is a VERY important feature for those of us with slow upload speeds to our web hosts!!

Now I will talk about major issues that I managed to create when I changed one setting and enabled one new feature!  After setting up my portal I went in as my host user to Host -> Host Settings.  Under the performance settings section I changed the page state option to "Memory" and then enabled the compression option as well.  After making those settings everything appeared to be working flawlessly, the site was incredibly fast and I was very happy!  That was until I tried to do anything administrative as my admin user or my host user.  I tried editing page, site, and host settings and every time I tried to save them I received "Object reference not set to an instance of an object" 

Since I believed the setting was related to compression I tried to turn it off and was unsuccessful.  I turned to individuals on the DNN Forums and was able to get a hint that I could remove the following section from the HTTP Modules section of the config file. "<ADD name="Compression" type="DotNetNuke.HttpModules.Compression.HttpModule, DotNetNuke.HttpModules.Compression">"  After making this change I went back to my site and logged in as Host.  I restarted the application from the Host Settings page.  After that I went and turned off compression in the settings and also changed the page state to be stored on the page.  After saving these updates I tried once again to edit a page on my portal.  I still received the error I listed above.

Finally I decided that maybe a bad page had been added into the cache, so I then went back to the host settings and cleared the cache!  Now everything is working!!  Hopefully the DNN team will fix the issue soon, but until then I do not reccomend the use of either of those options!!
 

 Add to Technorati Favorites
 Print   
 
  
 
ArchiveMinimize
 
 
 Print   
 
  
 
CategoriesMinimize
 
 
 Print   
 
  
 
DonateMinimize
 
 

Show your appreciation for the content/modules made available by MitchelSellers.com by making a donation. Donations are used to assist with dedicating time to creating free content. 

 Print