On Mar 20, 8:18 pm, Chris Forsythe <[EMAIL PROTECTED]> wrote: > With Adium's trac we have a problem regarding the account manager > plugin. Basically folks are unable to register, and get a > "RuntimeError: input() already active" error message when doing so. > Enough people are doing this to annoy the folks monitoring the > edgewall trac install [1], I can only offer my apologies regarding that.
This is a limitation of the AccountManager plugin. If two users are trying to register simultaneously it will cause this error since the fileinput module detects that it's already trying to write to the file. A synchronization method would help here, but you've probably got too many users to practically support an htpasswd file. The frequent user registrations make a collision more likely and the file will take longer to write as it grows in size, so that's also going to contribute to the problem. I've just started on a backend to store passwords in the database which will be better for sites with many users. It should be able to handle passwords in the htpasswd or htdigest formats so that either of these can be imported into the database. -- 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 -~----------~----~----~----~------~----~------~--~---
