Author Topic: [req] delete inactive users  (Read 6083 times)

0 Members and 1 Guest are viewing this topic.

Offline SLL

  • Hero Member
  • *****
  • Posts: 585
    • View Profile
[req] delete inactive users
« on: January 18, 2007, 09:26:19 AM »
Something like used with most forums - delete users without any picture uploaded or comment posted. Any volunteers to create such mod?  :roll:

Offline mawenzi

  • Moderator
  • 4images Guru
  • *****
  • Posts: 4.500
    • View Profile
Re: [req] delete inactive users
« Reply #1 on: January 18, 2007, 09:37:44 AM »
... here is a plugin : Delete all registered users with no action on website during the last xx days ...
... that you can modify to your (remaining) needs ...
... http://www.4homepages.de/forum/index.php?topic=10097.msg49306#msg49306 ...
Your first three "must do" before you ask a question ! ( © by V@no )
- please read the Forum Rules ...
- please study the FAQ ...
- please try to Search for your answer ...

You are on search for top 4images MOD's ?
- then please search here ... Mawenzi's Top 100+ MOD List (unsorted sorted) ...

Offline SLL

  • Hero Member
  • *****
  • Posts: 585
    • View Profile
Re: [req] delete inactive users
« Reply #2 on: January 18, 2007, 09:56:55 PM »
... that you can modify to your (remaining) needs ...
thanks, this is almost what i wanted  :)

just one question: what variable should i use in sql query in order to keep user with an image assigned to this user?

in other words - i do not want to delete users if they have active images in a gallery

Offline mawenzi

  • Moderator
  • 4images Guru
  • *****
  • Posts: 4.500
    • View Profile
Re: [req] delete inactive users
« Reply #3 on: January 18, 2007, 11:14:43 PM »
... try this ...
Code: [Select]
$sql_del_users = "DELETE FROM ".USERS_TABLE."
WHERE user_level = 2
AND user_t_images = 0
AND user_lastaction < ".(time()-$no_action*24*3600);
$result = $site_db->query($sql_del_users);
echo "Users deleted !";

... "user_t_images" is a additional_user_field ... "user_total_images" ... I think from [Mod] Keep Track Of Each action ...
Your first three "must do" before you ask a question ! ( © by V@no )
- please read the Forum Rules ...
- please study the FAQ ...
- please try to Search for your answer ...

You are on search for top 4images MOD's ?
- then please search here ... Mawenzi's Top 100+ MOD List (unsorted sorted) ...