Hi,
It looks like your VM1 have some missing data.
In the file "administrator/components/com_hikashop/helpers/import/vm1.php" please replace
$d = array(
$id,
$pid,
"'product'",
$this->db->quote($c->category_name),
$this->db->quote($c->category_description),
'1',
(int)@$c->list_order,
$this->db->quote($nameKey),
$c->cdate,
$c->mdate,
"'all'",
'0'
);
By
$d = array(
$id,
$pid,
"'product'",
$this->db->quote($c->category_name),
$this->db->quote($c->category_description),
'1',
(int)@$c->list_order,
$this->db->quote($nameKey),
(int)@$c->cdate,
(int)@$c->mdate,
"'all'",
'0'
);
In order to force the "creation date" and "modification date" has integer (for the timestamp value).
Regards,