I'm running a server with IIS 6.0 that now has multiple web applications that are Telerik Web Applications. I just tried to do my initial deployment of the second application and started getting this error from the web.config
I have each site running in it's own individual app pool. How else am I supposed to separate these sites to not get this error? Currently I can get around it by just commenting out the httpModules from the one config since I'm not taking advantage of it in both sites but I would like this fixed before I want to use the functionality in both.
| 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: The entry 'RadUploadModule' has already been added. |
| Source Error: |
| Line 203: <httpModules> |
| Line 204: <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> |
| Line 205: <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI, Version=2009.2.826.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" /> |
| Line 206: <add name="RadCompression" type="Telerik.Web.UI.RadCompression, Telerik.Web.UI, Version=2009.2.826.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" /> |
| Line 207: </httpModules> |
I have each site running in it's own individual app pool. How else am I supposed to separate these sites to not get this error? Currently I can get around it by just commenting out the httpModules from the one config since I'm not taking advantage of it in both sites but I would like this fixed before I want to use the functionality in both.