1

I'm trying to install Bonobo Git Server on my local computer. I use windows 8.1 . I've enabled IIS by following this.

And I've followed Bonobo's installation steps ..! I actually stuck on this step:

Convert Bonobo.Git.Server to Application in IIS


When I convert it to application, the result will be just one case:

enter image description here

But seems the right thing should be 3 options after converting: (since it's obvious in their tutorial)

enter image description here


Also when I open this link http://localhost/Bonobo.Git.Server, it will be redirect to http://localhost/bonobo.git.server/Home/Error?aspxerrorpath=/bonobo.git.server/Home/Error automatically. So sounds something went wrong.

Does anybody know what's wrong?

Vampire
  • 35,631
  • 4
  • 76
  • 102
stack
  • 10,280
  • 19
  • 65
  • 117
  • I'm not sure that "Convert Bonobo.Git.Server to Application in IIS" bit is still useful. Have a look in app_data\logs and see if the latest log file shows you anything helpful. – Will Dean May 21 '17 at 08:04

2 Answers2

2

Try installing .NET framework 4.6.(2) Or edit web.config before and change customErrors to RemoteOnly (instead of "On") to see what error exactly you have

vidmak
  • 21
  • 1
  • 3
0

The URL pattern Home/Error?aspxerrorpath is configured in web.config. So

At first, please turn off the custom error in web.config to display the real error:

  <system.web>   <customErrors mode="Off" />  </system.web>

Back to your issue, I guess, you should add the write/read permission to IIS_USER at the /App_Data folder;

Shawn Xiao
  • 560
  • 5
  • 18