this is a dirty way to fix this issue, go to Fatal error: Call to a member function getName() on a non-object in app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php on line…
Leave a CommentMonth: February 2015
Linux : Check files & directories size
i think this is common problem after development phase, yes, server disk space… usually a developer having problem with this kind issue, especially if your…
Continue reading Linux : Check files & directories size
Leave a CommentMagento : List All Magento Cronjobs
here you go! echo ‘<pre>’; $kron = Mage::app()->getConfig()->getNode(‘crontab/jobs’); print_r($kron); here the example results Mage_Core_Model_Config_Element Object ( [core_clean_cache] => Mage_Core_Model_Config_Element Object ( [schedule] => Mage_Core_Model_Config_Element Object…
Continue reading Magento : List All Magento Cronjobs
Leave a CommentMagento : Force Update Qty at Shopping Cart
it takes >30mins to discover this shit (sorry) here you go $cart = Mage::getModel(‘checkout/cart’)->getQuote(); foreach ($cart->getAllItems() as $item) { $productName = $item->getName(); $sku = $item->getSku();…
Continue reading Magento : Force Update Qty at Shopping Cart
Leave a CommentMagento : Stupid way to disable required field from eav table
just discover how to did this for example you want disable required on postcode / zipcode field on frontend, first go to phpmyadmin, run this…
Continue reading Magento : Stupid way to disable required field from eav table
Leave a Comment