Whatever you do, don’t panic!
Posts tagged project
How to delete Redmine users
Apr 27th
I’ve recently transfered all my project planning, development, bug ticketing and repositories to the awesome Redmine project tracking software. From now on all of my development work will live on tracking.42dev.eu
To facilitate bug reports and feature planning for my latest WordPress Plugin I’ve activated user registrations in Redmine, so people can post messages on the Forums. Now I wanted to have some sort of mechanism to delete unwanted users from the Redmine database. Since the software has no such option on the webinterface I searched for an alternative and found one on the Redmine forums.
Go to you Redmine install directory and enter the following (substitute USER_ID with the desired value):
>> script/console >> u = User.find(USER_ID) >> u.destroy
Make sure, that the user you are deleting doesn’t have any activity on the site yet, otherwise problems could arise, if the user already posted messages etc.
HTML5 Boilerplate
Aug 13th

The HTML5 Boilerplate is a (near) perfect template to start off a new web project according to the newest standards.
Read more about it on the HTML5 Boilerplate Website.












