The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#10
|
||||
|
||||
![]()
Well, you couldn't do this for the usernames (which should revert to the name of the user when they posted the post, anyway), but for the deletion of tables, after you do the select for users meeting the criteria, you need to run a loop to make a list of IDs. Once you have the list of IDs, you can feed them to each query in turn. So:
Code:
$idlist='0'; $result=$DB_site->query('SELECT userid FROM user WHERE (lastvisit<'.(time() - (60 * 60 * 24 * 487)).') AND (usergroupid IN (2, 3, 10, 11))'); while($userinfo=$DB_site->fetch_array()){ $idlist.=','.$userinfo['userid']; } $DB_site->query("DELETE FROM user WHERE userid IN (".$idlist.")"); $DB_site->query("DELETE FROM userfield WHERE userid IN (".$idlist.")"); $DB_site->query("DELETE FROM access WHERE userid IN (".$idlist.")"); $DB_site->query("DELETE FROM calendar_events WHERE userid IN (".$idlist.")"); $DB_site->query("DELETE FROM customavatar WHERE userid IN (".$idlist.")"); $DB_site->query("DELETE FROM moderator WHERE userid IN (".$idlist.")"); $DB_site->query("DELETE FROM privatemessage WHERE userid IN (".$idlist.")"); $DB_site->query("DELETE FROM subscribeforum WHERE userid IN (".$idlist.")"); $DB_site->query("DELETE FROM subscribethread WHERE userid IN (".$idlist.")"); $DB_site->query("DELETE FROM session WHERE userid IN (".$idlist.")"); [sql]SELECT usertextfield.userid FROM usertextfield LEFT JOIN user ON usertextfield.userid=user.userid WHERE ISNULL(user.username)[/sql] |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|