| | | Viewing Category | |
|
|
|
| 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
|
|
|
|
|
| Tuesday, December 06, 2005 | |
|
| 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 | |
|
| 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
|
|
|
|
|
| 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 | |
|
| Tuesday, February 08, 2005 | |
|
| Tuesday, January 25, 2005 | |
|
| Friday, December 10, 2004 | |
|
| Wednesday, December 08, 2004 | |
|
| Friday, November 26, 2004 | |
|
| 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 | |
|
| Sunday, November 07, 2004 | |
|
| Tuesday, October 12, 2004 | |
|
| 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 | |
|
| 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 | |
|
| 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.
|
|
|
|
|
| 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
|
|
|
|
|
| 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.
|
|
|
|
|
|
|
 |
| | |
|