Angie7 Posted March 5, 2021 Share Posted March 5, 2021 (edited) Bonjour, J'essaie d'intégrer dans mon back office presta shop un fichier pscleaner.zip ci-annexé qui m'a été conseiller car le module pscleaner ne se trouvait pas disponible dans mes modules de base. Quand j'essaie de l'intégrer ce fichier via mon backoffice, je reçois un message d'erreur qui m'indique ceci : Ce fichier ne semble pas être un fichier .zip de module valide. Au départ, je voulais simplement avoir accès au module gratuit permettant le nettoyage de ma boutique en un seul click comme le met en avant prestashop. Comme je n'arrive pas à en faire le téléchargement, qui peut m'aider ? Merci beaucoup, Angie7 pscleaner-2.1.0.zip Edited August 30, 2022 by Angie7 (see edit history) Link to comment Share on other sites More sharing options...
Angie7 Posted March 5, 2021 Author Share Posted March 5, 2021 Rehello, J'ai essayé une autre version et finalement, cela à marché comme quoi le téléchargement était OK mais il n'apparaît pas dans ma liste du back office 😞 Avez-vous une idée pourquoi alors que le téléchargement a été concluant ? Merci, Angie7 Link to comment Share on other sites More sharing options...
Eolia Posted March 5, 2021 Share Posted March 5, 2021 Effectivement il n'est pas valide. Le nom du répertoire dans le zip doit être le même que celui de la classe PHP, donc pscleaner et non pas pscleaner-2.1.0 Attention quand même car ce module a été abandonné par Prestashop il y a 8 mois suite aux soucis d'incompatibilités... Link to comment Share on other sites More sharing options...
Impatient Posted May 6, 2021 Share Posted May 6, 2021 Any alternative to that module? I am testing an import with several thousand products and need to delete quickly all the products. Any suggestion? Thanks Navid Link to comment Share on other sites More sharing options...
Mediacom87 Posted May 6, 2021 Share Posted May 6, 2021 Il y a 3 heures, Impatient a dit : Any alternative to that module? I am testing an import with several thousand products and need to delete quickly all the products. Any suggestion? Thanks Navid Merci de parler en français dans le forum français ou d’intervenir dans la section correspondant à votre langue. Link to comment Share on other sites More sharing options...
Eolia Posted May 6, 2021 Share Posted May 6, 2021 si c'est uniquement des produits, effectuez ces requêtes SQL: SET foreign_key_checks = 0; TRUNCATE TABLE `'._DB_PREFIX_.'accessory`; TRUNCATE TABLE `'._DB_PREFIX_.'accessory_product`; TRUNCATE TABLE `'._DB_PREFIX_.'attribute`; TRUNCATE TABLE `'._DB_PREFIX_.'attribute_group`; TRUNCATE TABLE `'._DB_PREFIX_.'attribute_group_lang`; TRUNCATE TABLE `'._DB_PREFIX_.'attribute_group_shop`; TRUNCATE TABLE `'._DB_PREFIX_.'attribute_impact`; TRUNCATE TABLE `'._DB_PREFIX_.'attribute_lang`; TRUNCATE TABLE `'._DB_PREFIX_.'attribute_shop`; TRUNCATE TABLE `'._DB_PREFIX_.'cart_product`; TRUNCATE TABLE `'._DB_PREFIX_.'category_product`; TRUNCATE TABLE `'._DB_PREFIX_.'feature_product`; TRUNCATE TABLE `'._DB_PREFIX_.'image`; TRUNCATE TABLE `'._DB_PREFIX_.'image_lang`; TRUNCATE TABLE `'._DB_PREFIX_.'image_shop`; TRUNCATE TABLE `'._DB_PREFIX_.'product`; TRUNCATE TABLE `'._DB_PREFIX_.'product_attachment`; TRUNCATE TABLE `'._DB_PREFIX_.'product_attribute`; TRUNCATE TABLE `'._DB_PREFIX_.'product_attribute_combination`; TRUNCATE TABLE `'._DB_PREFIX_.'product_attribute_image`; TRUNCATE TABLE `'._DB_PREFIX_.'product_attribute_shop`; TRUNCATE TABLE `'._DB_PREFIX_.'product_carrier`; TRUNCATE TABLE `'._DB_PREFIX_.'product_country_tax`; TRUNCATE TABLE `'._DB_PREFIX_.'product_download`; TRUNCATE TABLE `'._DB_PREFIX_.'product_group_reduction_cache`; TRUNCATE TABLE `'._DB_PREFIX_.'product_lang`; TRUNCATE TABLE `'._DB_PREFIX_.'product_sale`; TRUNCATE TABLE `'._DB_PREFIX_.'product_shop`; TRUNCATE TABLE `'._DB_PREFIX_.'product_supplier`; TRUNCATE TABLE `'._DB_PREFIX_.'product_tag`; TRUNCATE TABLE `'._DB_PREFIX_.'specific_price`; TRUNCATE TABLE `'._DB_PREFIX_.'specific_price_priority`; TRUNCATE TABLE `'._DB_PREFIX_.'stock_available`; TRUNCATE TABLE `'._DB_PREFIX_.'stock`; TRUNCATE TABLE `'._DB_PREFIX_.'stock_mvt`; 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