Hi,
Thanks for the report.
It was a stupid mistake of mine when I integrated the support of HIkaSerial in HikaMarket.
You can re-download HikaMarket 1.6.6 to get the patch or you can directly update the file
"administrator/components/com_hikamarket/helpers/helper.php" and replace
if($namespace == 'hikamarket')
$className = $class . 'Market' . ucfirst($group);
if($namespace == 'hikaserial')
$className = $class . 'Serial' . ucfirst($group);
else
$className = $class . ucfirst($group);
By
if($namespace == 'hikamarket')
$className = $class . 'Market' . ucfirst($group);
else if($namespace == 'hikaserial')
$className = $class . 'Serial' . ucfirst($group);
else
$className = $class . ucfirst($group);
So HikaMarket uploader system will be able to instantiate the product controller to get the upload settings and perform the image upload.
Regards,