On Mar 22, 5:53 pm, Chris Forsythe <[EMAIL PROTECTED]> wrote: > So I just tested this. I changed the file to an empty file in trac.ini and > then restarted lightty. Upon trying to register, I'm > seeing the same problem.
Well, the file-based storage obviously has serious limitations on large sites. I've just committed a new SessionStore which stores user passwords in the session_attributes table. By default it will store passwords in htdigest format, but it can also be used with htpasswd format by setting "hash_method = HtPasswdHashMethod" in trac.ini. I've added a script to the source in "contrib/sessionstore_convert.py" to move existing user passwords into the database. Call it like "python sessionstore_convert.py myproject". It will check the config for the current password file and format used and add the users to the database, make the necessary changes to the config and save it. You may need to enable the components if you don't have "acct_mgr.* = enabled" in your config. I've tested it out a bit, but it's brand new so if you experience any problems please report them on the trac-hacks site. -- Matt Good --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
