Chris Howell wrote: > Hi Matt, > > I see how the configuration works in apache, my question was more... > inside the actual file > > trac.htpasswd > > is the format. > > Username = Passwd - Such as the case with SVN ? Or is it more complex > then that ?
It's username:passwdhash Unless you know what you're doing with creating the password hash, just use the htpasswd command that comes with apache to generate the entries in the file: htpasswd -c trac.htpasswd htpasswd trac.htpasswd username password htpasswd trac.htpasswd username2 password2 etc.. Matt --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
