Description: Amjath.com, a tech blog by a software engineer, to share the ideas, programming techniques, computer tips and tricks etc.
wordpress development (255) magento development (76) wordpress blog (44) typo3 development (5) magento blog (1) typo3 blog (1)
Try the following to fix the issue Make sure “/var” and “/var/locks” have 777 directory permission Delete all the files in “/var/locks” Clear cache and try to reindex now from the admin If re-index from admin
Go to the Shell folder cd root_folder/shell To execute full reindex, use the below command php -f indexer.php reindexall Commands for individual reindexes are given below php indexer.php --reindex catalog_product_attribute php indexer.php
Use the below code to check whether a module is enabled or not echo Mage::getConfig()->getModuleConfig('Module_Name')->is('active', 'true'); echo Mage::helper('core')->isModuleEnabled('Module_Name'); Cheers! Amjath