• [MAGENTO FIX] Fatal error: Maximum function nesting level of ’100′ reached, aborting!
    If you are getting this error, that means its a problem with the xDebug settings. You need to increase the limit of the xdebug.max_nesting_level in your php.ini file. It seems to be set to 100 by default. I set mine to 1000 which solved the issue. [php]xdebug.max_nesting_level=1000[/php]...
    Read More Posted by | 0 Comments
    Posted on: January 16th, 2012
  • MAGENTO FIX : Too Many Redirects
    If you are experiencing error like, TOO MANY REDIRECTS on your Magento store, then the issue is because of your .htaccess file or your cache folder. Place a new copy of .htaccess from a fresh magento package and delete the cache and session folder as well. Then refresh and it should be good....
    Read More Posted by | 1 Comments
    Posted on: January 10th, 2012
  • Remove Community Poll from Magento Frontpage
    If you would like to remove community poll block from your Magento frontpage, then here is how to do it. CMS -> Homepage -> Custom Design -> Layout Update XML   [php]<reference name-"right"> <action method="unsetChild"><alias>poll</alias></action> </reference>[/php] If the above doesnt work, then you may also try this, [php]<reference name="right"> <action method="unsetChild"><alias>right.poll</alias></action> </reference>[/php]...
    Read More Posted by | 0 Comments
    Posted on: January 9th, 2012
  • Fatal error: Call to a member function setAttribute() on a non-object in app/code/core/Mage/Eav/Model/Entity/Attribute/Abstract.php on line 374
    If you are using Magento 1.4.x , then you might face a serious issue, where the product edit page will go blank or throw an error like, [php]Fatal error: Call to a member function setAttribute() on a non-object in app/code/core/Mage/Eav/Model/Entity/Attribute/Abstract.php on line 374[/php] So in order to fix it, do the following : Goto /app/code/core/Mage/Eav/Model/Entity/Attribute/Abstract.php Line around 374, replace the : [php]$this->_source = Mage::getModel($this->getSourceModel()) ->setAttribute($this);[/php] with: [php]if(is_object(Mage::getModel($this->getSourceModel()))){ $this->_source = Mag...
    Read More Posted by | 0 Comments
    Posted on: January 4th, 2012
  • Products not adding to Magento Cart
    If you are having products, but when you click on ADD TO CART, you might face a problem, where it wont get added to your shopping cart and it will keep showing, SHOPPING CART EMPTY, then here are the possible fixes , Reindex data. Clear the cache Run the database repair tool Change the session from FILES to DB from local.xml Increase the session  time from System > Configuration > Web  > Cookie Management ...
    Read More Posted by | 0 Comments
    Posted on: December 6th, 2011
  • Magento Index Error on Tag Aggregation Data
    Last week, while trying to upgrade a client site from 1.4.x to 1.6.x , I faced a weird issue, where the index management was getting stuck at Tag Aggregation Data. Here I what I did yo fix it : 1. Checked for InnoDB database collation.2 2. Verified the database with Database Repair Tool. 3. Then removed all the 4 tables related to TAGS , and dropped it. Then exported it from a clean 1.6 database and imported it. Cleaned the cache and reindexed then. 4. There is also a fix here, which worked for many, http://www.magentocommerce.com/boards/viewthread/264050/...
    Read More Posted by | 0 Comments
    Posted on: December 6th, 2011
  • Fix popup Image Blur for Magento Lightbox
    If you are using 3rd party Magento extensions for product image lightbox, then you might be facing any crazy issue, where your popup images gets blurred, since it doesnt get auto resized and shows the same size for all of the additional images. IN order to fix it, just goto the conifguration panel of that extension and make the field blank for SIZE OF POPUP IMAGE. CLear your cache and then you are done....
    Read More Posted by | 0 Comments
    Posted on: December 4th, 2011
  • Magento PayPal Express Checkout Not showing
    Are you looking to use PayPal Express Checkout feature in your Magento store, where the Paypal button shows on the cart page and the product details page as well, so that users can checkout quickly with Paypal. Easy and simple! So, if you are facing any issues like PayPal express checkout buttons not showing, then here is what you should do. Copy the paypal.xml from app/design/frontend/base/layout/ and paste it to your layout folder of your custom template. And then copy the addtocart.phtml from app/design/frontend/base/template/catalog/product/view/ and paste it to your template folder of your custom template. Refresh cache and check the website frontend no...
    Read More Posted by | 0 Comments
    Posted on: December 1st, 2011
Page 1 of 2312345...1020...Last »