Blog: Extra-ordinary

Fatal error: Unsupported operand types in Magento

Fatal error: Unsupported operand types in /public_html/app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php on line 657 It has very simple solution. Please follow below step. Just open /app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php file Find : $dataRow += $stockItemRows$productId; Replace with : $dataRow = array_merge($dataRow,$stockItemRows$productId);   Enjoy it.

Continue Reading

What is NoSQL?

NoSQL stand for Not Only SQL. A NoSQL database environment is, simply put, a non-relational and largely distributed database system that enables rapid, ad-hoc organization and analysis of extremely high-volume, disparate data types. NoSQL databases are sometimes referred to as cloud databases, non-relational databases, Big Data databases and a myriad of other terms and were developed in response to the …

Continue Reading