I have Trac set up on my VisualSVN server (using Subversion authentication), however every time I navigate to the Trac home page after opening the browser, I get the basic authentication dialog asking me for my username/password. What I would like to do is have a login form in Trac, which would allow me to log in forever using cookies.
I have tried installing the AccountManagerPlugin, but I am completely unsure of how to correctly set it up. (I am used to working with IIS on corporate intranets, so this is kind of alien to me)
I have managed to bypass the basic authentication dialog by setting this in my httpd-custom.conf:
AuthName "Trac"
AuthType Basic
AuthBasicProvider file
AuthUserFile "E:/Repositories/htpasswd"
#Require valid-user
I have tried using SvnServePasswordStore as my password store but I do not know which of the files in the repository directory to point it at.
Help would be appreciated!