Project

General

Profile

Redmine SVN issue

Added by Sky Wolf over 14 years ago

Hello,

I've follow the HowTO "HowTo configure Redmine for advanced Subversion integration"
But I've got some problems to acces repositories of projects.

Config:
  • apache2
  • redmine 0.8.5
  • subversion 1.5.4
  • ubuntu 9.04
  • database postgresql 8.3

svn access is ok (svn ls http://localhost/svn/testrepo) with no Redmine.pm authentification.

 <Location /svn>
   DAV svn
   SVNParentPath "/var/svn/" 
 </Location>

Redmine.pm authentication seems ok.

 PerlLoadModule Apache::Redmine
 <Location /svn>
   SetHandler perl-script
   PerlResponseHandler MyApache::Rocks

   AuthType Basic
   AuthName "redmine" 
   Require valid-user

   PerlAccessHandler Apache::Authn::Redmine::access_handler
   PerlAuthenHandler Apache::Authn::Redmine::authen_handler

   ## for postgres
   RedmineDSN "DBI:Pg:dbname=redmine_db;host=localhost" 

   RedmineDbUser "redmine" 
   RedmineDbPass "redmine" 
 </location>@

But when I use both svn with Redmine.pm I have an error in apache.
Here is the log file:
 [notice] child pid 5827 exit signal Segmentation fault (11)

I've looked for 2 days now :( but stil no idea ....
Some help would be really nice ....