The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Would this php code work to delete all orphaned attachments?
Would this php code work to delete all orphaned attachments? (eg. attachments who don't have a post that actually useses them? (don't ask why... seems like one of the hacks i installed keep the attachments from getting deleted if a thread gets deleted.
PHP Code:
..jordan |
#2
|
|||
|
|||
[sql]
SELECT a.attachmentid FROM attachment a LEFT JOIN post p ON a.attachmentid = p.attachmentid WHERE p.attachmentid IS NULL; [/sql] Theoretically that query will work but it will take an insanely long time to execute (50 sec on my machine). |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|