compactabt
Member
Hi everyone. I have a longstanding forum user with 60,000+ posts who would like his contributions to the forum deleted. He'd like to keep his account if possible, but that's not a dealbreaker.
Flagging him as spam doesn't work (it times out without deleting anything), and I've tried the Delete Posts add-on, but that's not doing it either.
I'm wondering if running a MySQL query to 'empty out' all his posts might be the most graceful way of doing this. (Also least destructive, as he's started a few threads in his time.) Something like...
UPDATE xf_post
SET
message =
WHERE user_id = 123
...or similar. Can anyone help me out with the right query — and let me know of any possible problems I might run into?
Flagging him as spam doesn't work (it times out without deleting anything), and I've tried the Delete Posts add-on, but that's not doing it either.
I'm wondering if running a MySQL query to 'empty out' all his posts might be the most graceful way of doing this. (Also least destructive, as he's started a few threads in his time.) Something like...
UPDATE xf_post
SET
message =
WHERE user_id = 123
...or similar. Can anyone help me out with the right query — and let me know of any possible problems I might run into?