Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted July 16, 20204 yr Dear IPB community, is there a way to delete all messages (conversations) for all users of IPB? I was able to identidy the following tables: Quote core_message_topics core_message_topic_user_map The table holding the messages itself is still missing, can somebody please show me for example SQL queries to delete all messages (conversations)? Meaning a complete purge.
July 16, 20204 yr I wouldn't recommend this approach. Things like notifications would be hard to capture, and deleting attachments wouldn't be possible. You would be better off writing a background queue task that loops through all PMs and deletes them using the built in content item delete() method.
July 17, 20204 yr Hi there, I urgently need this I've had a spammer join the site, send 5,500 PM's without my knowledge I deleted their account so they're a guest but their messages remain Is there any way to delete them?
July 18, 20204 yr Author @bfarber Can you provide SQL queries (notifications included for sure)? Query should delete all everything related to the conversation "directly": -conversations -attachments (related to conversations) -notifications (related to conversations)
July 20, 20204 yr It's not possible. Like, for attachments you also need code that deletes the physical file on disk (including accounting for S3 storage). This is just a process that is best left to running correct PHP methods to ensure everything is accounted for (notifications, tags, attachments, etc. etc.)
July 22, 20204 yr Author I'll take a look into on our demo setup and play a bit around. Any idea where the messages itself are stored (each message)? I wasn't able to locate the table!?