Site Menu
Categories
Latest Comments
Subscribe
minitehnicus on
Fatal error: Allowed memory size of 33554432 bytes exhausted
Ken on
404 Error on Magento CMS Pages
Alex on
404 Error on Magento Product Page
webmasterdean on
Solve 500 Internal Server Error on Magento Installation
nathank on
Fatal error: Method Varien_Object::__tostring() cannot take arguments
Get all of our site updates delivered directly to your inbox by subscribing to our RSS feed below:
Popular Tags 500 error
Access Denied
admin login
admin panel
attributes
BASE URL
block hints
blocks
Blog
brand listing
brands
Cache
category listing
checkout
CMS
Google Analytics
Google Analytics in Magento
htaccess
InnoDB
Lightbox
localhost
magento
Magento-upgrade
Magento Blog
Magento Cleanup Tool
Magento Connect Manager
Magento htaccess
manufacturer
Menu
multi address
MySQL
Pages
path hints
PHP
product
quantity
Sample Data
Server
shipping
spped up magento
Static Blocks
Template
theme
WAMP
XAMPP
-
[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]...
-
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....
-
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]...
-
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...
-
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 ...
-
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/...
-
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....
-
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...

