Get your server issues fixed by our experts for a price starting at just 25 USD/Hour. Click here to register and open a ticket with us now!

Author Topic: 503-Internal Server Error – The Module DLL Failed to Load  (Read 4480 times)

0 Members and 1 Guest are viewing this topic.

jominj

  • Guest
503-Internal Server Error – The Module DLL Failed to Load
« on: December 31, 2013, 09:59:19 pm »
Some times we may get an error like this 503-Internal Server Error, if check event viewer it will show
The Module DLL C:/Program Files/IIS/Advanced Logging/ClientLoggingHandler.dll failed to load. The data is the error. The Module DLL C:/Program Files/IIS/Advanced Logging/AdvancedLoggingModule.dll failed to load. The data is the error.

Both the DLL’s which were mentioned in the Event we present in respective Directories but still IIS was not able to detect them. So, to fix the issue

1) Copy “C:/Program_Files/IISAdvanced_Logging/ClientLoggingHandler.dll” and “C:/Program_Files/IIS/Advanced_Logging/AdvancedLoggingModule.dll” to %windir%/System32/

2) Edit C:/Windows/System32/netsrv/config/applicationHost.config and Search for following Lines
add name=”ClientLoggingHandler” image=”%ProgramFiles%/IIS/Advanced Logging/ClientLoggingHandler.dll” add name=”AdvancedLoggingModule” image=”%ProgramFiles%/IIS/Advanced Logging/AdvancedLoggingModule.dll”
and change it to
add name=”ClientLoggingHandler” image=”%windir%/System32/ClientLoggingHandler.dll” add name=”AdvancedLoggingModule” image=”%windir%/System32/AdvancedLoggingModule.dll”
3) Restart IIS