The Arcive of vBulletin Modifications Site. |
|
|
#1
|
|||
|
|||
|
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). |
![]() |
|
|