beeswax Posted December 13, 2008 Posted December 13, 2008 Is there a way to query a Moodle site to find out who hasn't yet logged in? We went live in September and I need to find the pockets of resistance and obliterate them.
ChrisH Posted December 13, 2008 Posted December 13, 2008 When I look at our user list it states when they last logged on, if ever.
danIT Posted December 13, 2008 Posted December 13, 2008 Heres a MySQL query that will show you all the users that have never logged on to Moodle: select * from mdl_user where lastlogin = 0; Here is patch listed in the Moodle Tracker which should add the functionality required: [#MDL-15502] Bulk user actions should include a filter option to select users who have never logged in - Moodle Tracker 1
beeswax Posted December 13, 2008 Author Posted December 13, 2008 When I look at our user list it states when they last logged on, if ever. With nearly 1500 users I'm hoping to avoid going down that path.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now