I installed the Bonobo Git Server for Windows followed all instructions but instead of being redirected to the home page localhost/Bonobo.Git.Server it instead shows the contents of the application see image below. What did I do wrong and how to fix this ?
Asked
Active
Viewed 4,414 times
5
-
1I rather say you should check the FAQ page which mentions the modules tip I gave you earlier today, and their forum which might also indicate what's up with this. It is very likely that the installation steps missed an `aspnet_regiis` step. – Lex Li Jul 18 '16 at 04:28
-
https://bonobogitserver.com/prerequisites/ check it out and it says all. – Lex Li Jul 18 '16 at 04:37
-
Exactly missed the last step '%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -ir' lesson learned "don't let excitement get the best of me. – TwoThumbSticks Jul 18 '16 at 05:12
2 Answers
4
As sir Lex pointed out I missed a very crucial step in the bonobogitserver.com/prerequisites.
I forgot to register the MVC framework
ASP.NET MVC 4
Don’t forget to register MVC framework with your IIS
I used the command below and fixed the problem
Other - Run
%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -ir with administrator privileges

Community
- 1
- 1

TwoThumbSticks
- 1,086
- 3
- 23
- 38
-
1i tried above method but i still have same problem. i used iis 10 on windows 10 – aminvincent Oct 12 '17 at 09:55
-