• Resolved bigmek

    (@bigmek)


    Version 3.4.4 has an error in the creation of the seo_title_tag_url database in the seo-title-tag-3.4.php file.

    $sql = “CREATE TABLE $table_name (
    id bigint NOT NULL AUTO_INCREMENT PRIMARY KEY,
    url varchar(255) NOT NULL,
    title varchar(255) NOT NULL,
    description varchar(255) NOT NULL,
    UNIQUE KEY id (id),
    PRIMARY KEY (id)
    ) $charset_collate;”;

    should be changed to:

    $sql = “CREATE TABLE $table_name (
    id bigint NOT NULL AUTO_INCREMENT,
    url varchar(255) NOT NULL,
    title varchar(255) NOT NULL,
    description varchar(255) NOT NULL,
    UNIQUE KEY id (id),
    PRIMARY KEY (id)
    ) $charset_collate;”;

    https://www.ads-software.com/plugins/seo-title-tag/

  • The topic ‘Fixed Database error’ is closed to new replies.