All comments periodically disabled
-
On our site, the “Allow Comments” status gets turned off for every post, periodically, seemingly at random.
When I look at the DB, I see that comment_status has actually been set to ‘closed’ on every record. To reenable commenting, I run the following SQL command:
UPDATE wp_posts p SET comment_status = ‘open’ WHERE comment_status = ‘closed’;
Some time later, it could be a week, a month, or two days, the comment status will be changed to ‘closed’ again on every record. I have not been able to figure out what keeps causing this recurring problem. What action has the side-effect of touching the comment-status field on every post in the DB?
Looking around on the forums, I see a number of posts that appear to be describing the same problem, but none with a resolution. If this problem is indeed this ubiquitous, I assume someone must have discovered the root cause.
Can anyone help?
Thanks.
- The topic ‘All comments periodically disabled’ is closed to new replies.