Emmanuel Blot wrote:
>>Anybody got any idea about this? I'm still seeing it and a client is
>>experiencing the same issue.
>
>
> The path of the egg files seems awkward: did you set the
> PYTHON_EGG_CACHE environment variable (in your Apache configuration
> file) ?
Emmanuel,
I haven't set that. What do I need to do?
My apache config is included below.
Thanks,
R.
RewriteEngine On
# Re-direct from /trac to /projects
RewriteRule ^/trac$ /projects [R]
# Re-direct from old project locations to new one. 2006-02-14
RewriteRule ^/(trac/)*apply_replaygain /projects/apply_replaygain [R]
RewriteRule ^/(trac/)*check_validrcptto_cdb
/projects/check_validrcptto_cdb [R]
RewriteRule ^/(trac/)*flac2mp3 /projects/flac2mp3 [R]
RewriteRule ^/(trac/)*technotes /projects/technotes [R]
Alias /trac/ /usr/share/trac/htdocs/
<Directory "/usr/share/trac/htdocs">
Order allow,deny
Allow from all
</Directory>
<Location /projects>
SetHandler mod_python
PythonHandler trac.web.modpython_frontend
PythonOption TracEnvParentDir "/home/trac/"
PythonOption TracUriRoot /projects
# page to show list of projects goes here
# PythonOption TracEnvIndexTemplate
/home/apache/projects.sitepen.com/static/AvailableProjects.cs
</Location>
<LocationMatch "/projects/[^/]+/login">
AuthType Basic
AuthName "robinbowes.com Projects"
AuthUserFile /etc/httpd/conf.d/auth/projects.robinbowes.com-users
Require valid-user
</LocationMatch>
<Directory /var/www/svn/>
Options ExecCGI FollowSymLinks
AllowOverride all
Allow from all
Order allow,deny
</Directory>
<Location /svn>
DAV svn
# any "/svn/foo" URL will map to a repository /home/svn/foo
SVNParentPath /home/svn
SVNIndexXSLT "/static/svnindex.xsl"
AuthType Basic
AuthName "Subversion repository"
AuthUserFile /etc/httpd/conf.d/auth/projects.robinbowes.com-users
AuthzSVNAccessFile
/etc/httpd/conf.d/auth/projects.robinbowes.com-svnaccess
<LimitExcept GET PROPFIND OPTIONS REPORT>
Require valid-user
</LimitExcept>
</Location>
_______________________________________________
Trac mailing list
[email protected]
http://lists.edgewall.com/mailman/listinfo/trac