Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Loic from Cloudinary helps me! in your database are not a table like wp_cloudinary_relationships. so add it! try this and it works without problems. make a database backup safety first before make a sql statement. thanks loic!

    CREATE TABLE IF NOT EXISTS wp_cloudinary_relationships (
    id bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    post_id bigint(20) DEFAULT NULL,
    public_id varchar(500) DEFAULT NULL,
    parent_path varchar(500) DEFAULT NULL,
    sized_url varchar(500) DEFAULT NULL,
    width int(11) DEFAULT NULL,
    height int(11) DEFAULT NULL,
    format varchar(12) DEFAULT NULL,
    sync_type varchar(10) DEFAULT NULL,
    post_state varchar(12) DEFAULT NULL,
    transformations text DEFAULT NULL,
    signature varchar(5) DEFAULT NULL,
    PRIMARY KEY (id),
    UNIQUE KEY sized_url (sized_url(190)),
    KEY post_id (post_id),
    KEY parent_path (parent_path(190)),
    KEY public_id (public_id(190)),
    KEY sync_type (sync_type)
    ) ENGINE=INNODB DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci

    • This reply was modified 4 years, 5 months ago by skome.
    Thread Starter skome

    (@skome)

    i tried to move the 1.9 folder out of the plugin folder and install new the version 2.0 without problems but if i want to activate it comes an error message:

    The plugin can not be activated because it creates a fatal error.

    Any Ideas to get the version 2.0 of Really Simple CAPTCHA to work with WordPress 4.8?

    • This reply was modified 8 years, 11 months ago by skome.
Viewing 2 replies - 1 through 2 (of 2 total)