*
*
*
*
ArchiveRegister | Login 
Viewing Category

Current Articles | Categories | Search | Syndication

Articles from DotNetNuke
Tuesday, February 28, 2006
What modules are you using?
By Richard Edwards @ 3:00 AM :: 800 Views :: 0 Comments :: :: DotNetNuke, How-To
Here is a quick script to determine the modules you are using and in which portals. You can run this in the Host|SQL module or download the free SQLView module and plunk it on your own admin page.

SELECT     dbo.DesktopModules.FriendlyName, dbo.Portals.PortalName, count(*) [Times Used]

FROM         dbo.Modules INNER JOIN
                      dbo.Portals ON dbo.Modules.PortalID = dbo.Portals.PortalID INNER JOIN
                      dbo.ModuleDefinitions ON dbo.Modules.ModuleDefID = dbo.ModuleDefinitions.ModuleDefID INNER JOIN
                      dbo.TabModules ON dbo.Modules.ModuleID = dbo.TabModules.ModuleID INNER JOIN
              dbo.DesktopModules ON dbo.ModuleDefinitions.DesktopModuleID = dbo.DesktopModules.DesktopModuleID
        
WHERE     
    -- filter out deleted modules
      (dbo.Modules.IsDeleted = 0)
    and
    -- filter out the admin modules
      (dbo.DesktopModules.IsAdmin = 0)

GROUP BY dbo.DesktopModules.FriendlyName, dbo.Portals.PortalName

Monday, January 30, 2006
Creating a DotNetNuke module for Absolute Beginners
By Richard Edwards @ 3:00 AM :: 1308 Views :: 0 Comments :: :: DotNetNuke, How-To
Just wanted to point out a very good article on creating a DotNetNuke Module if you are new to DotNetNuke. You can find it here.
Read More..
Tuesday, December 06, 2005
Intermodule Communication (IMC) Example in C#
By Richard Edwards @ 3:00 AM :: 2059 Views :: 7 Comments :: :: DotNetNuke, How-To
I just posted another example of Intermodule Communication for DotNetNuke. This one is a port of the original but in C# for all you bracket lovers :)  Thanks go out to Kevon Houghton who found the original VB code on this site and wanted to give something back.
Read More..
Sunday, November 13, 2005
File Upload Problems in DNN 4.0
By Richard Edwards @ 8:10 AM :: 1435 Views :: 0 Comments :: :: DotNetNuke

Since the release of DNN 3.2 and DNN 4.0, I have been testing all of my modules. Everything worked as planned except I was having troubles uploading the Aggregator and Module Rotator module in DNN 4.0. The error I was getting was  ExceptionSystem.ObjectDisposedException: Cannot access a closed file. at System.IO.__Error.FileNotOpen(). The solution that seems to work is to add the requestLengthDiskThreshold attribute to the httpRuntime in web.config.

 requestLengthDiskThreshold="8192" />

Since getting that upload problem worked through, I've been able to test in DNN 4.0 and all of the modules are working fine. If anyone has a problem installing anything, please provide details and post in the forums and we'll see what we can do to help you out.

 

Monday, November 07, 2005
DotNetNuke 3.2 & 4.0 Released
By Richard Edwards @ 11:27 PM :: 729 Views :: 0 Comments :: :: DotNetNuke
DotNetNuke 3.2 and 4.0 have just been released. I will be evaluating them over the next week and testing compatibility with the current DNNStuff offerings. Stay tuned here for more information.
Thursday, June 09, 2005
DotNetNuke 3.1 has been released
By Richard Edwards @ 10:23 AM :: 1010 Views :: 0 Comments :: :: DotNetNuke
I was just over at the DotNetNuke home site and it looks like DotNetNuke 3.1 has been released for download. I really like the updates they've made to their site skin as well. I hope this skin is included in the core download. It finally looks professional enough that I feel more comfortable sending potential clients to the site to take a look. If you want to take a look at the change log for 3.1, check out this page.
Wednesday, May 11, 2005
HOWTO: Using TabIndex to skip the DNN:Label tabstop in Firefox
By Richard Edwards @ 11:03 AM :: 934 Views :: 2 Comments :: :: DotNetNuke, How-To
One of the thing that has been causing me a little grief with the new DNN:Label control was that in FireFox, when a user is tabbing through the fields, it will stop at each label control help (?) instead of moving to the next input control. You may have noticed this yourself when logging in. Initially the focus is on the UserName help icon and not the username field and when you tab it moves to the password help icon and not the password field.

The workaround for this is to include a TabIndex="1" (or another sequential number if you want to provide other than default tabbing) for all your input controls and tabbing will conveniently skip the DNN Label control and behave in a more consistent manner across IE and Firefox.

Core team: It would be nice if you could change this in the Login dialog so I don't have to keep editing it manually Wink [;)]
Tuesday, April 26, 2005
DotNetNuke Intermodule Communication Example (IMC)
By Richard Edwards @ 8:03 AM :: 1454 Views :: 4 Comments :: :: DotNetNuke, How-To
I posted a quick example of how to implement Intermodule Communication using DotNetNuke 2 including source and private assembly. No registration required.
Sunday, March 13, 2005
DotNetNuke 3.0 Officially released
By Richard Edwards @ 11:54 AM :: 855 Views :: 0 Comments :: :: DotNetNuke
Well the day is finally here that we've all been eagerly awaiting. This weekend, the beta period for DotNetNuke is over and it is now officially launched. Congratulations to all of the members of the core team and everyone who had a hand in testing and reporting bugs to make this a reality.
Wednesday, March 09, 2005
HOWTO: Accessing DNN Profile Data using T-SQL
By Richard Edwards @ 8:41 PM :: 6346 Views :: 11 Comments :: :: DotNetNuke, How-To

In the move to DotNetNuke 3.x, the core team has decided to support the new membership provider API that Microsoft is introducing in ASP 2.0. The new model brings enhanced functionality and extensibility to DotNetNuke, but it also removes much of the profile data from the Users table to a new table named aspnet_Profile. This has essentially removed access to this data from SQL queries and joins because it is no longer stored in individual fields like in DNN 2, but now resides in a blob type field instead. This article will show you how to get it back !

Read More..
Wednesday, February 23, 2005
DotNetNuke 3.0.11 Beta available
By Richard Edwards @ 9:44 PM :: 611 Views :: 0 Comments :: :: DotNetNuke
DotNetNuke 3.0.11 has been posted for download. This release will be the last BETA release before DotNetNuke 3.0 FINAL.
Tuesday, February 08, 2005
DotNetNuke 3.0.10 Beta is now available
By Richard Edwards @ 9:12 AM :: 567 Views :: 0 Comments :: :: DotNetNuke
DotNetNuke 3.0.10 has been posted for download. This release contains a number of significant performance enhancements as well as stabilization improvements over the previous BETA release package.
Tuesday, January 25, 2005
DotNetNuke 3.0.9 Beta
By Richard Edwards @ 4:18 PM :: 518 Views :: 0 Comments :: :: DotNetNuke
The newest beta of DotNetNuke 3 is up for grabs.
Friday, December 10, 2004
DotNetNuke 3.0.7 Beta Released
By Richard Edwards @ 11:25 AM :: 585 Views :: 0 Comments :: :: DotNetNuke
Another beta of DotNetNuke is out today, quickly on the heels of the last one. New in this release is a new default skin.
Wednesday, December 08, 2004
DotNetNuke 3.0.6 Public Beta 3
By Richard Edwards @ 10:44 AM :: 558 Views :: 0 Comments :: :: DotNetNuke
The newest beta of DotNetNuke 3 is available. You can check out the change log and road map to see what was fixed.
Friday, November 26, 2004
DotNetNuke 3.0.5 Public Beta 2
By Richard Edwards @ 3:58 PM :: 614 Views :: 0 Comments :: :: DotNetNuke
The second public beta of DNN 3.0 just came out of the oven. Get it while it's hot!
Sunday, November 21, 2004
DotNetNuke 3.0 Public Beta Released!
By Richard Edwards @ 9:20 AM :: 472 Views :: 0 Comments :: :: DotNetNuke

Well, it was a little off target but the first public beta of DotNetNuke 3.0 (3.04 actually) is finally out. I've been testing the previous betas in the 30 for 3.0 program and I can tell you first hand that the core development team has done a fantastic job in moving this ahead. There are many, many enhancements for both users and developers in this release.

I will post updates to all my components as soon as I can. Because of the namespace changes and other things, none of the 2.x components you have will work in DNN 3.0 without changes.

 

Wednesday, November 17, 2004
FreeTextBox 3.0 - Release Candidate available
By Richard Edwards @ 11:16 AM :: 610 Views :: 0 Comments :: :: DotNetNuke
Well, it looks as though the FreeTextBox 3.0 Release Candidate is available for download now. This is a completely rewritten version and is purported to be faster and includes the image gallery. Amen!
Sunday, November 07, 2004
DotNetNuke 3.0 ERD Diagram
By Richard Edwards @ 9:25 PM :: 1096 Views :: 0 Comments :: :: DotNetNuke
An ERD diagram of the soon to be released DotNetNuke 3.0 can be found here.
Tuesday, October 12, 2004
DotNetNuke 3.0
By Richard Edwards @ 10:14 AM :: 544 Views :: 0 Comments :: :: DotNetNuke

Well, it looks as though the next version of DotNetNuke will be a major release instead of a point release and will be version 3.0 instead of 2.2.

Here are a few links to whet your appetite.

DotNetNuke 3.0 - Announcement
DotNetNuke 3.0 - Breaking Changes for Module Developers

Friday, October 08, 2004
Microsoft ASP.NET ValidatePath Module
By Richard Edwards @ 11:18 AM :: 397 Views :: 0 Comments :: :: DotNetNuke

Microsoft has released an ASP.NET HTTP module that Web site administrators can apply to their Web server. This module will protect all ASP.NET applications against all potential canonicalization problems known to Microsoft.

You can get this patch here.

Tuesday, October 05, 2004
DotNetNuke 2.2 Screen Snaps
By Richard Edwards @ 3:10 PM :: 471 Views :: 0 Comments :: :: DotNetNuke
Here's a few screen snaps of DotNetNuke 2.2
Tuesday, October 05, 2004
DotNetNuke 2.2 Release News
By Richard Edwards @ 1:59 PM :: 457 Views :: 0 Comments :: :: DotNetNuke

From Scott McCullough, a member of the DotNetNuke team.

No guarantees, but :-

We have given ourselves a "code complete" date of October 15 and an initial release date of November 1. From 10/15 - 11/1 we'll be in full-tilt-debugging and fixing mode!

Wednesday, September 15, 2004
Upgrading to DotNetNuke 2.1.2
By Richard Edwards @ 8:12 AM :: 1128 Views :: 0 Comments :: :: DotNetNuke, How-To

Last night I decided to bite the bullet and upgrade to DotNetNuke 2.1.2. Everything went pretty smoothly so I decided I would share my approach. If you notice anything odd with the site, please let me know at support@dnnstuff.com

Read More..
Monday, July 19, 2004
DotNetNuke 2.1.2 Authentication Beta 2 Released
By Richard Edwards @ 12:49 PM :: 863 Views :: 0 Comments :: :: DotNetNuke

ADSIAdmin: ADSI Settings interface & all functions for DotNetNuke authenticated with Windows network. The component is released with full source code

ADSIImport: Import users/groups from Windows Active Directory into DNN database.

These features are implemented in a separate custom module (private assembly). Supports User Principal Name (UPN) format when user logon in Form Authentication against AD mode. Option for admin to choose if user's group membership to be synchronized anytime user logs on.

Register first at TTT Company and then you will have download access.

 

Sunday, June 20, 2004
Photo Album 1.03 Released
By Richard Edwards @ 8:40 AM :: 976 Views :: 0 Comments :: :: DotNetNuke
John Cooper has released a new version of his Photo Album module. I'm using an earlier version over at Trillium Wood in the Course Info page. A very slick and easy to use module.
Friday, June 11, 2004
HOWTO: Add A Menu Break To The Action Menu
By @ 8:28 AM :: 723 Views :: 0 Comments :: :: DotNetNuke, How-To

OK, so admittedly calling this one a “HOWTO” may be giving the snippet delusions of grandeur. At best, it's a tip -- at worst, it's something self-evident that everybody knows already :)

However, since I had to look it up I thought I might save at least one other person the trouble. To add a menu break (those little horizontal separator bars you see in regular Windows menus) to an Action menu, just do the following:

With MyBase.Actions
.Add(GetNextActionID, "~", "")
End With

Thursday, June 10, 2004
HOWTO: Handling Module Action Menu Events
By @ 2:16 PM :: 1424 Views :: 0 Comments :: :: DotNetNuke, How-To

A quick example of the trivial syntax for handling Action menu events in the same module in which they're raised, without having to dig through the core to figure out how.

Read More..
Wednesday, June 09, 2004
DotNetNuke Skinning Contest
By Richard Edwards @ 8:05 AM :: 658 Views :: 0 Comments :: :: DotNetNuke
Try your hand at a new skin and win prizes at the skinning contest.
Wednesday, June 09, 2004
DotNetNuke 2.1.1 Install Problems
By Richard Edwards @ 8:01 AM :: 526 Views :: 0 Comments :: :: DotNetNuke

There seems to be a bit of a boggle with the 2.1.1 release. A binary incompatibility with HostSettings is causing some PA's built against earlier versions to have problems with the newest release. Wait until the patch comes out in a couple days to upgrade your sites. It's probably not a bad idea to wait a week or so after any of these releases before upgrading any live sites just in case. Here are the details.

Tuesday, June 08, 2004
DotNetNuke 2.1.1 now available
By Richard Edwards @ 8:59 AM :: 692 Views :: 0 Comments :: :: DotNetNuke

DotNetNuke 2.1.1 is now available at the mothership. To get the latest release either register or log in with your current username and password and go to the download section.

There are some nice new features in this new version including Event Logging, Rich Text Editor mods, Scheduler and System Messages. I'll be looking into these more thoroughly as I upgrade the site to the new version.

Copyright (c) 2005-2008 DNNStuff
*
Terms Of Use   Privacy Statement