Hi,
HikaShop 2.5.0 contains the fix for your issue with the VM2 import.
(After that, the VM import is not really compatible with VM3).
The fixes has been introduced in HikaShop 2.3.4
CF :
www.hikashop.com/support/support/documen...ashop-changelog.html
The modification affect the category_ordering (which is empty in your SQL query) in order to force the display of a number instead of an empty string (which was the difficult part in the debug ; to find in the image the precise error in all the text).
So in the VM helper import, the code is now :
$d = array(
$id,
$pid,
"'product'",
$this->db->quote($c->category_name),
$this->db->quote($c->category_description),
'1',
(int)@$c->ordering,
$this->db->quote($nameKey),
$this->db->quote($c->created_on),
$this->db->quote($c->modified_on),
"'all'",
'0'
);
Where you can see a " (int) " before the insert of the ordering value, to force it as a number.
Regards,