以前、WordPressの2.5へのアップグレード少し待つべきだったと書いたのであるが、今日やっとFixできた。
[resolved] Awaiting moderation keeps on 18 comments
I had the same problem as you and I found the fix: somehow the updater failed to create an index in the comment_date_gmt column of the wp_comments table. Go to your preferred MySQL interface (like phpMyAdmin) and add an index to that column, reload your comment management page, and you’re done. Cheers!
by akosma
解決方法:
WP2.5のアップデートツールがwp_commentsテーブルに、comment_date_gmtフィールドのためのIndexを作成する事に失敗しているので、自分でIndexを作成してあげる必要がある。
もし、PhpMyAdminをしようしているのなら下記の手順になります。
1. wp_commentsテーブルを選択
2.Indexesのリストの下の方にあるCreate Indexボタンをおす。
3. comment_date_gmtフィールドに対してIndexを作る。
以上です。