Have you tried creating the missing table manually?
Hi
You are missing a table. You can add it using this sql
Login into cpanel-> go to phpmyadmin -> Select your database -> click on SQL and paste below codes – >GO
CREATE TABLE Sql1081194_1.wp_termmeta (
meta_id bigint(20) unsigned NOT NULL AUTO_INCREMENT,
term_id bigint(20) unsigned NOT NULL DEFAULT ‘0’,
meta_key varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
meta_value longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (meta_id),
KEY term_id (term_id),
KEY meta_key (meta_key(191))
) ENGINE=InnoDB AUTO_INCREMENT=3255 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
Thank you very much!
Unfortunately my issue is more difficult to resolve.
I figured out that I made something wrong in the root.
Anyway your suggestion has been usefull