AFAIR, there is a special "thing" w/ ModPython and using the root URL. I'm not sure whether there is a simple solution - this question has already been discussed in the ML however, so you may want to search the archive.
I found easier to use a /trac URL with a simple ModRewrite rule to redirect the web browsers from the / root URL to the /trac/project one. Cheers, Manu On 8/18/07, Ulrich Wolf <[EMAIL PROTECTED]> wrote: > > Hello, > > i can't login into trac (Alway getting an Internal Error: "Authentication > information not available") and additionally i can't edit any Pages (even if > i give full rights (TRAC_ADMIN)to anonymous). I can see the Buttons, but I > return to the same page (but with e.g. "?action=edit" in the URL) when i > click on them. > > My System: > Gentoo (newest Patches) > Trac 0.10.4 (installed via portage) > Apache 2.2.4 with mod_python 3.2.10 > Python 2.4.4 > > My Apache-Config (I want to run Trac under http://trac.domainname.tld > (without /trac)): > <VirtualHost *:80> > ServerName trac.mydomainname.tld > ServerAlias www.trac.mydomainname.tld > ServerAdmin [EMAIL PROTECTED] > DocumentRoot "/var/www/trac1/" > <Location /> > SetHandler mod_python > PythonInterpreter main_interpreter > PythonHandler trac.web.modpython_frontend > PythonOption TracEnv /var/www/trac1/data/ > PythonOption TracUriRoot / > </Location> > <LocationMatch /login> > AuthType Basic > AuthName "Auth here" > AuthUserFile /var/www/trac1/data/.htpasswd > Require valid-user > Satisfy all > </LocationMatch> > <Directory "/usr/share/trac/htdocs/"> > Options Indexes MultiViews > AllowOverride None > Order allow,deny > Allow from all > </Directory> > </VirtualHost> > > I've seen the following error several times in the apache log: > > client denied by server configuration: /var/www/trac1/data/wiki, referer: > http://trac.mydomainname.tld/wiki/WikiStart?action=edit > client denied by server configuration: /var/www/trac1/data/login, referer: > http://trac.mydomainname.tld/wiki/WikiStart?action=edit > > As i didn't find any solution to this, it would be very nice to get some > help from this list. > > Thanks in advance! > Greetings from Germany > Uli > > > > > -- Manu --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
