• Since upgrade, WP will not process any comments to postings. Commenting function looks optically OK, comment box takes text and after having it entered it WP will do exactly nothing with it. Also NOT display any error message. Just sits there. This is extremely annoying! Did anyone else have this and solve it? Wher would I have to look? Thanks!

Viewing 6 replies - 1 through 6 (of 6 total)
  • I have same problem…upgrade from 2.33

    I don’t see any comment (aproved, awaiting…) only can see spam in admin area but can see number of new comments notification.

    Thanks in advance !

    Problem is solved.

    I compare WP 2.33 ver. and 2.6 ver. wp_comments database table and note that no diferences…

    But after that I look at fresh 2.6 wp_comments table and see diferences.

    Here i will put wordpress 2.6 table (without comments)

    WordPress 2.6

    -- phpMyAdmin SQL Dump
    -- version 2.11.6
    -- https://www.phpmyadmin.net
    --
    -- Host: localhost
    -- Generation Time: Aug 11, 2008 at 04:08 AM
    -- Server version: 5.0.51
    -- PHP Version: 5.2.6
    
    SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
    
    /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
    /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
    /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
    /*!40101 SET NAMES latin1 */;
    
    --
    -- Database: yourdatabase_name
    --
    
    -- --------------------------------------------------------
    
    --
    -- Table structure for table 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=latin1 AUTO_INCREMENT=282 ;
    
    --
    -- Dumping data for table wp_comments
    --

    Drop old wp_comments table in PHPMyAdmin area and import new changed data. All will work.

    Tried this on my 2.6-installation but doesn’t seem to solve the problem over here. Had also copied the table to (in my case) i4kq_comments as all tableprefixes are this i4kq.

    Check https://blog.pluim-nielsen.nl . Everytime the index-page shows up again.

    Installed older version (2.3) same problem.

    What code table you use? UTF8, latin1 or ?

    Try to check this. In my case all is latin1 and still working.

    Unfortunately the same result after setting all tables and database set to collation latin1.

    De-installed WordPress and installed another program. Looks also nice. Might decide later on re-installing WordPress if I have some more time.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘WP 2.6 does not allow comments’ is closed to new replies.