Hi Shane,

I used sqlite3 to perform this operation.

If you run sqlite3 on you .db file you can then remove the user id by
doing the following (replacing XXXusernameXXX with the user you want
to remove):

update session set authenticated=0 where sid='XXXusernameXXX'
delete from session where sid='XXXusernameXXX'
delete from session where sid='XXXusernameXXX'

You need to restart the httpd when you're done:
/etc/init.d/httpd restart

Hope this works for you.



On Jun 7, 4:34 am, "Shāné" <[EMAIL PROTECTED]> wrote:
> Hello all,
>
> How can we disable user accounts? When a user account is disabled, we would
> like to hide the user id in the owner and assignment list.
>
> Regards,
> Shane


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to