I have trac set up on a shared server (bluehost) but I can't get
authentication working. I followed the instructions on the trac wiki,
except I had to use .htaccess instead of apache's main configuration.
When I click the login link on trac, I'm prompted for my user and
password, and it lets me see the page if I enter valid login info,
except trac still says "Authentication information not available".
My .htaccess is given below. Anyone know what could be wrong?
AddHandler application/x-httpd-php5 .php
DirectoryIndex index.cgi
Options ExecCGI FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.cgi/$1 [L]
SetEnv TRAC_ENV_PARENT_DIR /home4/elplattc/trac_sites
<Files "login">
AuthType Basic
AuthName "Trac"
AuthUserFile /home4/elplattc/trac_sites/trac.htpasswd
Require valid-user
</Files>
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---