By Juergen on Thursday, 12 February 2015
Posted in General Issues
Replies 3
Likes 0
Views 756
Votes 0
Hello !

I bought the EasyDiscuss and changed from Kunena to it.
The excisting old Threads are all now marked as "not read" is it possible to make them with one klick as "readed".
Imean Post or Threads which I hade red in the Past in Kunena are now in EasyDiscuss signed as not read. It can not be the only way, open all Threads to fix it. There should be an option where I can say "sign all as readed". Is there an option hidden in the menue I did not find ?
Hello Juergen,

Sorry for late reply to this,
Try take a look of my instruction below :
#1. Backup all your database table first before you go second step.
#2. Go to your PHPmyadmin run this sql query :

update jos_discuss_posts as a
inner join jos_discuss_migrators as b on a.`id` = b.`internal_id` and b.`component` = 'com_kunena' and b.`type` = 'post'
set a.isresolve = 1,
a.answered = 1
where a.parent_id = 0;


The above sql will update all the migrated parent posts from kunena to 'resolved' and 'answered'.
Also, you might need to replace the jos_ to your own Joomla table prefix.
·
Thursday, 12 February 2015 23:59
·
0 Likes
·
0 Votes
·
0 Comments
·
to heavy for me :-) ! Take it to your to do list for next update. A button " All readed"
·
Friday, 13 February 2015 00:17
·
0 Likes
·
0 Votes
·
0 Comments
·
hello Juergen,

Thanks for suggestion
We will see if we can implement this in the future version.
By the way, may i know did you run this SQL query for temporary fix this in your site first?
·
Friday, 13 February 2015 11:57
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post