5

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

TwoThumbSticks
  • 1,086
  • 3
  • 23
  • 38
  • 1
    I 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 Answers2

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
0

For me the answer was to Add ASP.NET 4.6 to server features and roles

enter image description here

dangalg
  • 6,398
  • 4
  • 27
  • 37