Tuesday, July 29, 2008

Windows "Mojave" the next Microsoft OS!

Here's a quick "preview" of Windows Mojave, the "next" Microsoft OS. I find this very interesting.

http://www.mojaveexperiment.com/

Friday, July 18, 2008

DotNetNuke Skinning Tutorial Book Review

As a developer one of my greatest areas of weakness is in the area of design. Where I have always been able to make a site functional, my designs have been merely passable.

The author, Darren Neese, takes you from concept to finished product. This book is aimed at beginners, so it is perfect for me, perhaps it will fit your DotNetNuke Skinning needs as well.

First, let me say this, I love DotNetNuke. There, I said it.

Second, I hate skinning DotNetNuke. As a developer that is my weakest area. In fact, to quote Scott Hanselman:

"The difference between a Designer and Developer, when it comes to design skills, is the difference between shooting a bullet and throwing it." - Scott Hanselman with apologies to Larry Miller

DotNetNuke Skinning Tutorial makes the design element of DotNetNuke a little easier. It does not automatically make your designs pretty, but it opens up the mystery of creating a design that is functional and usable.

I must say thanks to PACKT Publishing for continuing to produce books that break down complicated task in a clear and concise way.

If there were one thing that I would add in the next edition of the book, since they use the DotNetNuke Starter Kit install package, is to expose how to install the Starter Kit on Visual Studio 2008, when Visual Studio 2005 is not installed on the PC. I understand that when the book was written VS2008 was not released and by the next release of the book this may be fixed on the DotNetNuke side, but if it is not, there is a small amount of pain to install the package on VS2008.

Since this is my blog, and I have the space to do it here, I'll tell you how to install the Starter Kit on VS2008.

As of DotNetNuke 4.8.4 this issue still exists, the DotNetNuke installation package for the Starter Kit looks for Visual Studio 2005 to make sure that it is installed. They don't look for "At Least" VS2005, they look specifically VS2005. If you try to install the Starter Kit with VS2008 only, like I have on my new laptop, an error occurs because VS2005 is not installed.

The solution to this issue is to install, even if temporarily, the Visual Web Developer 2005. First, it's free, second it's necessary to get the Starter Kit installed.

It's that simple, but it took a little bit of pain, as I mentioned above, to figure that one out.


Thursday, July 3, 2008

DotNetNuke Remember Me Not Working

Well, I had mentioned in one of my last posts that I would be starting to redesign the PMCentersUSA.com website with DotNetNuke. One of the issues that I have run into is that the Remember Me option when logging into the website wasn't working. Or at least it wasn't remembering anything for very long.

This issue can be remedied by modifying the web.config Authentication node. The default setting that you want to change is:

Note: Since this is in the web.config this is not truly a DotNetNuke issue, it is an ASP.Net issue.

timeout="60"
cookieless="UseCookies" />


The default timeout is 60 minutes. You can change the timeout value to be whatever you need it to be. This will allow you to make sure that people can stay logged into your DotNetNuke website for as long as you want them to be.

The following would be the setting if you wanted your users to stay logged in for 2 weeks, similar to the way Yahoo! mail keeps you logged in.


timeout="20160"
cookieless="UseCookies" />


I hope this little tid bit can help you endure that your website keeps users happy.