Назад | Перейти на главную страницу

Проблемы trac svn centos

Настройте Trac / SVN, следуя инструкциям из учебника на

http://www.sohailriaz.com/how-to-install-subversion-with-trac-on-centos-5-x/

SVN отлично работает на

/svn/

Trac ur:

/trac/

Trac этого не делает, ошибка, которую он вызывает,

   Not Found

   The requested URL /index.php was not found on this server.

   Additionally, a 404 Not Found error was encountered while trying to use an   ErrorDocument to handle the request.

Файл Trac.conf

###
### Sample Trac configuration taken from http://trac.edgewall.org/wiki/TracModPython    
###

### The recommended Trac web interface requires mod_python
<IfModule mod_python.c>

### Create your Trac environments as subdirectories of /var/trac
### They will appear in a listing on your website at /trac/, and be available 
### at /trac/PROJECTNAME/
<Location /trac>
    SetHandler mod_python
    PythonInterpreter main_interpreter
    PythonHandler trac.web.modpython_frontend 
    PythonOption TracEnvParentDir /var/www/trac
    PythonOption TracUriRoot /trac
</Location>

### Use htpasswd to add Trac accounts to the AuthUserFile
<LocationMatch "/trac/[^/]+/login">
    AuthType Basic
    AuthName "Trac"
    AuthUserFile /var/www/trac/.htpasswd
    Require valid-user
</LocationMatch>

Журнал ошибок Apache

[Mon Nov 15 16:07:08 2010] [error] [client 10.10.0.14] script '/var/www/html/index.php' not found or unable to stat
[Mon Nov 15 16:07:08 2010] [error] [client 10.10.0.14] script '/var/www/html/index.php' not found or unable to stat
[Mon Nov 15 16:07:08 2010] [error] [client 10.10.0.14] script '/var/www/html/index.php' not found or unable to stat
[Mon Nov 15 16:07:08 2010] [error] [client 10.10.0.14] script '/var/www/html/index.php' not found or unable to stat

Trac не написан на PHP, поэтому ошибка index.php вызывает любопытство. Кроме того, в вашем журнале ошибок не отображается трассировка в запросе. Кажется, запрашивается index.php из корня вашего сервера. Что произойдет, если вы запросите http: // имя сервера / trac / ? Конфигурация вашего Apache показывает, что он находится в этом месте.