1

I am trying to configure Bonobo Git server on a Windows 7 machine followed all the instructions but is encountering a HTTP Error 500.19 at line 53.

I know there is a similar question here but I tried the accepted answer there and still encountering the same issue.

Below is the screenshots of my settings I even ran the command on the accepted answer

DETAILED ERROR PAGE

THE ACCEPTED ANSWER SOLUTION HANDLER MAPPINGS READ/WRITE

THE ACCEPTED ANSWER COMMAND LINE SOLUTION

I FOLLOWED THE INSTRUCTIONS MADE SURE THE APPLIATION POOL RUNNING ON V4

Community
  • 1
  • 1
TwoThumbSticks
  • 1,086
  • 3
  • 23
  • 38

1 Answers1

3

Your error message indicates that the <modules> tag is locked, while the linked thread is for <handlers>. Thus, you should revise the command to unlock the proper tag by replacing the "handlers" part in the command with "modules",

%windir%\system32\inetsrv\appcmd unlock config -section:system.webServer/modules

Pay attention to every details in the error page please, as it is really the most important part of such troubleshooting.

Lex Li
  • 60,503
  • 9
  • 116
  • 147
  • Oh thank you I thought I have read the error codes over and over again but still failed to see the difference. Can you help me modify the script to unlock the tag ? Or is there a way thru the UI interface of IIS? – TwoThumbSticks Jul 18 '16 at 02:24
  • @TwoThumbSticks simply replace the "handlers" part in the command with "modules". – Lex Li Jul 18 '16 at 02:26
  • Accepted the answer the lock issue is resolved thank!. Is it okay if you add the "replace the handlers part in the command with modules" solution to your answer to make it clear for other newbies. – TwoThumbSticks Jul 18 '16 at 02:31
  • @LexLi I am a newbie. I am facing exactly same error. I've tried myself, but failed to fix. Can you help me to write code snip for "replace the handlers part in the command with modules"? – Adrian Rusin Sep 02 '17 at 08:06
  • This is a great resource for similar, but different errors like that: https://blogs.msdn.microsoft.com/webtopics/2010/03/08/troubleshooting-http-500-19-errors-in-iis-7/ – PeterFnet Aug 30 '18 at 18:28