Still Here

February 17, 2009 20:39 by daub815

I haven't disappeared.  I have just been really, really busy.  I have also been working on another portion of my website (a small little playground).  Hence, my previous post about stopping the inheritance of web.config's.  Anyway, I will have an update once work slows down a bit.  Developing all day definitely takes a lot out of you.


Configuring Multiple Applications on GoDaddy and BlogEngine.Net

February 1, 2009 18:54 by daub815

I've searched the Internet high and low to find the answer to this question: how to have multiple applications on GoDaddy with BlogEngine.Net as the root application.  I have finally found the answer, by slowly figuring it out.  First, we need to create a new IIS Application.  So we will go into GoDaddy's IIS Settings under Content:

goDaddyIISSettings

Click OK and wait for GoDaddy to setup your new application.  Once that directory is setup, we need to create a web.config to place in that directory.  To do this, I just opened Visual Studio 2008 and created a new website.  That gives a base to work with.  If you do not have Visual Studio 2008, download the base here. (remember to remove the base_ in the file name)

Now that we have a base, we need to remove some of the role providers and modules that BlogEngine.Net includes.  After line 64 add the following line to remove the RoleManager:

<roleManager enabled="false" cacheRolesInCookie="true">
    <providers>
        <clear/>
    </providers>
</roleManager>

A little further down (line 85 for me), you will see <httpModules>.  This is where we will remove all the http modules from BlogEngine.Net.  Replase the <httpModules> section with this:

<httpModules>
    <remove name="WwwSubDomainModule"/>
    <remove name="UrlRewrite"/>
    <remove name="CompressionModule"/>
    <remove name="ReferrerModule"/>
    <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</httpModules>

Save the file and upload the web.config to the application directory you made earlier.  Now any application in your new application directory including sub directories will use your new web.config.  In case my directions were a bit confusing, here is my completed web.config.  This was really frustrating for me, so I hope it helps someone out there.


New Theme

January 16, 2009 22:26 by daub815

Creating my own theme was going pretty well, but I am not much of a designer.  I am more of a programmer; therefore, I stopped and choose my favorite theme  in the recently released Theme Pack.  So in the recent weeks expect new programming items and modifications to this theme.  First, I need to remove that flower in the upper-left.


Huge Update

January 9, 2009 22:11 by daub815

After about 6 hours, I have a very nice looking website.  I still have some more updates before I can submit the theme, but it is getting there.  Most of my time was spent debugging my issues with the Syntax Highlighter.  Most of the errors were my own fault, but BlogEngine.Net and  jQuery sometimes doesn't play nice together especially with paths.  In addition, I added faviconizing script, but I do not know how much of a fan I am of it.  Either way, this is a great start.  In addition, my old website has been replaced because I was confident in this update and path issues.


BlogEngine 1.4.5 RSS Issue

January 8, 2009 20:42 by daub815

I tried to add FeedBurner with my new blog website.  However, there was a big error: Specified argument was out of the range of valid values. Parameter name: utcDate.  How nice?  Well, I did some googling and found this answer (Thanks krishnan).  However, the answer was a bit vague as to when the bug fix occurred, so I did some investigating.

The error usually occurs when the hosting server is not in the same time zone as the blogger (i.e. me = East Coast and GoDaddy = West Coast).  That means the server offset time is usually +2, so the posts appear right to the blogger. 

More...

Minor Updates

January 8, 2009 19:54 by daub815

I added some minor updates to some images (opml and rss icons).  In addition, I have added some people to my blogroll: Bill and Scott.  In addition, I have added some styling to the recent posts and comments widgets.  However, I do not have those widgets displayed.  Once I am complete with the theme (aka skin everything), I plan on posting it to BlogEngine.Net and hopefully get it included in the theme pack.  Then I will heavily modify the code behind because there are a number of annoyances:

  • RecentComments and RecentPosts - both need a space
  • Change the output of some of the widgets
  • Move the rss links around

Until next time.