我正在使用 Magento 1.7.0.2,我严重陷入了这个问题。问题是,当我第一次搜索该术语时,它没有显示任何内容,你可以在这里看到它这是我第一次搜索术语 gem 时
,当我再次搜索同一个词时,Magento 显示以下错误
SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '1-512' for key 'PRIMARY'
Trace:
#0 /home/stagerig/public_html/includes/src/Varien_Db_Statement_Pdo_Mysql.php(110): Zend_Db_Statement_Pdo->_execute(Array)
#1 /home/stagerig/public_html/includes/src/__default.php(63012): Varien_Db_Statement_Pdo_Mysql->_execute(Array)
#2 /home/stagerig/public_html/includes/src/__default.php(52694): Zend_Db_Statement->execute(Array)
#3 /home/stagerig/public_html/includes/src/__default.php(53730): Zend_Db_Adapter_Abstract->query('INSERT INTO srl...', Array)
#4 /home/stagerig/public_html/includes/src/__default.php(54566): Zend_Db_Adapter_Pdo_Abstract->query('INSERT INTO srl...', Array)
#5 /home/stagerig/public_html/includes/src/MageCoders_DefaultSearch_Model_Mysql4_Fulltext.php(27): Varien_Db_Adapter_Pdo_Mysql->query('INSERT INTO srl...')
#6 /home/stagerig/public_html/includes/src/Mage_CatalogSearch_Model_Fulltext.php(136): MageCoders_DefaultSearch_Model_Mysql4_Fulltext->prepareResult(Object(Mage_CatalogSearch_Model_Fulltext), 'gem', Object(Mage_CatalogSearch_Model_Query))
#7 /home/stagerig/public_html/includes/src/Mage_CatalogSearch_Model_Resource_Fulltext_Collection.php(55): Mage_CatalogSearch_Model_Fulltext->prepareResult()
#8 /home/stagerig/public_html/includes/src/Mage_CatalogSearch_Model_Layer.php(58): Mage_CatalogSearch_Model_Resource_Fulltext_Collection->addSearchFilter('gem')
#9 /home/stagerig/public_html/includes/src/Mage_CatalogSearch_Model_Layer.php(42): Mage_CatalogSearch_Model_Layer->prepareProductCollection(Object(Mage_CatalogSearch_Model_Resource_Fulltext_Collection))
这些只是前几行,不是完整的,所有其他错误本质上都是相同的,表明文件存在一些问题......
我调查了这个问题,发现在
catalogsearch_result
magento 数据库中的表有一个名为 PRIMARY 的索引,并且由于该表而发生错误catalogsearch_quer
y表记录搜索词1062 Duplicate entry '1-512' for key '
PRIMARY 1是'
搜索查询词 ID 和数据库,512 是与 gem 查询工作相关的产品 ID- 我认为当 catalogusearch_result 表尝试再次更新查询字符串时会发生此错误,因为记录已经存在,因此会弹出此错误...
DONE SO FAR.. 5. 我清空了数据库中的所有日志表
我清空了 catalogsearch_results 和 catalogsearch_query 表,但再次弹出此错误
我下载了正确的magento版本,甚至替换了完整的
catalagsearch
文件夹,但没有白费..我试过
re-indexing
了,完全清除magento缓存(通过后端管理员和手动删除var
文件夹)三重禁用
CATALOGSEARCH
模块并重新启用它...尝试从 magento 论坛和谷歌搜索获得帮助,但没有任何证据证明对我有帮助......
我已经尝试了每一个选择,或者我知道,过去 4 天我一直在敲我的头,但一切都是徒劳的......
有人可以帮我吗,谢谢
为艾伦
class MageCoders_DefaultSearch_Model_Mysql4_Fulltext extends Mage_CatalogSearch_Model_Mysql4_Fulltext{
public function prepareResult($object, $queryText, $query)
{
$adapter = $this->_getWriteAdapter();
if ($query->getIsProcessed()) { return $this; }
$mainTable = $this->getTable('catalogsearch/result');
$queryText = mysql_escape_string(trim($queryText));
$product = Mage::getModel('catalog/product')->loadByAttribute('sku',$queryText);
if($product){
$sql = "INSERT INTO {$mainTable} SET query_id = '".$query->getId()."',
product_id = '".$product->getId()."',
relevance = '2'";
$adapter->query($sql);
}else{
$name = '%'.$queryText.'%';
$collection = Mage::getResourceModel('catalog/product_collection')
->addAttributeToFilter('name',array('like'=>$name));
if($collection->count()){
foreach($collection as $item){
$sql = "INSERT INTO {$mainTable} SET query_id = '".$query->getId()."',
product_id = '".$item->getId()."',
relevance = '1'";
$adapter->query($sql);
}
}
}
}
这是您提到的文件中的代码,
对我来说,数据传递正确,有逻辑错误或类似的东西,不太确定
看看你能不能多指导我一点..
谢谢..