to view all sessions
 trac-admin /var/www/svn/admin/ session list

to remove a session
trac-admin /var/www/svn/admin/ session delete <username> 



On Tuesday, February 26, 2008 12:38:26 AM UTC+2, Quinn Comendant wrote:
>
> 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 unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to