fk59 Posted October 11, 2012 Share Posted October 11, 2012 Hi, ich habe eine Kopie von einem Shop angefertigt (zwecks Aufbau eines zweiten Shops) und muss dort alles auf NULL setzten. Also Artikel, Bestellungen, einfach alles. Also praktisch die ganzen Inhalte löschen (Ausnahme:Konfiguration, Module etc.). Wie mache ich das am besten? Geht das überhaupt? Oder wäre es sinnvoller, einen neuen aufzusetzen und die Shop-Settings zu importieren? Thx und ciao Frank Link to comment Share on other sites More sharing options...
guest* Posted October 11, 2012 Share Posted October 11, 2012 Reseten geht leider nicht. Es gibt aber Module mit denen man alles löschen kann. Allerdings kenne ich keines das kostenlos ist. In den Kauf-Addons wirst du fündig. Sonst nur mit direkten Eingriff in die Datenbank, wenn man die Abhängigkeiten von PS kennt und die Tabellen. Nur für wirklich fortgeschrittenen Usern die sich mit SQL-Befehle auskennen. Einen neue Shop installieren und dann Shop settings importieren - habe ich ehrlich gesagt noch nie ausprobiert. Sollte funktionieren, aber ohne Obligo !! Die Tabellen ps_configuration bzw. ps_modules wären da relevant. Sollen da noch die Versanddienste auch bleiben, dann musst du auch noch alle ps_carrier, sowie ps_zone, falls du eigene Zonen eingerichtet hast importieren. Sollen die Steuern, falls was geändert wurde auch mitgehen, dann alles was mit ps_tax zu tun hat. Sollen die CMS-Seiten auch mitgehen, dann auch alle ps_CMS kopieren. Die Module selbst haben auch eigene ps_ Tabellen, wo teilweise die settings geschrieben werden. Die müsstest du auch kopieren, wenn sie gleich bleiben sollen. Link to comment Share on other sites More sharing options...
guest* Posted November 2, 2012 Share Posted November 2, 2012 Habe etwas vergessen. Im BO resetten geht natürlich nicht, aber per SQL-Abfrage, wenn du dich damit auskennst: Hack gilt für PS 1.3. und PS 1.4. TRUNCATE TABLE `ps_customer`; TRUNCATE TABLE `ps_customer_group`; TRUNCATE TABLE `ps_address`; TRUNCATE TABLE `ps_orders`; TRUNCATE TABLE `ps_order_detail`; TRUNCATE TABLE `ps_order_discount`; TRUNCATE TABLE `ps_order_history`; TRUNCATE TABLE `ps_order_message`; TRUNCATE TABLE `ps_order_message_lang`; TRUNCATE TABLE `ps_order_return`; TRUNCATE TABLE `ps_order_return_detail`; TRUNCATE TABLE `ps_order_slip`; TRUNCATE TABLE `ps_order_slip_detail`; TRUNCATE TABLE `ps_message`; TRUNCATE TABLE `ps_message_readed`; TRUNCATE TABLE `ps_cart`; TRUNCATE TABLE `ps_cart_product`; TRUNCATE TABLE `ps_cart_discount`; TRUNCATE TABLE `ps_discount_quantity`; TRUNCATE TABLE `ps_product`; TRUNCATE TABLE `ps_product_attachment`; TRUNCATE TABLE `ps_product_attribute`; TRUNCATE TABLE `ps_product_attribute_combination`; TRUNCATE TABLE `ps_product_attribute_image`; TRUNCATE TABLE `ps_product_download`; TRUNCATE TABLE `ps_product_lang`; TRUNCATE TABLE `ps_product_sale`; TRUNCATE TABLE `ps_product_tag`; TRUNCATE TABLE `ps_manufacturer`; TRUNCATE TABLE `ps_manufacturer_lang`; TRUNCATE TABLE `ps_supplier`; TRUNCATE TABLE `ps_supplier_lang`; TRUNCATE TABLE `ps_tag`; TRUNCATE TABLE `ps_category`; TRUNCATE TABLE `ps_category_group`; TRUNCATE TABLE `ps_category_lang`; TRUNCATE TABLE `ps_category_product`; INSERT INTO `ps_category` (`id_category` ,`id_parent` ,`level_depth` ,`active` ,`date_add` ,`date_upd` ) VALUES ('1', '0', '0', '1', '2012-11-01 10:52:43', '2012-11-01 10:52:47'); INSERT INTO `ps_category_group` (`id_category` ,`id_group` ) VALUES ('1', '1'); INSERT INTO `ps_category_lang` (`id_category` ,`id_lang` ,`name` ,`description` ,`link_rewrite` ,`meta_title` ,`meta_keywords` ,`meta_description`) VALUES ('1', '1', 'Home', NULL , 'home', NULL , NULL , NULL ), ('1', '2', 'Acueil', NULL , 'home', NULL , NULL , NULL), ('1', '3', 'Home', NULL , 'home', NULL , NULL , NULL); TRUNCATE TABLE `ps_wishlist`; TRUNCATE TABLE `ps_wishlist_email`; TRUNCATE TABLE `ps_wishlist_product`; TRUNCATE TABLE `ps_wishlist_product_cart`; Das setzt den Shop in Originalzustand, jedoch ohne Demo (Kunden, Bestellungen, Produkte, Kategorien, Lieferanten, Hersteller, usw. usw..) 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