Loading, please wait.
From the monthly archives: August, 2010
We are pleased to present below all posts archived in 'August, 2010'. If you still can't find what you are looking for, try using the search box.
We just successfully upgraded our blogging platform website from DotNetNuke version 05.01.00, to version 05.05.00. So far, so good. We finally upgraded to dnn v5.5 because this fantastic release includes lots of stabilization and new killer features, especially content localization and enhanced performance, which are what we were looking forwards to.
Another good news is that our Ultimate Blogging Module - SunBlogNuke also have been fully tested with DotNetNuke 5.5. We are not aware of any issues at this time and it just work as we expected. Later we will release a new building v3.7.5 with fixing some more bugs and issue. Hope it makes sense for you.
Enjoy Blogging and Writing. :)
As you know, we recently released Ultimate DNN Blog Module – SunBlogNuke v3.7.x with some enhancements and small fixes, including code refactoring. When you would like to upgrade this version, please note that if you had developed any customized theme ever you MUST modify all view files lightly, including BasicView.ascx, DetailView.ascx, CommentView.ascx, TagsView.ascx, SearchView.ascx, and PrintView.ascx. Just follow the two steps below:
- Find out your customized theme folder which should be placed in the $YourRoot/DesktopModules/SunBlog/Themes/YourCustimizedTheme/.
- Open up the BasicView.ascx, find the first line declaration and modify it like that:
Original:
<%@ Control Language="vb" AutoEventWireup="false" EnableViewState="false" Inherits="DnnSun.SunBlogNuke.Framework.PostViewBase" %>
Modified:(yes, it is so easy and just modify "Framework" into "UI".)
<%@ Control Language="vb" AutoEventWireup="false" EnableViewState="false" Inherits="DnnSun.SunBlogNuke.UI.PostViewBase" %>
- Like the step 2), check out whether there is declaration about Toolkit. If exists, modify it like that:
Original:
<%@ Register TagPrefix="toolkit" Namespace="DnnSun.WebControls.Toolkit" Assembly="DnnSun.Modules.SunBlogNuke" %>
Modified:(You should notice that just modify "DnnSun.Modules.SunBlogNuke" into "SunBlogNuke.Core".)
<%@ Register TagPrefix="toolkit" Namespace="DnnSun.WebControls.Toolkit" Assembly="SunBlogNuke.Core" %>
The same process for the other view files.
In the end, make sure you MUST follow the tutorial if you had developed any customized theme ever, otherwise you will encounter the error like "Could not load type 'DnnSun.SunBlogNuke.Framework.PostViewBase'.". When you visit your good main blog page in your dnn website. If not just skip it :) Hope it makes sense for you.
The vast amount of cool customizations maybe one of the reasons why people choose Ultimate DNN Blog Module - SunBlogNuke instead of using other blog services basing on DotNetNuke platform. Today what I would like to show you one of those cool things is tag cloud widget.
Read the rest of entry »
Refer to the last tutorial about how to implement a customized calendar date in the Content Slider Widget of Ultimate DNN Blog Module – SunBlogNuke v3.6.x or later version, today we continue to share a more awesome code sample for you and it indeed works well in our home page. As you go ahead do some customizations basing on SunBlogNuke, like the must-have widget module – Content Slider Widget, you will understand what the cool extendibility and flexibility our blogging modules supply for your dnn website. Firstly take a look at the screenshot below:

Read the rest of entry »