On Thu, 14 Feb 2008 08:49:49 -0800, Sam Ayoubpour wrote: > How does one remove old users from the drop down > list...?
The way I've done it is to issue commands directly to the database to remove the sessions for users you want removed. Assuming you're using a SQLITE database, the commands would be: 1. Launch the sqlite command-line client: sqlite /path/to/your/project/db/trac.db 2. Remove users: sqlite> delete from session where sid = '<username1>'; sqlite> delete from session where sid = '<username2>'; sqlite> delete from session where sid = '<username3>'; Quinn --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
