Hello every one:
I am new to this tool and I am getting lost in the documentation.
I have SVN installed and working properly. Then I created a directory
called trac to host trac's files for each Project.
So the final layout is like this
-- repos
|-- conf
| |-- auth.txt
| `-- users.txt
|-- svn
| `-- projects
| |-- prjkt1
| |-- prjkt2
| |-- prjkt3
| `-- prjkt4
`-- trac
|-- prjkt1
|-- prjkt2
|-- prjkt3
`-- prjkt4
Now the problem starts. I have the trac config file for apache
/etc/httpd/conf.d/trac.conf :
<LocationMatch /cgi-bin/trac\.f?cgi>
SetEnv TRAC_ENV /path/repos/trac/prjkt1
</LocationMatch>
<IfModule mod_python.c>
<Location /cgi-bin/trac.cgi>
AuthType Digest
SVNParentPath /path/repos/trac/prjkt1
AuthName "realm"
AuthUserFile /path/repos/conf/users.txt
AuthGroupFile /path/repos/conf/groups.txt
AuthzSVNAccessFile /paht/repos/conf/auth.txt
SetHandler mod_python
PythonHandler trac.web.modpython_frontend
PythonOption TracEnv /path/repos/trac/prjkt1
require valid-user
</Location>
</IfModule>
I access my SVN therough http://server/svn/projects/
Now how can I access trac for all the projects (shouldn't this be clear
steps in the docs?!).
when I get to http://server/cgi-bin/trac.cgi and then try to login I get
an error. Then apache log says this:
script not found or unable to stat: /var/www/cgi-bin/trac.cgi\\login
Now, what about this erro:
The URI does not contain the name of a repository.
How can I pass the name of the repo to trac ?
I don't want to add virtual hosts or modify any thing in my current
apache.conf !
When I go
Thank you.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac
Users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---