Hi,
The "could not load any order from your notification" is a message which is displayed when the "POST" is empty.
Paypal should be redirected by a plugin like the language filter or a system plugin.
It a logical that the order does not contain serial because the order have to be confirmed.
Orders "created" can't have serials so HikaSerial won't attached them.
With the language filter, there are some fixes like explain in this thread:
www.hikashop.com/en/forum/3-bug-report/3...ls-paypal.html#44077
It could be possible to modify the paypal plugin in order to force the language in the notification URL.[code type=php-brief]
if(str_pos(HIKASHOP_LIVE, 'de/') === false)
$notify_url = HIKASHOP_LIVE.'en/index.php?option=com_hikashop&ctrl=checkout&task=notify¬if_payment=paypal&tmpl=component&lang='.$locale.$url_itemid;
else
$notify_url = HIKASHOP_LIVE.'index.php?option=com_hikashop&ctrl=checkout&task=notify¬if_payment=paypal&tmpl=component&lang='.$locale.$url_itemid;
[/code]
Regards,
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.