Yesterday when i was working in Magento API V2, i met with an issue. I was able to create product using WSDL xml in Magento. However, i w...
Wednesday, December 6, 2017
Wednesday, November 8, 2017
Magento Security Scan tool - New feature
Shyam Krishna Sreekumar
November 08, 2017
Finally good news from Magento team!!! Reference: https://magento.com/blog/magento-news/introducing-new-magento-security-scan-tool ...
Sunday, November 5, 2017
Can't create directory Magento 2 admin error
Shyam Krishna Sreekumar
November 05, 2017
Yesterday when i was playing with Magento 2 admin editing the Design Configuration section, i was stuck with an error: Can't create d...
Thursday, November 2, 2017
Increment alphabets like numbers in php
Shyam Krishna Sreekumar
November 02, 2017
Today i faced a situation to increment alphabet in a loop. So how did i achieved it? Simple, code is provided below. $xi = 'A';...
Tuesday, October 31, 2017
Passing custom variable or data from cms page to a phtml file
Shyam Krishna Sreekumar
October 31, 2017
Like the setData mentioned in this link: setData , we can pass variable or data from cms page also. {{block type="yourmod/testblock...
Passing custom variable from Magento phtml to block template
Shyam Krishna Sreekumar
October 31, 2017
For passing variable or data from a controller or phtml file to template block, we can use setData method. We can then receive it in the ...
Tuesday, October 17, 2017
Magento PHP Fatal error: Uncaught exception 'Mage_Core_Exception' with message 'Cannot complete this operation from non-admin area.
Shyam Krishna Sreekumar
October 17, 2017
Yesterday when i was trying to write a custom code for deleting product, i got stuck with a problem. "PHP Fatal error: Uncaught exc...
Tuesday, September 12, 2017
Locate a file using a part of the name - Linux
Shyam Krishna Sreekumar
September 12, 2017
Sometimes we might need to locate a file and we doesn't know the full name. So the available option is the check via terminal using som...
Friday, September 1, 2017
redirect https to http for a certain file .htaccess
Shyam Krishna Sreekumar
September 01, 2017
Today i needed to redirect for a specific URL to http only. Since whole site was loaded in https, i have done a lil bit scratch on my head ...
Tuesday, July 25, 2017
Today i doubted my laptop is draining so quickly. So i checked online whether there is any useful thing we could get for checking this onli...
Friday, July 14, 2017
Recently i met with an issue in Wordpress Admin regarding the memory size getting exhausted for the custom post type listing page(all post...
Wednesday, February 8, 2017
Get all configurable products with out of stock status Magento
Shyam Krishna Sreekumar
February 08, 2017
$_productCollection = Mage::getResourceModel('catalog/product_collection') ->addAttributeToSelect('*') ...