dopetalk does not endorse any advertised product nor does it accept any liability for it's use or misuse


Our Discord Notification Server invitation link is https://discord.gg/jB2qmRrxyD

Author Topic: How to empty the Recycle Bin  (Read 22 times)

Offline Chip (OP)

  • Server Admin
  • Hero Member
  • *****
  • Administrator
  • *****
  • Join Date: Dec 2014
  • Location: Australia
  • Posts: 7285
  • Reputation Power: 0
  • Chip has hidden their reputation power
  • Gender: Male
  • Last Login:Yesterday at 08:54:11 AM
  • Deeply Confused Learner
  • Profession: IT Engineer now retired
How to empty the Recycle Bin
« on: July 30, 2026, 12:30:30 AM »
Step 1. Confirm your recycle board ID (verify visually before proceeding)
USE smf209;
SELECT id_board, name
FROM smf209_boards
WHERE name LIKE '%Recycle%';

-- Confirm the id_board returned above matches "Recycle Bin" before continuing.
-- The rest of this script assumes that ID is 88 - change it below if different.

START TRANSACTION;

SET @recycle_board = 88;

Step 2. Delete attachment records (all types, not just regular attachments)
DELETE a
FROM smf209_attachments AS a
JOIN smf209_messages AS m
    ON a.id_msg = m.id_msg
WHERE m.id_board = @recycle_board;

Note: this removes the database records only - physical files remain on disk in your attachments directory until cleaned up separately (Step 6).

Step 3. Delete the topics (board-scoped, before messages so id_topic is still resolvable)
DELETE t
FROM smf209_topics AS t
WHERE t.id_board = @recycle_board;

Step 4. Delete the messages
DELETE
FROM smf209_messages
WHERE id_board = @recycle_board;

Step 5. Update board statistics
UPDATE smf209_boards
SET
    num_topics = 0,
    num_posts = 0,
    id_last_msg = 0
WHERE id_board = @recycle_board;

COMMIT;

Step 6. Go to Admin → Forum Maintenance → Attachment Maintenance to clean up the now-orphaned physical files on disk.
« Last Edit: July 30, 2026, 12:55:14 AM by Chip »
friendly
0
funny
0
informative
0
agree
0
disagree
0
like
0
dislike
0
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
No reactions
Our Discord Server invitation link is https://discord.gg/jB2qmRrxyD

Tags:
 


dopetalk does not endorse any advertised product nor does it accept any liability for it's use or misuse





TERMS AND CONDITIONS

In no event will d&u or any person involved in creating, producing, or distributing site information be liable for any direct, indirect, incidental, punitive, special or consequential damages arising out of the use of or inability to use d&u. You agree to indemnify and hold harmless d&u, its domain founders, sponsors, maintainers, server administrators, volunteers and contributors from and against all liability, claims, damages, costs and expenses, including legal fees, that arise directly or indirectly from the use of any part of the d&u site.


TO USE THIS WEBSITE YOU MUST AGREE TO THE TERMS AND CONDITIONS ABOVE


Founded December 2014
SimplePortal 2.3.6 © 2008-2014, SimplePortal