DNN AND OTHER STARTER KITS

Discussion in 'Third-party applications' started by dcrowder, Jan 20, 2004.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. I have DNN installed at the root of my site and another app folder created to hold the community starter kit but I get an error when accessing the community any body have an explanation as to why.
    the following is the error and the response from DISCOUNTASP .NET

    Server Error in '/CommunityStarterKit' Application.
    > --------------------------------------------------------------------------------
    >
    > Configuration Error
    > Description: An error occurred during the processing of a configuration
    > file required to service this request. Please review the specific error
    > details below and modify your configuration file appropriately.
    >
    > Parser Error Message: File or assembly name DotNetNuke, or one of its
    > dependencies, was not found.
    >
    > Source Error:
    >
    >
    > Line 7: <system.web>
    > Line 8: <httpModules>
    > Line 9: <add name="HTTPHandler"
    > type="DotNetNuke.HTTPHandler, DotNetNuke" />
    > Line 10: </httpModules>
    > Line 11: <!-- set debugmode to false for running application
    > -->
    >
    >
    > Source File: E:\web\dreamweaver\htdocs\web.config Line: 9
    >
    > Assembly Load Trace: The following information can be helpful to determine
    > why the assembly 'DotNetNuke' could not be loaded.
    >
    >
    > === Pre-bind state information ===
    > LOG: DisplayName = DotNetNuke
    > (Partial)
    > LOG: Appbase = file:///E:/web/dreamweaver/htdocs/communitystarterkit
    > LOG: Initial PrivatePath = bin
    > Calling assembly : (Unknown).
    > ===
    >
    > LOG: Policy not being applied to reference at this time (private, custom,
    > partial, or location-based assembly bind).
    > LOG: Post-policy reference: DotNetNuke
    > LOG: Attempting download of new URL
    > file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
    > Files/communitystarterkit/38b4a987/f9e294fa/DotNetNuke.DLL.
    > LOG: Attempting download of new URL
    > file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
    > Files/communitystarterkit/38b4a987/f9e294fa/DotNetNuke/DotNetNuke.DLL.
    > LOG: Attempting download of new URL
    > file:///E:/web/dreamweaver/htdocs/communitystarterkit/bin/DotNetNuke.DLL.
    > LOG: Attempting download of new URL
    > file:///E:/web/dreamweaver/htdocs/communitystarterkit/bin/DotNetNuke/DotNetNuke.DLL.
    > LOG: Attempting download of new URL
    > file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
    > Files/communitystarterkit/38b4a987/f9e294fa/DotNetNuke.EXE.
    > LOG: Attempting download of new URL
    > file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
    > Files/communitystarterkit/38b4a987/f9e294fa/DotNetNuke/DotNetNuke.EXE.
    > LOG: Attempting download of new URL
    > file:///E:/web/dreamweaver/htdocs/communitystarterkit/bin/DotNetNuke.EXE.
    > LOG: Attempting download of new URL
    > file:///E:/web/dreamweaver/htdocs/communitystarterkit/bin/DotNetNuke/DotNetNuke.EXE.
    >
    >
    >
    >
    > --------------------------------------------------------------------------------
    > Version Information: Microsoft .NET Framework Version:1.1.4322.573;
    > ASP.NET Version:1.1.4322.903



    DNN uses HTTP handler to do a lot of stuff, ie. it'll intercept all http traffic.

    If you use DNN, you should put it in a subfolder. If want you put it on the root, you'll need to remove the http handler in your sub application. If you are not sure how to do that, you'll can post to our community forum as this type of issue is outside of our support scope.
     
  2. Bruce

    Bruce DiscountASP.NET Staff

    Are you familiar with how HTTPModule works?

    DNN adds a HTTPHandler module to the application root.

    <add name="HTTPHandler" type="DotNetNuke.HTTPHandler, DotNetNuke" />

    Basically, what this does is that all requests to your application will be intercepted by the HTTPModule.

    So in your situation, the call to the CSK page, eg. /community/default.aspx, will be processed by the DNN HTTPModule instead of the ASP.net processor.

    Refer to this article on how to resolve this matter, http://www.wwwcoder.com/main/DesktopDefault.aspx?tabId=68&mid=407&site=1831&parentid=177

    If you still have problem, you should post your question to the DNN forum, http://asp.net/Forums/ShowForum.aspx?tabindex=1&ForumID=90
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page