Site Menu
Categories
Latest Comments
Subscribe
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
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]...
-
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....
-
[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. ...
-
[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]...
-
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....
-
“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]...
-
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]...
-
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....


