|
|
Suppression Test - Tuto 2/2 : supprimer les produits "test" Il y a 3 Années, 11 Mois
|
Karma: 8
|
Pour supprimer des produits "test", avant l'import ou la création des produits finaux, il suffit de procéder par étape :
1) Désactiver le Cache de Magento
2) Se connecter à votre base de données avec PhpMyAdmin et exécuter la requête SQL suivante :
| Code : |
TRUNCATE TABLE `catalog_product_bundle_option`;
TRUNCATE TABLE `catalog_product_bundle_option_value`;
TRUNCATE TABLE `catalog_product_bundle_selection`;
TRUNCATE TABLE `catalog_product_entity_datetime`;
TRUNCATE TABLE `catalog_product_entity_decimal`;
TRUNCATE TABLE `catalog_product_entity_gallery`;
TRUNCATE TABLE `catalog_product_entity_int`;
TRUNCATE TABLE `catalog_product_entity_media_gallery`;
TRUNCATE TABLE `catalog_product_entity_media_gallery_value`;
TRUNCATE TABLE `catalog_product_entity_text`;
TRUNCATE TABLE `catalog_product_entity_tier_price`;
TRUNCATE TABLE `catalog_product_entity_varchar`;
TRUNCATE TABLE `catalog_product_link`;
TRUNCATE TABLE `catalog_product_link_attribute`;
TRUNCATE TABLE `catalog_product_link_attribute_decimal`;
TRUNCATE TABLE `catalog_product_link_attribute_int`;
TRUNCATE TABLE `catalog_product_link_attribute_varchar`;
TRUNCATE TABLE `catalog_product_link_type`;
TRUNCATE TABLE `catalog_product_option`;
TRUNCATE TABLE `catalog_product_option_price`;
TRUNCATE TABLE `catalog_product_option_title`;
TRUNCATE TABLE `catalog_product_option_type_price`;
TRUNCATE TABLE `catalog_product_option_type_title`;
TRUNCATE TABLE `catalog_product_option_type_value`;
TRUNCATE TABLE `catalog_product_super_attribute`;
TRUNCATE TABLE `catalog_product_super_attribute_label`;
TRUNCATE TABLE `catalog_product_super_attribute_pricing`;
TRUNCATE TABLE `catalog_product_super_link`;
TRUNCATE TABLE `catalog_product_enabled_index`;
TRUNCATE TABLE `catalog_product_website`;
TRUNCATE TABLE `catalog_product_entity`;
TRUNCATE TABLE `cataloginventory_stock`;
TRUNCATE TABLE `cataloginventory_stock_item`;
TRUNCATE TABLE `cataloginventory_stock_status`;
insert into `catalog_product_link_type`(`link_type_id`,`code`) values (1,'relation'),(2,'bundle'),(3,'super'),(4,'up_sell'),(5,'cross_sell');
insert into `catalog_product_link_attribute`(`product_link_attribute_id`,`link_type_id`,`product_link_attribute_code`,`data_type`) values (1,2,'qty','decimal'),(2,1,'position','int'),(3,4,'position','int'),(4,5,'position','int'),(6,1,'qty','decimal'),(7,3,'position','int'),(8,3,'qty','decimal');
insert into `cataloginventory_stock`(`stock_id`,`stock_name`) values (1,'Default');
|
Voilà, c'est fini !
Edit 11/06/2009
- - -
Pour les version de Magento 1.3.x (et peut-être quelques une antérieures, suivant si les 2 tables citées ci-contre sont présentes ?).
Il est également nécessaire de vider les tables suivantes :
catalog_category_product et catalog_category_product_index
Requête SQL pour ces deux tables :
| Code : |
TRUNCATE TABLE `catalog_category_product`;
TRUNCATE TABLE `catalog_category_product_index`;
|
|
|
|
|
|
|
|
Re:Suppression Test - Tuto 2/2 : supprimer les produits "test" Il y a 3 Années, 11 Mois
|
Karma: 1
|
|
Bon travail, merci !!!
|
|
|
|
|
ILOA
Platinum Boarder
Messages: 382
|
Re:Suppression Test - Tuto 2/2 : supprimer les produits "test" Il y a 1 Année, 8 Mois
|
Karma: 4
|
|
Sous la version MAGENTO 1.4.2 ... est ce que ces suppressions sont suffisantes ?
Existe t il un moyen RAPIDE de supprimer l'ensemble des produits ?
|
|
|
|
Besoin d'un site e-commerce, catalogue ou vitrine :
b**contact@i-loa.com**d
Réponse rapide
|
|
|