You can delete the Inactive Users through admin area
User Admin = > Inactive Users = > Delete
You can delete the Inactive Users through admin area
User Admin = > Inactive Users = > Delete
yes you can do that there deleting on by one but if someone have more than 7000 inactive users :(
Save as user_delete.php, run once in browser. Set cron to run this once a year
Code:include ('include/config.php'); $sql = mysql_query("DELETE FROM signup WHERE account_status='inactive'") or die(mysql_error());
i used this for 2.7
PHP Code:
DELETE FROM users WHERE user_account_status='inactive'
this should be a default option in admin control , i just checked my site there were 6000+ inactive users :(
Need same for inactive videos.
I would consider people who have not logged in for over a year as an inactive user. How do we delete people whos last log in was, say...sometime in 2009 or older?
Code:DELETE FROM users WHERE user_last_login_time='???????????'
Last edited by grynmoors; 08-18-2010 at 09:26 PM.
If it's not fun, stop doing it!
To delete users who have not logged in since 2009, you would use:
Code:delete from users where user_last_login_time<1262304000
vShare Solutions
Custom vShare Modules and Services
Now, your visitors can watch videos on your site using their mobile or tablet device with the Mobility Mod for vShare 2.8!
Is there something that will work with 2.8.1? I've tried all of the above
Bookmarks