Hallo,
habe meinen Shop von Version 4.0.1 auf 4.7.7 aktualisiert. Würde jetzt gerne meine Lieferanten zu Hersteller machen (war eine Änderung in 4.1), siehe http://wiki.oxidforge.org/Downloads/...rs_and_vendors
Habe den SQL Befehl
in phpmyadmin ausgeführt, bekomme aber diesen Fehler:
In der oxmanufacturerid sind nun Daten vorhanden, aber bei oxarticles tut sich nichts.
Weiß jemand Rat? DANKE
habe meinen Shop von Version 4.0.1 auf 4.7.7 aktualisiert. Würde jetzt gerne meine Lieferanten zu Hersteller machen (war eine Änderung in 4.1), siehe http://wiki.oxidforge.org/Downloads/...rs_and_vendors
Habe den SQL Befehl
Code:
INSERT INTO `oxmanufacturers` SELECT * FROM `oxvendor`;
UPDATE `oxmanufacturers` SET `oxmanufacturers`.`oxid` = MD5( `oxmanufacturers`.`oxid` );
UPDATE `oxarticles` SET `oxarticles`.`oxmanufacturerid` = MD5( `oxarticles`.`oxvendorid` ) WHERE `oxarticles`.`oxvendorid` != ;
DELETE FROM `oxvendor`;
UPDATE `oxarticles` SET `oxarticles`.`oxvendorid` = ;
Code:
Fehler
SQL-Befehl:
UPDATE `oxarticles` SET `oxarticles`.`oxmanufacturerid` = MD5( `oxarticles`.`oxvendorid` ) WHERE `oxarticles`.`oxvendorid` != ;
MySQL meldet:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
Weiß jemand Rat? DANKE