.

.

Magento Unsupported operand types in app\code\core\Mage\ImportExport\Model\Export\Entity\Product.php on line 875

if we are getting an error while product export in Magento (Fatal error: Unsupported operand types in ../app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php on line 873)
Simply open this file /app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php and go to line number 873.
/* Find */
$dataRow += $stockItemRows[$productId];
/*Replace with*/
$dataRow = array_merge($dataRow,$stockItemRows[$productId]);
This will fix your problem of product export. Please do not write in core file and user proper rewrite procedure.


EmoticonEmoticon