Click here to Skip to main content
15,886,036 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
How to fix this error ? when i got this error for iis and dnn configration in windos 7.
HTML
Module         :	IIS Web Core
Notification   :	BeginRequest
Handler        :	Not yet determined
Error Code	   :    0x800700b7
Config Error   :	Cannot add duplicate collection entry of type 'add' with   unique key attribute 'name' set to 'LogoffHandler*'


Config source:

HTML
<add name="LogoffHandler*" path="Logoff.aspx" verb="*" type="DotNetNuke.Services.Authentication.LogOffHandler, DotNetNuke" preCondition="integratedMode" />
Posted
Updated 28-Mar-18 23:26pm

The error means that some layer (probably DNN) already added a handler named LogoffHandler*...For that you may contact DNN support...However if you want to replace the original handler with yours you can use the remove command...(order is important!)
XML
<remove name="LogoffHandler*" />
<add name="LogoffHandler*" ...="" />
 
Share this answer
 
Thank you very much .. you saved my time.
 
Share this answer
 
Comments
Richard Deeming 29-Mar-18 14:05pm    
If you want to reply to a solution, click the "Have a Question or Comment?" button under that solution and add a comment. DO NOT post your comment as a new "solution".

If the solution helped you, you might also consider rating it by clicking on the stars between the word "Rate:" and the "thumbs-up" image. Closer to the "thumbs up" means a better rating.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900