Archive for the ‘Magento Tutorials’ Category
  • Get your Drop-down and Multi Select Attributes on Magento
    Are you having any Drop-down or Multi-select attribute and you want to show those values on your Magento frontend ? So, here is how to do it. [php]$attribute = Mage::getModel('eav/config')->getAttribute('catalog_product', 'attribute_code_here'); $array = array(); foreach ($attribute->getSource()->getAllOptions(true, true) as $option){ if($option['label'] != ""){ // make sure we don't store the empty ones $array[$option['value']] = $option['label']; } } var_dump($array);[/php]...
    Read More Posted by | 0 Comments
    Posted on: May 12th, 2012
  • Catalog Search Index Index process is working now. Please try run this process later.
    If you are getting such error, "Catalog Search Index Index process is working now. Please try run this process later." That means the index processor is not able to index your database. Most likely, this issue is due to the permission problems at the var/locks folder. Just fix the permissions and you are done....
    Read More Posted by | 0 Comments
    Posted on: March 1st, 2012
  • [Magento Fix] Flat Catalog module has a limit of 64 filterable and/or sort able attributes.
    If you are getting this error, "Flat Catalog module has a limit of 64 filterable and/or sort able attributes." then here is what you can do to fix this. Just goto to your attributes set page and see, how many attributes are SORTABLE and FILTERABLE. Just go into few of them and switch off the SORTABLE AND FILTERABLE option for those attributes and that will fix it. Clear cache, before you check. Also, dont forget to reindex data. ...
    Read More Posted by | 0 Comments
    Posted on: February 16th, 2012
  • [FIX] Magento Charts not working
    Recently we came across an issue, where the Magento charts were not showing. After hours of debugging, we tried one method, which fixed it. Here it is, how we solved it. File: \web\app\design\adminhtml\default\default\template\dashboard\graph.phtml [php]<p style="<?php echo $_containerStyle?>"><img src="<?php echo $this->getChartUrl(false) ?>” alt="chart" title="chart" /></p> [/php] Just change this part of the , [php]getChartUrl(false) ?>[/php] to [php]getChartUrl(true) ?>[/php]...
    Read More Posted by | 0 Comments
    Posted on: February 10th, 2012
  • The URL “” is invalid.Response from server isn’t valid.
    If you are getting this error on Magento install screen, then just check the option, SKIP BASE URL VALIDATION and you should be good to go....
    Read More Posted by | 0 Comments
    Posted on: February 9th, 2012
  • “Source model “metarobots/product_attribute_source_unit” not found for attribute “meta_robots”
    If you have recently upgraded your Magento store, and getting this, “Source model “metarobots/product_attribute_source_unit” not found for attribute “meta_robots” Then here is the solution : Goto phpmyadmin and run this below SQL command, [sql] DELETE FROM `eav_attribute` WHERE `eav_attribute`.`attribute_code` = 'meta_robots'; DELETE FROM `core_resource` WHERE CODE = 'metarobots_setup'; [/sql]...
    Read More Posted by | 0 Comments
    Posted on: February 9th, 2012
  • Source model “featuredproducts/entity_attribute_source_abstract_category” not found for attribute “aw_fp_category”
    If you have recently upgraded your Magento store, and getting this, Source model "featuredproducts/entity_attribute_source_abstract_category" not found for attribute "aw_fp_category" Then here is the solution : Goto phpmyadmin and run this below SQL command, [sql] DELETE FROM `eav_attribute` WHERE `eav_attribute`.`attribute_code` = 'aw_fp_category'; DELETE FROM `core_resource` WHERE CODE = 'featuredproducts_setup'; [/sql]...
    Read More Posted by | 0 Comments
    Posted on: February 9th, 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
Page 1 of 1112345...10...Last »