Resource icon

XF 1 Tip Mark all PMs as read (queries)

Compatible XF Versions
1.x
You can run these queries on your database to mark all PMs as read:

Code:
UPDATE xf_conversation_recipient
SET last_read_date = UNIX_TIMESTAMP();

UPDATE xf_conversation_user
SET is_unread = 0;

UPDATE xf_user
SET conversations_unread = 0;
Author
ENXF NET
Views
500
Last update
Rating
0.00 star(s) 0 ratings

More resources from ENXF NET

Top