@ClicShopping,
Thank you for this update, yes work for me now
@GuillaumeSochon
look this error in your log
[23-Aug-2023 03:18:24 America/New_York] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'sogu7276_clic451.csw2_marketplace_file_informations' doesn't exist in /home/sogu7276/shop/includes/ClicShopping/OM/Db.php:107
You must applied this patch in your phpMyadmin.
Before the latest release marketplace_file_informations inside schema directory was not correct, a patch has been applied and resolve this problem.
CREATE TABLE `clic_marketplace_file_informations` (
`id` int(11) NOT NULL,
`file_id` int(11) NOT NULL,
`file_name` varchar(255) DEFAULT NULL,
`date_created` date DEFAULT NULL,
`date_updated` date DEFAULT NULL,
`file_version` varchar(255) DEFAULT NULL,
`file_downloads` int(11) NOT NULL,
`file_rating` int(11) NOT NULL,
`file_prices` decimal(15,4) DEFAULT NULL,
`file_date_added` date DEFAULT NULL,
`file_url_screenshot` text DEFAULT NULL,
`file_url_download` text DEFAULT NULL,
`is_installed` tinyint(4) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
--
-- Index pour les tables déchargées
--
--
-- Index pour la table `clic_marketplace_file_informations`
--
ALTER TABLE `clic_marketplace_file_informations`
ADD PRIMARY KEY (`id`),
ADD KEY `index_file_id` (`file_id`);
--
-- AUTO_INCREMENT pour les tables déchargées
--
--
-- AUTO_INCREMENT pour la table `clic_marketplace_file_informations`
--
ALTER TABLE `clic_marketplace_file_informations`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
## patch
ALTER TABLE `clic_marketplace_file_informations` CHANGE `is_installed` `is_installed` TINYINT(4) NOT NULL DEFAULT '0';
ALTER TABLE `clic_marketplace_categories` CHANGE `sort_order` `sort_order` INT(3) NULL DEFAULT '0';
ALTER TABLE `clic_marketplace_categories` CHANGE `parent_id` `parent_id` INT(11) NOT NULL DEFAULT '0';