Resource icon

Approve all moderated posts (queries)

Jake Bunce

Well-known member
Jake Bunce submitted a new resource:

Approve all moderated posts (queries) (version 1.x) - Useful when you have a backlog of moderated posts.

You can run these two queries to approve all moderated posts:

Code:
DELETE
FROM xf_moderation_queue
WHERE content_type = 'post';

UPDATE xf_post
SET message_state = 'visible'
WHERE message_state = 'moderated';

And here are the queries to approve all moderated threads:

Code:
DELETE
FROM xf_moderation_queue
WHERE content_type = 'thread';

UPDATE xf_thread
SET discussion_state = 'visible'
WHERE discussion_state = 'moderated';

You also need to run this query to reset the count...

Read more about this resource...
 
Nice resources.
Sometime I forgot to moderate posts/threads for months. This query help much.
 
Top Bottom