Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot Access local Bonobo Git Server home page on IIS

Tags:

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 ?

enter image description here

like image 652
TwoThumbSticks Avatar asked Jul 18 '16 03:07

TwoThumbSticks


1 Answers

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

like image 142
TwoThumbSticks Avatar answered Oct 06 '22 00:10

TwoThumbSticks