• Resolved morriswanchuk

    (@morriswanchuk)


    You are forcing the use of the MyIsam storage engine. Is this a requirement? We are using a galera cluster instance that forbids the use of the MyIsam storage engine and are unable to install the plugin.

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

    (@alanp57)

    You can manually create the table with the storage engine of your choice.

    • This reply was modified 5 years, 4 months ago by AlanP57.
    • This reply was modified 5 years, 4 months ago by AlanP57.
    Plugin Author AlanP57

    (@alanp57)

    You can manually create the table with the storage engine of your choice.

    CREATE TABLE IF NOT EXISTS <db-prefix>mgmlp_folders ( 
      post_id bigint(20) NOT NULL,
      folder_id bigint(20) NOT NULL,
      PRIMARY KEY (post_id)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8;

    Replace <db-prefix> with your site’s database prefix.

    Before creating this table, activate the Media Library Folders Reset plugin, and run the Database Reset option in order to start a fresh installation of the plugin.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘MyIsam only?’ is closed to new replies.