ElkArte Community

Project Support => Support => Topic started by: ian on August 23, 2019, 07:49:34 am

Title: Mark all read
Post by: ian on August 23, 2019, 07:49:34 am
Hello,

I imported a forum into ElkArte, but I was unable to transfer the "marked read" status of replies because the systems are drastically different (one is ID based the other is time based afaik). I have over 100 pages of "unread replies". Could you suggest an admin add-on I could use as a base to hack in a "mark all user's replies read" option before I open the new board?

Thank you and best regards,
Ian
Title: Re: Mark all read
Post by: emanuele on August 24, 2019, 08:46:35 am
This query should do:
Code: [Select]
replace into elkarte_log_boards
select s.value, m.id_member
from elkarte_settings as s, elkarte_members as m
where s.variable = 'maxMsgID';
I think.