Re: Something broke! (Error 500) after adding new Git repository

2009-08-10 Thread Scott Ferguson
I'm also having this same issue. Could you please elaborate on the fix? On Jul 14, 5:57 pm, wezyde wes.bill...@gmail.com wrote: Looks like it was an error in the paths.  I had to enter some additional information in the mirror and also create a new local clone. Working now though. Thanks

Re: Something broke! (Error 500) after adding new Git repository

2009-08-06 Thread Ben
Hi there, what was the fix you did for this? I currently have exactly the same issue and cannot make it work correctly. On Jul 14, 11:57 pm, wezyde wes.bill...@gmail.com wrote: Looks like it was an error in the paths.  I had to enter some additional information in the mirror and also create a

Re: Something broke! (Error 500) after adding new Git repository

2009-07-14 Thread Christian Hammond
Looks like git isn't installed on that server. We're going to put in better error messages for such failure cases in 1.1, but for now, make sure git is installed and in the path. Christian -- Christian Hammond - chip...@chipx86.com Review Board - http://www.review-board.org VMware, Inc. -

Re: Something broke! (Error 500) after adding new Git repository

2009-07-14 Thread wezyde
I definitely have Git on the server. I'm using it for many projects. Is is possible that there is an issue with permissions for the apache user? On Jul 14, 2:41 pm, Christian Hammond chip...@chipx86.com wrote: Looks like git isn't installed on that server. We're going to put in better error

Re: Something broke! (Error 500) after adding new Git repository

2009-07-14 Thread Christian Hammond
Actually, it looks like it had trouble with the repository it was configured with. The relevant code is: def __init__(self, path): self.path = path p = subprocess.Popen( ['git', '--git-dir=%s' % self.path, 'config',

Re: Something broke! (Error 500) after adding new Git repository

2009-07-14 Thread wezyde
I just ran... git --git-dir=/var/git/repositories/k2.git config core.repositoryformatversion and it responded with... 0 I'm not a python expert, but hopefully that is the command. In my repository setup I have /var/git/repositories/k2.git Thanks. On Jul 14, 3:03 pm, Christian Hammond