I ran into one problem in Magento. I have one Magento store with several website features that contains about 4,500 products. I want to reindex the product.
I had import of 4500 products via csv through the default magento functionality. after importing the product, the changes do not appear on the front side, so I went for index management and I found that two indexes are in processing state
1 Product Attributes 2 Flat Product Data
I have already taken the following steps:
1 try re-indexing it from admin system -> index management
2 try to do it manually by calling PHP script
require_once 'app/Mage.php'; umask( 0 ); Mage :: app( "default" ); $process = Mage::getSingleton('index/indexer')->getProcessByCode('catalog_product_flat'); $process->reindexAll();
OR
$indexingProcesses = Mage::getSingleton('index/indexer')->getProcessesCollection(); foreach ($indexingProcesses as $process) { $process->reindexEverything(); }
Also change the resolution of the var / locks folder to 777, rename this folder as well, and try to delete the .lock file that was created in this lock folder but did not get a solution.
I do not have SSH rights. So, is there any other solution that will help me solve the reindexing problem.
drsndodiya
source share