Posts Tagged ‘Magento Problem’

How To Reset Admin Password in Magento

January 20, 2017

As an ecommerce website developer or magento website developer, sometime we  get the a situation when we forget the magento website admin access detail. To reset the password of any magento website is very simple. We just need to run...

How to show all attribute after layered navigation filter in Magento

April 10, 2015

Magento Layered Navigation is really good for filter the product but problem is that, if we select any attribute like color or price all other attribute hide which are not related to selected attribute. To show all the attribute after...

How to fix layered navigation filer URL in Magento?

April 2, 2015

Magento is really good eCommerce CMS in terms of functionality. Layered Navigation is really good feature of Magento to filter the product in frontend side. Only problem with the layered navigation filter is that it work with query string. for Example www.yourwebsitesite.com/category.html?color=120. Another...

isShippingLabelsAvailable : Magento Issue

March 30, 2012

Magento Version 1.6 has a bug related to isShippingLabelsAvailable() method. When you try to make shipment an order you may be get a error : Fatal error: Call to a member function isShippingLabelsAvailable() on a non-object in app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create/Items.php on line 132 This error...

Service Temporarily Unavailable in Magento

February 22, 2012

Some time we face the 503 error in Magento website. Reason behind it is Magento Downloader. If you will check Magento Downloader you will get a option to unable or disable the maintenance mode. You can go to Magento Downloader directly by adding "downloader"...

How to add static block to your phtml in Magento

January 31, 2012

Static Block plays a big role in magento to show the information, links, banner etc. on the Magento sites. All the website developer use static block in a different manner. below is the process to add static block in your...

How to download Magento connect

July 7, 2011

All the Magento programmer know, we can install the magento extenstion using magento connect manager. But sometime we face some problem to install like write permission or whatever. After that we realized, if we can download the magento extension and...

How to get product quantity : Magento

June 22, 2011

Sometimes we want to show remaining quantity of a product in our magento shop. Simple method to get product quantity is: <?php (int) Mage::getModel('cataloginventory/stock_item')->loadByProduct($_product)->getQty(); ?> It can be helpful to show an alert message like below: <?php $product_qty=(int) Mage::getModel('cataloginventory/stock_item')->loadByProduct($_product)->getQty(); if($product_qty<5)...

ERROR: failed to mkdir : Magento Problem

June 14, 2011

All the website developer (who works on Magento) know how to install the magento extension. We use magento downloader   to install extension. But sometimes we receive the an error “ERROR: failed to mkdir”. Generally you get the problem after...

Can not login into admin in localhost : Magento Problem

June 13, 2011

this is the most common problem we face when we install the magento in localhost. This is because of  session parameter. Really simple solution to commenting a single line. Below is the solution 1) go to root/app/code/core/Mage/Core/Model/Session/Abstract/ 2) Open the...