Forums

Can't comment anymore. ERROR: Nothing found for Comment-page- (4 posts)

  1. smartec
    Member
    Posted 3 years ago #

    when I try to post a comment on my blog
    http://www.bettable.it
    I get the error in the subjet
    It's not a theme issue. Changing it, the error persist
    I noticed in the addres bar of my browser this:
    http://www.bettable.it/comment-page-/#comment-

    so, the number of the comment is missing.
    Is this an evidence of something can help to solve the problem?

    Thank you all in advance :-)

  2. loosefast
    Member
    Posted 3 years ago #

    This is also happening on one of my blogs. Will let you know what it might be...if I find out.

  3. loosefast
    Member
    Posted 3 years ago #

    Here is a clue:

    PHPMySQL says
    wp_comments' is marked as crashed and should be repaired

    REpair fails.

    errr

  4. loosefast
    Member
    Posted 3 years ago #

    Could not repair table

    so ran this query in PHPMySQL

    DROP TABLE IF EXISTS wp_comments;
    CREATE TABLE IF NOT EXISTS wp_comments (
    comment_ID bigint(20) unsigned NOT NULL auto_increment,
    comment_post_ID int(11) NOT NULL default '0',
    comment_author tinytext NOT NULL,
    comment_author_email varchar(100) NOT NULL default '',
    comment_author_url varchar(200) NOT NULL default '',
    comment_author_IP varchar(100) NOT NULL default '',
    comment_date datetime NOT NULL default '0000-00-00 00:00:00',
    comment_date_gmt datetime NOT NULL default '0000-00-00 00:00:00',
    comment_content text NOT NULL,
    comment_karma int(11) NOT NULL default '0',
    comment_approved varchar(20) NOT NULL default '1',
    comment_agent varchar(255) NOT NULL default '',
    comment_type varchar(20) NOT NULL default '',
    comment_parent bigint(20) NOT NULL default '0',
    user_id bigint(20) NOT NULL default '0',
    PRIMARY KEY (comment_ID),
    KEY comment_approved (comment_approved),
    KEY comment_post_ID (comment_post_ID),
    KEY comment_approved_date_gmt (comment_approved,comment_date_gmt),
    KEY comment_date_gmt (comment_date_gmt)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=83 ;

    Comments now work!

Topic Closed

This topic has been closed to new replies.

About this Topic