Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Michael Simpson

    (@msimpson)

    I think the problem is that the plugin does not have permission to create the wp_cf7dbplugin_submits table in your database. You can try creating it manually using PHPMyAdmin.

    CREATE TABLE IF NOT EXISTS wp_cf7dbplugin_submits (
    submit_time DECIMAL(16,4) NOT NULL,
    form_name VARCHAR(127) CHARACTER SET utf8,
    field_name VARCHAR(127) CHARACTER SET utf8,
    field_value LONGTEXT CHARACTER SET utf8,
    field_order INTEGER,
    file LONGBLOB)
    
    ALTER TABLE wp_cf7dbplugin_submits ADD INDEX submit_time_idx ( submit_time )
    ALTER TABLE wp_cf7dbplugin_submits ADD INDEX form_name_idx ( form_name )
    ALTER TABLE wp_cf7dbplugin_submits ADD INDEX field_name_idx ( field_name )
    Thread Starter Vandellyr

    (@vandellyr)

    Hi!

    I went into PHPMyAdmin and there is already table for wp_cf7dbplugin_submits. So I don’t know what the problem could be since the table is there. Any other ideas?

    Thank you for your help, I really appreciate it! ^__^

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Unexpected Output when installed’ is closed to new replies.