mproject3000 Posted March 20, 2018 Share Posted March 20, 2018 Bonjour, j'ai malencontreusement supprimé 2 tables dans phpmyadmin: ps_guest et ps_connectons Maintenant je n'ai plus accès à la liste de mes clients dans l'admin de Prestashop. J'ai essayé de les recréer mais je ne sais pas avec quels paramètres et si ça va aider: On me demande le nombre de colonnes et sur la page suivante les informations suivantes: Colonne Type Interclassement Attributs Null Défaut Extra Merci par avance pour votre aide ! Link to comment Share on other sites More sharing options...
Eolia Posted March 20, 2018 Share Posted March 20, 2018 Voici les requêtes à effectuer (pensez à modifier le préfixe si vous n'utilisez pas ps_ ) DROP TABLE IF EXISTS `ps_connections`; CREATE TABLE `ps_connections` ( `id_connections` int(10) unsigned NOT NULL AUTO_INCREMENT, `id_shop_group` int(11) unsigned NOT NULL DEFAULT '1', `id_shop` int(11) unsigned NOT NULL DEFAULT '1', `id_guest` int(10) unsigned NOT NULL, `id_page` int(10) unsigned NOT NULL, `ip_address` bigint(20) DEFAULT NULL, `date_add` datetime NOT NULL, `http_referer` varchar(255) DEFAULT NULL, PRIMARY KEY (`id_connections`), KEY `id_guest` (`id_guest`), KEY `date_add` (`date_add`), KEY `id_page` (`id_page`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS `ps_connections_page`; CREATE TABLE `ps_connections_page` ( `id_connections` int(10) unsigned NOT NULL, `id_page` int(10) unsigned NOT NULL, `time_start` datetime NOT NULL, `time_end` datetime DEFAULT NULL, PRIMARY KEY (`id_connections`,`id_page`,`time_start`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS `ps_connections_source`; CREATE TABLE `ps_connections_source` ( `id_connections_source` int(10) unsigned NOT NULL AUTO_INCREMENT, `id_connections` int(10) unsigned NOT NULL, `http_referer` varchar(255) DEFAULT NULL, `request_uri` varchar(255) DEFAULT NULL, `keywords` varchar(255) DEFAULT NULL, `date_add` datetime NOT NULL, PRIMARY KEY (`id_connections_source`), KEY `connections` (`id_connections`), KEY `orderby` (`date_add`), KEY `http_referer` (`http_referer`), KEY `request_uri` (`request_uri`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS `ps_guest`; CREATE TABLE `ps_guest` ( `id_guest` int(10) unsigned NOT NULL AUTO_INCREMENT, `id_operating_system` int(10) unsigned DEFAULT NULL, `id_web_browser` int(10) unsigned DEFAULT NULL, `id_customer` int(10) unsigned DEFAULT NULL, `javascript` tinyint(1) DEFAULT '0', `screen_resolution_x` smallint(5) unsigned DEFAULT NULL, `screen_resolution_y` smallint(5) unsigned DEFAULT NULL, `screen_color` tinyint(3) unsigned DEFAULT NULL, `sun_java` tinyint(1) DEFAULT NULL, `adobe_flash` tinyint(1) DEFAULT NULL, `adobe_director` tinyint(1) DEFAULT NULL, `apple_quicktime` tinyint(1) DEFAULT NULL, `real_player` tinyint(1) DEFAULT NULL, `windows_media` tinyint(1) DEFAULT NULL, `accept_language` varchar(8) DEFAULT NULL, `mobile_theme` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id_guest`), KEY `id_customer` (`id_customer`), KEY `id_operating_system` (`id_operating_system`), KEY `id_web_browser` (`id_web_browser`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 1 Link to comment Share on other sites More sharing options...
doekia Posted March 20, 2018 Share Posted March 20, 2018 essence, gpl, hybride ou diesel? Si c'est diesel: CREATE TABLE `PREFIX_connections` ( `id_connections` int(10) unsigned NOT NULL auto_increment, `id_shop_group` INT(11) UNSIGNED NOT NULL DEFAULT '1', `id_shop` INT(11) UNSIGNED NOT NULL DEFAULT '1', `id_guest` int(10) unsigned NOT NULL, `id_page` int(10) unsigned NOT NULL, `ip_address` BIGINT NULL DEFAULT NULL, `date_add` datetime NOT NULL, `http_referer` varchar(255) DEFAULT NULL, PRIMARY KEY (`id_connections`), KEY `id_guest` (`id_guest`), KEY `date_add` (`date_add`), KEY `id_page` (`id_page`) ) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8 COLLATION; CREATE TABLE `PREFIX_guest` ( `id_guest` int(10) unsigned NOT NULL auto_increment, `id_operating_system` int(10) unsigned DEFAULT NULL, `id_web_browser` int(10) unsigned DEFAULT NULL, `id_customer` int(10) unsigned DEFAULT NULL, `javascript` tinyint(1) DEFAULT '0', `screen_resolution_x` smallint(5) unsigned DEFAULT NULL, `screen_resolution_y` smallint(5) unsigned DEFAULT NULL, `screen_color` tinyint(3) unsigned DEFAULT NULL, `sun_java` tinyint(1) DEFAULT NULL, `adobe_flash` tinyint(1) DEFAULT NULL, `adobe_director` tinyint(1) DEFAULT NULL, `apple_quicktime` tinyint(1) DEFAULT NULL, `real_player` tinyint(1) DEFAULT NULL, `windows_media` tinyint(1) DEFAULT NULL, `accept_language` varchar(8) DEFAULT NULL, `mobile_theme` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id_guest`), KEY `id_customer` (`id_customer`), KEY `id_operating_system` (`id_operating_system`), KEY `id_web_browser` (`id_web_browser`) ) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8 COLLATION; 1 1 Link to comment Share on other sites More sharing options...
mproject3000 Posted March 21, 2018 Author Share Posted March 21, 2018 20 hours ago, Eolia said: Voici les requêtes à effectuer (pensez à modifier le préfixe si vous n'utilisez pas ps_ ) DROP TABLE IF EXISTS `ps_connections`; CREATE TABLE `ps_connections` ( `id_connections` int(10) unsigned NOT NULL AUTO_INCREMENT, `id_shop_group` int(11) unsigned NOT NULL DEFAULT '1', `id_shop` int(11) unsigned NOT NULL DEFAULT '1', `id_guest` int(10) unsigned NOT NULL, `id_page` int(10) unsigned NOT NULL, `ip_address` bigint(20) DEFAULT NULL, `date_add` datetime NOT NULL, `http_referer` varchar(255) DEFAULT NULL, PRIMARY KEY (`id_connections`), KEY `id_guest` (`id_guest`), KEY `date_add` (`date_add`), KEY `id_page` (`id_page`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS `ps_connections_page`; CREATE TABLE `ps_connections_page` ( `id_connections` int(10) unsigned NOT NULL, `id_page` int(10) unsigned NOT NULL, `time_start` datetime NOT NULL, `time_end` datetime DEFAULT NULL, PRIMARY KEY (`id_connections`,`id_page`,`time_start`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS `ps_connections_source`; CREATE TABLE `ps_connections_source` ( `id_connections_source` int(10) unsigned NOT NULL AUTO_INCREMENT, `id_connections` int(10) unsigned NOT NULL, `http_referer` varchar(255) DEFAULT NULL, `request_uri` varchar(255) DEFAULT NULL, `keywords` varchar(255) DEFAULT NULL, `date_add` datetime NOT NULL, PRIMARY KEY (`id_connections_source`), KEY `connections` (`id_connections`), KEY `orderby` (`date_add`), KEY `http_referer` (`http_referer`), KEY `request_uri` (`request_uri`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS `ps_guest`; CREATE TABLE `ps_guest` ( `id_guest` int(10) unsigned NOT NULL AUTO_INCREMENT, `id_operating_system` int(10) unsigned DEFAULT NULL, `id_web_browser` int(10) unsigned DEFAULT NULL, `id_customer` int(10) unsigned DEFAULT NULL, `javascript` tinyint(1) DEFAULT '0', `screen_resolution_x` smallint(5) unsigned DEFAULT NULL, `screen_resolution_y` smallint(5) unsigned DEFAULT NULL, `screen_color` tinyint(3) unsigned DEFAULT NULL, `sun_java` tinyint(1) DEFAULT NULL, `adobe_flash` tinyint(1) DEFAULT NULL, `adobe_director` tinyint(1) DEFAULT NULL, `apple_quicktime` tinyint(1) DEFAULT NULL, `real_player` tinyint(1) DEFAULT NULL, `windows_media` tinyint(1) DEFAULT NULL, `accept_language` varchar(8) DEFAULT NULL, `mobile_theme` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id_guest`), KEY `id_customer` (`id_customer`), KEY `id_operating_system` (`id_operating_system`), KEY `id_web_browser` (`id_web_browser`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 20 hours ago, Eolia said: Voici les requêtes à effectuer (pensez à modifier le préfixe si vous n'utilisez pas ps_ ) DROP TABLE IF EXISTS `ps_connections`; CREATE TABLE `ps_connections` ( `id_connections` int(10) unsigned NOT NULL AUTO_INCREMENT, `id_shop_group` int(11) unsigned NOT NULL DEFAULT '1', `id_shop` int(11) unsigned NOT NULL DEFAULT '1', `id_guest` int(10) unsigned NOT NULL, `id_page` int(10) unsigned NOT NULL, `ip_address` bigint(20) DEFAULT NULL, `date_add` datetime NOT NULL, `http_referer` varchar(255) DEFAULT NULL, PRIMARY KEY (`id_connections`), KEY `id_guest` (`id_guest`), KEY `date_add` (`date_add`), KEY `id_page` (`id_page`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS `ps_connections_page`; CREATE TABLE `ps_connections_page` ( `id_connections` int(10) unsigned NOT NULL, `id_page` int(10) unsigned NOT NULL, `time_start` datetime NOT NULL, `time_end` datetime DEFAULT NULL, PRIMARY KEY (`id_connections`,`id_page`,`time_start`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS `ps_connections_source`; CREATE TABLE `ps_connections_source` ( `id_connections_source` int(10) unsigned NOT NULL AUTO_INCREMENT, `id_connections` int(10) unsigned NOT NULL, `http_referer` varchar(255) DEFAULT NULL, `request_uri` varchar(255) DEFAULT NULL, `keywords` varchar(255) DEFAULT NULL, `date_add` datetime NOT NULL, PRIMARY KEY (`id_connections_source`), KEY `connections` (`id_connections`), KEY `orderby` (`date_add`), KEY `http_referer` (`http_referer`), KEY `request_uri` (`request_uri`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS `ps_guest`; CREATE TABLE `ps_guest` ( `id_guest` int(10) unsigned NOT NULL AUTO_INCREMENT, `id_operating_system` int(10) unsigned DEFAULT NULL, `id_web_browser` int(10) unsigned DEFAULT NULL, `id_customer` int(10) unsigned DEFAULT NULL, `javascript` tinyint(1) DEFAULT '0', `screen_resolution_x` smallint(5) unsigned DEFAULT NULL, `screen_resolution_y` smallint(5) unsigned DEFAULT NULL, `screen_color` tinyint(3) unsigned DEFAULT NULL, `sun_java` tinyint(1) DEFAULT NULL, `adobe_flash` tinyint(1) DEFAULT NULL, `adobe_director` tinyint(1) DEFAULT NULL, `apple_quicktime` tinyint(1) DEFAULT NULL, `real_player` tinyint(1) DEFAULT NULL, `windows_media` tinyint(1) DEFAULT NULL, `accept_language` varchar(8) DEFAULT NULL, `mobile_theme` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id_guest`), KEY `id_customer` (`id_customer`), KEY `id_operating_system` (`id_operating_system`), KEY `id_web_browser` (`id_web_browser`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; Merci infiniment !! ;-) Link to comment Share on other sites More sharing options...
mproject3000 Posted June 15, 2018 Author Share Posted June 15, 2018 On 20/03/2018 at 3:40 PM, doekia said: essence, gpl, hybride ou diesel? Si c'est diesel: CREATE TABLE `PREFIX_connections` ( `id_connections` int(10) unsigned NOT NULL auto_increment, `id_shop_group` INT(11) UNSIGNED NOT NULL DEFAULT '1', `id_shop` INT(11) UNSIGNED NOT NULL DEFAULT '1', `id_guest` int(10) unsigned NOT NULL, `id_page` int(10) unsigned NOT NULL, `ip_address` BIGINT NULL DEFAULT NULL, `date_add` datetime NOT NULL, `http_referer` varchar(255) DEFAULT NULL, PRIMARY KEY (`id_connections`), KEY `id_guest` (`id_guest`), KEY `date_add` (`date_add`), KEY `id_page` (`id_page`) ) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8 COLLATION; CREATE TABLE `PREFIX_guest` ( `id_guest` int(10) unsigned NOT NULL auto_increment, `id_operating_system` int(10) unsigned DEFAULT NULL, `id_web_browser` int(10) unsigned DEFAULT NULL, `id_customer` int(10) unsigned DEFAULT NULL, `javascript` tinyint(1) DEFAULT '0', `screen_resolution_x` smallint(5) unsigned DEFAULT NULL, `screen_resolution_y` smallint(5) unsigned DEFAULT NULL, `screen_color` tinyint(3) unsigned DEFAULT NULL, `sun_java` tinyint(1) DEFAULT NULL, `adobe_flash` tinyint(1) DEFAULT NULL, `adobe_director` tinyint(1) DEFAULT NULL, `apple_quicktime` tinyint(1) DEFAULT NULL, `real_player` tinyint(1) DEFAULT NULL, `windows_media` tinyint(1) DEFAULT NULL, `accept_language` varchar(8) DEFAULT NULL, `mobile_theme` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id_guest`), KEY `id_customer` (`id_customer`), KEY `id_operating_system` (`id_operating_system`), KEY `id_web_browser` (`id_web_browser`) ) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8 COLLATION; Bonjour, auriez-vous les requettes à effectuer pour la table ps_search_index ? Merci d'avance !! Link to comment Share on other sites More sharing options...
Eolia Posted June 15, 2018 Share Posted June 15, 2018 Solaire ? DROP TABLE IF EXISTS `ps_search_index`; CREATE TABLE `ps_search_index` ( `id_product` int(11) unsigned NOT NULL, `id_word` int(11) unsigned NOT NULL, `weight` smallint(4) unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`id_word`,`id_product`), KEY `id_product` (`id_product`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; Link to comment Share on other sites More sharing options...
Nawfel_hf Posted June 4, 2021 Share Posted June 4, 2021 Bonjour à tout le monde, j'ai possède la version prestashop 1.7.7.2 je n'ai plus accès à la liste de mes clients dans l'admin de Prestashop. sa m'affiche ce message : Quote SQLSTATE[42S02]: Base table or view not found: 1146 Table 'soukdubcom.ps_connections' doesn't exist j'ai tenté d'effectuer la requête indiquée dessus : sur phpMyAdmin il m'affiche ce message ; MySQL a répondu : #1064 - Erreur de syntaxe près de 'non signé NON NULL AUTO_INCREMENT, `id_shop_group` int(11) non signé NOT NU' à la ligne 2 j'ai tenté d'effectuer la requête via le back-office prestashop mais pas de changement. quelq'un pourra m'aider svp Quote SUPPRIMER LA TABLE SI EXISTE `ps_connections`; CREATE TABLE `ps_connections` ( `id_connections` int(10) non signé NON NULL AUTO_INCREMENT, `id_shop_group` int(11) non signé NOT NULL DEFAULT '1', `id_shop` int(11) non signé NOT NULL DEFAULT '1', `id_guest` int(10) non signé NON NULL, `id_page` int(10) non signé NON NULL, `ip_address` bigint(20) DEFAUT NULL, `date_add` datetime NON NULL, `http_referer` varchar(255) DEFAUT NULL, CLÉ PRIMAIRE (`id_connections`), CLÉ `id_guest` (`id_guest`), CLÉ `date_add` (`date_add`), CLÉ `id_page` (`id_page`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; Link to comment Share on other sites More sharing options...
Eolia Posted June 4, 2021 Share Posted June 4, 2021 https://shop.devcustom.net/tables.php Link to comment Share on other sites More sharing options...
Nawfel_hf Posted June 4, 2021 Share Posted June 4, 2021 Thank you Eolia for your feedback on the other hand I generated the request for ps_connections and when I wanted to run it on PhpMyAdmin it displays this message to me : Quote # MySQL returned an empty result (ie no row). the request to generate is attached; it is too long and I do not know if I made false manup I also have another error message that pops up when I click on a product : Quote Tabl **********.ps_statsserach doesn't exist 😵 Can you guide me please so that I can start my site 🤗 thank you in advance db_structure_p'.17.'.sql.txt Link to comment Share on other sites More sharing options...
Eolia Posted June 4, 2021 Share Posted June 4, 2021 mais qu'est-ce que vous avez fait ??? le préfixe c'est ps_ , pas ps_connections 1 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now