By Ian Lackey on
6/18/2009 11:05 PM
During a conversation with Michael, he mentioned that he would like to have Gravatar support in the DNNSilverlightChat module he created. I had recently worked on a project that included supporting the use of Gravatar images next to user comments. The synchronicity was too much for me to stand, and I volunteered to take on the mission. While working on the original project that supported Gravatar images, I had found that Gravatar.com provided an easy way to integrate a user’s Gravatar image into just about any application.
Read More »
|
By Ian Lackey on
6/11/2009 10:11 PM
In this example I will demonstrate how to modify a DotNetNuke 4.x site to use .Net 3.5 by using the ConfigEditor Module in a step-by-step fashion. Before you being please verify that the .Net 3.5 framework is installed on the web server hosting the DotNetNuke installation. Making these changes without .Net 3.5 installed on the web server will crash your site!
1. Download the ConfigEditor module install package from the CodePlex site.
2. Log in as a SuperUser (the default “host” account for example).
3. Select the Module Definitions page from the Host menu.
...
Read More »
|
By Ian Lackey on
6/7/2009 2:37 AM
I had to publish this bit of information, on how to get the Url of the settings page for a DotNetNuke module. Though it may be simple or even common knowledge to many, I could not find it quickly by Googling or Binging (that’s a post all of its own) it. So I decided I would post it just in case someone else was looking for it.
It turns out, it is very easy to generate the Url needed to navigate to the settings page of any given module. In this example I have used an Asp Hyperlink control on a module and set it’s ID to SettingsLink. Then in the code behind I use this code to set the NavigateUrl property to the Url of the settings page:
Me.SettingsLink.NavigateUrl = NavigateURL("Module", "ModuleId", Me.ModuleId.ToString)
You could also do this inline on the module control if you like, which would look something like this:
a href=''>Settingsa>
Using the DotNetNuke.Common.Globals.NavigateURL method makes it very simple to get the Url needed to direct a user to the...
Read More »
|
By Ian Lackey on
6/6/2009 11:52 PM
So, I am just getting into the swing of blogging from Windows Live Writer. In the process, I have been shown and found a few tools that makes this process so much better than how I had blogged in the past.
One of my new favorite tools is this Source Code Formatter plug-in for live writer created by Amer Gerzic. Here is a screenshot of the interface:
And an example of the output:
Public Shared ReadOnly Property AddCommentFormLocation() As String...
Read More »
|
By Ian Lackey on
6/4/2009 11:59 PM
After running into the issue more than once of needing to edit the web.config or a remote DotNetNuke installation, I decided to build a simple module to do just that. Most recently I have came into this issue with upgrading a site to use .Net 3.5 without have FTP access to the site. I used LinqPrep to do most of the heavy lifting and then used the ConfigEditor to tidy up a few spots. The combination of these two modules made the process quick and painless. I understand that the 5.x release of DotNetNuke has an option to upgrade the installation to 3.5 using a Host Setting. However, I am sure there are many of us that will be managing sites on a 4.x release for sometime into the future.
If this happens to describe your circumstances or you would like to change some of the provider settings in the default configuration, add or edit appSettings or...
Read More »
|