when i go to the cart i receveid this error in head of cart:
Warning: Invalid argument supplied for foreach() in /web/htdocs/www.xxx.xx/home/administrator/components/com_virtuemart/plugins/vmpsplugin.php on line 522
Warning: Invalid argument supplied for foreach() in /web/htdocs/www.xxx.xx/home/administrator/components/com_virtuemart/plugins/vmpsplugin.php on line 522
Warning: Invalid argument supplied for foreach() in /web/htdocs/www.xxx.xx/home/administrator/components/com_virtuemart/plugins/vmpsplugin.php on line 522
Warning: Invalid argument supplied for foreach() in /web/htdocs/www.xxx.xx/home/administrator/components/com_virtuemart/plugins/vmpsplugin.php on line 522
I use J1.5.25 and 1.7 whit virtuemart 2.0.1.d
Thanks
EDIT: I have this problem only whit j 1.5.25
Yes, I get the same warnings with j1.5x and VM 2.0.1.d
Try replace in /administrator/components/com_virtuemart/plugins/vmpsplugin.php on line 522
Replace :
foreach ($this->methods as $method) {
VmTable::bindParameterable($method, $this->_xParams, $this->_varsToPushParam);
}
By :
if (count($this->methods) ! = 0 ) {
foreach ($this->methods as $method) {
VmTable::bindParameterable($method, $this->_xParams, $this->_varsToPushParam);
}
}
Or if you configure a shipment and payment method I think the warning won't appear anymore.
I do have shipment and payment methods defined...