我尝试了我在谷歌上找到的所有技巧来解决它但无法修复它请帮助我也解决它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’;
问问题
98 次
2 回答
0
尝试将其插入您的 SQL 命令控制台
ALTER TABLE catalog_category_entity ENGINE=INNODB;
ALTER TABLE core_store ENGINE=INNODB;
我不知道你有什么样的问题,但这对很多问题很有帮助。希望它可以帮助你。
于 2013-10-15T12:58:19.607 回答
0
您可以通过 phtml 中的自定义模块或脚本来完成
for ($i = 1; $i <= 9; $i++) {
$process = Mage::getModel('index/process')->load($i);
$process->reindexAll();
}
于 2013-10-16T08:20:09.210 回答