Welcome to the Joomla forum?
Did the upgrade from Joomla 4.x finish all right? Check from the log file administrator/logs/joomla_update.php.
If the database tables josqd_finder_tokens and josqd_finder_tokens_aggregate do not exist, use phpMyAdmin or a similar MySQL client application from the cPanel provided by your host and run the following two MySQL CREATE statements:
Did the upgrade from Joomla 4.x finish all right? Check from the log file administrator/logs/joomla_update.php.
If the database tables josqd_finder_tokens and josqd_finder_tokens_aggregate do not exist, use phpMyAdmin or a similar MySQL client application from the cPanel provided by your host and run the following two MySQL CREATE statements:
Code:
CREATE TABLE `josqd_finder_tokens` ( `term` varchar(75) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `stem` varchar(75) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `common` tinyint unsigned NOT NULL DEFAULT '0', `phrase` tinyint unsigned NOT NULL DEFAULT '0', `weight` float unsigned NOT NULL DEFAULT '1', `context` tinyint unsigned NOT NULL DEFAULT '2', `language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', KEY `idx_word` (`term`), KEY `idx_stem` (`stem`), KEY `idx_context` (`context`), KEY `idx_language` (`language`)) ENGINE=MEMORY DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
Code:
CREATE TABLE `josqd_finder_tokens_aggregate` ( `term_id` int unsigned NOT NULL, `term` varchar(75) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `stem` varchar(75) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `common` tinyint unsigned NOT NULL DEFAULT '0', `phrase` tinyint unsigned NOT NULL DEFAULT '0', `term_weight` float unsigned NOT NULL DEFAULT '0', `context` tinyint unsigned NOT NULL DEFAULT '2', `context_weight` float unsigned NOT NULL DEFAULT '0', `total_weight` float unsigned NOT NULL DEFAULT '0', `language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', KEY `token` (`term`), KEY `keyword_id` (`term_id`)) ENGINE=MEMORY DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
Statistics: Posted by toivo — Wed Mar 20, 2024 7:58 am