|
|
Posted 02/05/2005 10:58:51 |
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 04/05/2005 15:53:20
Posts: 1,
Visits: 6
|
|
I'm trying to get both the KB and DNN to live on the same server, but when I install the KB as a sub-folder and go to it I recive this error! Any help would be most helpful!
Thanks!
Server Error in '/kb' 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.
P***r Error Message: ?
Source Error:
Line 32: Line 33: Line 34: Line 35: Line 36:
Source File: C:\DNN\DNN\DotNetNuke\web.config Line: 34
Assembly Load Trace: The following information can be helpful to determine why the assembly 'DotNetNuke.HttpModules.UrlRewrite' could not be loaded.
=== Pre-bind state information === LOG: DisplayName = DotNetNuke.HttpModules.UrlRewrite (Partial) LOG: Appbase = file:///C:/Inetpub/KB 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.HttpModules.UrlRewrite LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/kb/a4a31214/58b44970/DotNetNuke.HttpModules.UrlRewrite.DLL. LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/kb/a4a31214/58b44970/DotNetNuke.HttpModules.UrlRewrite/DotNetNuke.HttpModules.UrlRewrite.DLL. LOG: Attempting download of new URL file:///C:/Inetpub/KB/bin/DotNetNuke.HttpModules.UrlRewrite.DLL. LOG: Attempting download of new URL file:///C:/Inetpub/KB/bin/DotNetNuke.HttpModules.UrlRewrite/DotNetNuke.HttpModules.UrlRewrite.DLL. LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/kb/a4a31214/58b44970/DotNetNuke.HttpModules.UrlRewrite.EXE. LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/kb/a4a31214/58b44970/DotNetNuke.HttpModules.UrlRewrite/DotNetNuke.HttpModules.UrlRewrite.EXE. LOG: Attempting download of new URL file:///C:/Inetpub/KB/bin/DotNetNuke.HttpModules.UrlRewrite.EXE. LOG: Attempting download of new URL file:///C:/Inetpub/KB/bin/DotNetNuke.HttpModules.UrlRewrite/DotNetNuke.HttpModules.UrlRewrite.EXE.
-------------------------------------------------------------------------------- Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NET Version:1.1.4322.573
-Gj-
Who is John Galt? -- Ayn Rand
|
|
|
|
Posted 30/09/2005 04:45:19 |
|
|
Junior Member
      
Group: Customers
Last Login: 18/11/2008 22:07:22
Posts: 20,
Visits: 207
|
|
| Hi Gjeret, It is certainly possible to run InstantKB together with DotNetNuke (I have it running on my own site). What you are experiencing is web.config inheritance (the web.config from InstantKB inherits the settings from your dnn installation because InstantKB is in a subfolder). What you need to do is this : - remove the httpmodules from dnn for the InstantKB installation by editing the web.config in the InstantKB directory like this : <?xml version="1.0" encoding="UTF-8" ?><configuration> <!-- For InstantKB.NET specific application settings please see InstantKB.config --> <system.web> <httpModules> <remove name="UrlRewrite" /> <remove name="Exception" /> <remove name="UsersOnline" /> <remove name="ProfilePrototype" /> <remove name="AnonymousIdentificationPrototype" /> <remove name="RoleManagerPrototype" /> <remove name="DNNMembership" /> <remove name="Personalization" /> </httpModules> .... ....
</configuration>
Then you need to copy all the dll's for the httpmodules to the InstantKB's bin directory (yes, despite the fact that you removed them in the web.config). Then it should work, if not, let me know. Geert Veenstra DotNetNuke Core Team Member http://www.cyberhuis.com
|
|
|
|