2013-10-15 77 views
-1

我嘗試了所有我在谷歌找到解決它的技巧,但無法修復它,請幫我一下也TR DELETE cpop.* FROM catalog_product_option_price AS cpop INNER JOIN catalog_product_option AS cpo ON cpo.option_id = cpop.option_id WHERE cpo.type = ‘checkbox’ OR cpo.type = ‘radio’ OR cpo.type = ‘drop_down’;DELETE cpotp.* FROM catalog_product_option_type_price AS cpotp INNER JOIN catalog_product_option_type_value AS cpotv ON cpotv.option_type_id = cpotp.option_type_id INNER JOIN catalog_product_option AS cpo ON cpotv.option_id = cpo.option_id WHERE cpo.type <> ‘checkbox’ AND cpo.type <> ‘radio’ AND cpo.type <> ‘drop_down’;請幫助修復magento無法初始化索引器進程。

回答

0

嘗試在你的SQL命令控制檯插入此

ALTER TABLE catalog_category_entity ENGINE=INNODB; 
ALTER TABLE core_store ENGINE=INNODB; 

我不你不知道你有什麼樣的問題,但是這對許多問題是非常有幫助的。希望它可以幫助你。

+0

我已經試過這PHTML自定義模塊或腳本做到這一點,但不會在所有的工作 – user2753425

0

您可以通過

for ($i = 1; $i <= 9; $i++) { 
    $process = Mage::getModel('index/process')->load($i); 
    $process->reindexAll(); 
} 
相關問題