Cannot create a project in GitLab 5.0

When I try to create a project in the GitLab 5.0 web interface, it shows an error -

  Can't save project.  Please try again later

I have no information about this error in the logs, only -

  Started POST "/ projects" for 127.0.0.1 at 2013-04-29 12:36:06 +0400
 Processing by ProjectsController # create as JS
   Parameters: {"utf8" => "њ", "authenticity_token" => "2fl + iBv2IggV6RVQP2M41lzeQRWT2hnow1qfG4NVxbQ =", "project" => {"name" => "sdfsdf", "namespace_id" = "" GLN import_url "=>" "}," commit "=>" Create project "}
   Rendered projects / _new_form.html.haml (8.5ms)
   Rendered projects / create.js.haml (9.4ms)
 Completed 200 OK in 119ms (Views: 10.0ms | ActiveRecord: 5.8ms)

Can someone help me?

+4
source share
1 answer

Depending on your environment, this might be:

The second point was resolved with:

echo "deb http://backports.debian.org/debian-backports squeeze-backports main" >> /etc/apt/sources.list apt-get update apt-get -t squeeze-backports install redis-server 
+5
source

All Articles