Hi,
Thanks for the access. It is a strange error that I didn't notice before.
I will investigate more about it. Do you have the latest Joomla version ? (there were different patchs and I think we does not see all impacts).
To fix the problem, I made a little patch (but today I am not sure this patch will be include like that in HikaShop).
You can edit the "component/com_hikashop/hikashop.php" and add this content:
$token = hikashop_getFormToken();
$isToken = JRequest::getVar($token, '');
if(!empty($isToken)) {
if(!JRequest::checkToken('request')) {
$app = JFactory::getApplication();
$app->input->request->set($token, 1);
}
}
Just before
$session = JFactory::getSession();
It will fix the problem when Joomla SEF is activated.
Regards,