SunBlogNuke Team Blog

Share you with any news or development process about our dnn modules, such as status or release notes.

First time here? You may want to check out the blog archives, subscribe to the RSS feed, sign up for free email updates, or follow me on Twitter. Thanks for visiting!

Posts Tagged 'dnn6'

We are pleased to present below all posts tagged with 'dnn6'. If you still can't find what you are looking for, try using the search box.

Customized DNN Forum Project Launched

After the acquisition of Active Modules by DNN (formerly DotNetNuke) Corp, the position of original Forum module had been replaced by the Active Forums Module and the status of development looks stopping currently. No any updates or activity – in my opinion, it will be dead in the end later. Unfortunately, some our websites are still building by DNN Forum Module and we don’t want to switch it to Active Forums Module because its features are enough for us and changing will be a potential risk with time or more works.

Actually it may be a great opportunity to get started a totally new/customized project for DNN Forum. We just want to make it live always and are able to add new features or enhance some pending issues. Well, let us get ahead. We will launch the customized forum project in GitHub(DNN Core Framework had been moved to GitHub, as share in this post DNN Nightly Builds) and it will be Open Source Project always there.

Highlights in the initially building:

  • Added new theme called "FlatBlue" and made it as default theme.
  • Removed multiple post view and only thread detail view without paging.
  • Supported quick reply with Markdown format,
  • Clean UI/coding optimization, such as removing unnecessary table/tr/td tags.
  • Supported relative time to make it look friendly.
  • Fixed avatar issue when current user without any specific profile avatar - never upload it.
  • Fixed issue where meta description with line or whitespace.

You can take a look at how it action here – Forum Community for SunBlogNuke.

All right, if you want to have any thoughts about this topics, such as advices about this behavior, sponsor us with buying coffee for us, please feel free to let us know. Thanks a lot.

What is DNN Forum Project?

DotNetNuke® Forum is a full featured module used for managing forums and email notification of posts on your DNN site.

DotNetNuke® Forum in CodePlex

Ever Official website of DotNetNuke Forum Project

Why Mega Menu Not Work in DNN6

Yesterday I encountered one strange behavior on DNN 6.2.9 -   DNN Mega menu dropdown is only visible to work when I login with admin/host account but the registered users doesn't see it. In the first looks, it should be caused by some jQuery plugin not registered correctly. After investigation a while, we found that the jQuery hoverIntent is the problem and we have to manually register it in our skin in default. Some code snippets below looks helpful:

 <script runat="server">
    protected override void OnInit(EventArgs e)
    {
      DotNetNuke.Framework.jQuery.RequestRegistration();
      
      if(!Request.IsAuthenticated)
      {
         var scriptPath = ResolveUrl("~/Resources/Shared/Scripts/jquery/jquery.hoverIntent.min.js");
         //for mega menu we need to register hoverIntent plugin, but avoid duplicate registrations 
         Page.ClientScript.RegisterClientScriptInclude("hoverintent", scriptPath); 
      }
      
      base.OnInit(e);
    }
 </script>

However, there is an elegant workaround to fix this issue – the core jQuery skin object is your better choice. 

<%@ Register TagPrefix="dnn" TagName="JQUERY" Src="~/Admin/Skins/jQuery.ascx" %>
<dnn:JQUERY ID="dnnjQuery" jQueryHoverIntent="true" runat="server" />

The following properties for the skin object can be set to True/False (False by default):

  • DnnjQueryPlugins - If true, the dnn plugins used for panels and tabs will be loaded in addition to jQuery and jQueryUI.
  • jQueryHoverIntent - If true, the HoverIntent script used for tooltips will be loaded in addition to jQuery.
  • jQueryUI - If true, jQueryUI will be loaded in addition to jQuery.

Resources links:

Reusable DotNetNuke jQuery Plugins

http://www.dnnsoftware.com/wiki/Page/jQuery

SunBlogNuke 6.0 Technology Preview

SunBlogNuke v6.0

I’m pleased to announce that the SunBlogNuke 6.0 Technology Preview is now available for download. Keep in mind that this is not intended to be a production quality release.  You are sure to find many bugs and features that are not ready for prime-time.  The purpose of a release like this is to have an opportunity to collect feedback about new features.  This is especially important when we are building new features that impact the overall user experience and interface.  Continue reading to learn more about some of the exciting new features coming in SunBlogNuke 6.0.

Integrated with Journal Module in DNN 6.2

Get Social with DNN Blog

As you know, the DNN 6.2 Social API enables developers to write applications that access and control the activity feed, user relationships, social groups, user profiles and notifications. Quickly these are modules (not distributed with the core) that are integrated with new 6.2 features (relationships, journal, notifications, services framework, etc.), such as Active Forums 5.0 & DotNetNuke Q&A 1.x. Now our ultimate dnn module - #SunBlogNuke will be one member to embrace those social features, especially for the journal activity stream. Let us go through how to apply it now.

Premier DNN Article/News Module - SunBlogNuke v5.2

I hope everyone is having a good morning! Today we are glad that SunBlogNuke v5.2 is available for free upgrade, which is totally compatible with new generation DotNetNuek 6.2. Following the social trend of dnn core framework, we also embraced Social Networking features and implemented social aware application with SunBlogNuke. In this building, we introduced lots of bigger changes, such as implemented "Post Thumbnail" feature & integration with our brand new gallery module - GalleryPlus, supported Open Graph meta tags & more popular social services, added ability to tweet your post status etc. Now let us dive into details about those fantastic changes.

Upgrade SunBlogNuke.com with DNN 6.1.5

Upgrade_dnn6_blog_module

As Day of DotNetNuke Charlotte 2012 coming soon and the dnn 6.2 will be released in May 15. We would like to be ready for this important updates with a ton of new capabilities, more excellently for us is that it includes two huge areas:  social and service framework. In order to make everything run well, yesterday we began to upgrade our dnn website sunblognuke.com with stable core framework version 6.1.5 firstly. It took some hours to complete the whole upgrade process, including some fixes & UI adjustments. In this post we will share a bit around the growing pains that were experiences throughout the process and hope it helps with everyone, who also like to upgrade their dnn website.

SunBlogNuke 5.0 Optimization & Better User Experience

sunblognuke v5 for dnn

Finally the SunBlogNuke 5.0 is available to free upgrade today and it will be first version of next generation blog optimized for DNN5 & DNN6. In this building we completed few critical performance optimizations with cache mechanism and enhanced admin panels with uniform UI for better user experience, for example, we provided a new dashboard, which allows you to see the both published and draft posts, categories, tags, and comments pending approval at a quick glance.

Major Highlights in v5.0:

  • ENH - Implemented paging control with better user experience.
  • ENH - Included dashboard panel with lots of awesome widgets, such as Statistics & Quick Press.
  • ENH - Optimized theme configure.
  • FIX - Bookmark not compatible with the latest 'sharethis' widget code.
  • FIX - Update failure on the configure 'Module Extension' panel due to invalid email address field.
  • FIX - Import bug with blogml - views & permalink not updated correctly.

NOTE: from v5.0 the SunBlogNuke will begin to not support dnn4 any more because it will utilize lots of core APIs introduced from DNN5+, such as Taxonomy. If you are still using the dnn4, you don’t have to be worry about it because we will also maintain independent branch of the older version 4.x, which will always be compatible with dnn4 and may be updated with fixes without new features any more.

You can get it here. We hope that with this generation dnn blog module  you can enjoy the blog writing and it will make your life better; plus if you have any good advice about our products, please feel free to leave a comment or contact us.

The SunBlogNuke Team

Ultra DNN Photos Module – Gallery Plus

If you are finding a highlight solution to display pictures on your DNN website, the Gallery Plus module will be exactly what you need. It is ultra photo gallery framework built on top of DotNetNuke(DNN) platform. The aim is to simplify the process of creating professional image galleries and slideshows for the dnn website.  Out of the box, you can manage your albums & photos; plus feel free to build your own customized interface by lots of external resources without any complicated code, such as any jQuery gallery & slider plugin you can find.

SunBlogNuke v4.7.5 Compatible with DotNetNuke 6

SunBlogNuke & DNN6

I hope everyone is having a good morning! Today we are glad that SunBlogNuke v4.7.5 is available for free upgrade, which is compatible with new generation DotNetNuek 6. In this building we just introduced little updated but focus on some issues, such as supported IP field in the comment entity & integrated with Comments+ module seamlessly. As I mentioned in the last post - Important Fixed Version 4.7.2 for SunBlogNuke, in the upcoming v5.0 we will utilize lots of core APIs & awesome features introduced from DNN5+ & DNN6, such as Taxonomy. Hope making it much easier to build and maintain Web sites with our blogging product.

Major Highlights in v4.7.5:

  • ENH - Supported DotNetNuke 6.  (You can see how it action in our new launched website - http://dnnwave.com/Blog.aspx and it works like a charm with Excellent Interface.)
  • ENH - Supported IP field in the comment entity.
  • ENH - Integrated with Comments+ module seamlessly.
  • FIX - Performance issue of Content Slider Widget made website failure.
  • FIX - Metaweblog API not work with Posterous "Autopost" feature.  (Please refer to the tutorial - Autopost Posterous to SunBlogNuke)

You can get it here. Blog your way and enjoy life. :)

The SunBlogNuke Team

Getting Real to SunBlogNuke v4.5

Today we would like to release an enhanced version 4.5 for Ultimate DNN Blog Module – SunBlogNuke. Please feel free to get it for upgrade. In this building we enhanced templates of Content Slider Widget with including new tokens {block:first} and {block:last}. In the meantime, it introduced the "Extra Template" for flexible layouts. The awesome sample is the new tutorial - [Amazing Slide Thumbs with DNN Blog Posts]. More excited stuff is that we began to add comments into the Active Social Journal more than blog posts. You may know that the DNN 6.0 will be converted into C# (DotNetNuke in C#? My Opinion on The Subject and DotNetNuke source in C#. Yeah, Really.). With the trend, our blogging module also embraced C# from this release. We are proud that our team is getting real to the super publishing product for DNN CMS with more flexible capabilities. :) As usual, the more details for all of the changes can be found in the Release Notes. Major Highlights in v4.5: ENH - Enhanced templ ...
Copyright © 2009-2024 Ultimate DNN Blog Module - SunBlogNuke Powered by SunBlogNuke Corp