I congratulate the WPforo team.
We have been using wpforo for a long time. We provide discussion of users on a topic opened on our forum page.
We do not allow different topics to be opened.
As a matter of fact, the number of messages on a single topic has increased. There's 13000 messages in one thread.
Here's our problem.
When trying to add a message to a member thread, it takes a while to complete the upload. And if you do not send the message again before this load is over, the same message is being broadcast.
I'm glad you helped me.
Best regards.
Thank you mussport,
It seems the database table indexes are damaged or so. Please execute these SQL commands in Hosting Service cPanel > phpMyAdmin > Your Website Database > SQL tab:
ALTER TABLE `wp_wpforo_posts` ADD INDEX(`topicid`);
ALTER TABLE `wp_wpforo_posts` ADD INDEX(`forumid`);
ALTER TABLE `wp_wpforo_posts` ADD INDEX(`userid`);
ALTER TABLE `wp_wpforo_posts` ADD INDEX(`is_answer`);
ALTER TABLE `wp_wpforo_topics` ADD INDEX(`forumid`);
ALTER TABLE `wp_wpforo_topics` ADD INDEX(`first_postid`);
ALTER TABLE `wp_wpforo_forums` ADD INDEX(`parentid`);
Make sure the table prefix is correct, if your WordPress tables have different prefix change the wp_ in commands. Execute them one by one. They may take minutes.