在Magento 2.2.5上以编程方式保存产品时,我遇到了这个问题
在任何模块中,如果我在多个产品的循环中执行$product->save();
或$this->productRepository->save($product);
。我得到:
PDOException:SQLSTATE [23000]:违反完整性约束:1062 / home / dev3 / www / vendor / magento / zendframework1 / library /中的键“ URL_REWRITE_REQUEST_PATH_STORE_ID”重复的条目“ the-lipstick.html-1” Zend / Db / Statement / Pdo.php:228
该错误类似于此处描述的错误:https://www.human-element.com/url-key-specified-store-already-exists-magento-2/
产品可以通过管理区域登录保存。
到目前为止,任何建议的修复程序(包括修改核心文件(DBStorage.php)的修复程序)都无法在2.2.5上运行。
到目前为止我尝试过的是: 1.从https://www.human-element.com/url-key-specified-store-already-exists-magento-2/修复 2.从https://magento.stackexchange.com/questions/210359/magento-2-product-url-rewrite-issue
修复请为M 2.2.5建议解决方案/修复程序
答案 0 :(得分:0)
经过迁移和一周的深入研究,对我唯一有用的是https://www.safemage.com/url-optimization-after-migration-magento-2.html
我必须降级到2.2.7才能使用它。它说它可以在2.3上运行,但不能。
答案 1 :(得分:0)
在互联网上看了几天之后,我找不到确切的解决方案。 然后我发现,如果我们更改类别的URLKEY,它将不会显示此错误,所以我已经做到了。
$category->setPath($parentCategory->getPath())
->setParentId($parentId)
->setName('test1')
->setIsActive(true)
->setUrlKey(rand(1,1000000000));
$category->save();
我使用随机函数使用 -> setUrlKey(rand(1,1000000000)); 在数据库中随机添加类别, 重复的类别名称,并带有一些随机的否等 如果帮助您放弃,错误就会消失。谢谢
答案 2 :(得分:0)
我的修正: 在di.xml-
<preference for="Magento\UrlRewrite\Model\Storage\DbStorage" type="MyCompany\FixUrls\Model\ProductUrlFix" />
在ProductFixUrl中编写以下两个函数:
protected function doReplace(array $urls){
$this->deleteOld($urls);
$data = [];
$storeId_requestPaths = [];
foreach ($urls as $url) {
$storeId = $url->getStoreId();
$requestPath = $url->getRequestPath();
// Skip if is exist in the database
$sql = "SELECT * FROM url_rewrite where store_id = $storeId and request_path = '$requestPath'";
$exists = $this->connection->fetchOne($sql);
if ($exists) {
continue;
}
$storeId_requestPaths[] = $storeId . '-' . $requestPath;
$data[] = $url->toArray();
}
try {
$n = count($storeId_requestPaths);
for ($i = 0; $i < $n - 1; $i++) {
for ($j = $i + 1; $j < $n; $j++) {
if ($storeId_requestPaths[$i] == $storeId_requestPaths[$j]) {
unset($data[$j]);
}
}
}
parent::insertMultiple($data);
} catch (\Magento\Framework\Exception\AlreadyExistsException $e) {
/** @var \Magento\UrlRewrite\Service\V1\Data\UrlRewrite[] $urlConflicted */
$urlConflicted = [];
foreach ($urls as $url) {
$urlFound = parent::doFindOneByData(
[
UrlRewriteData::REQUEST_PATH => $url->getRequestPath(),
UrlRewriteData::STORE_ID => $url->getStoreId(),
]
);
if (isset($urlFound[UrlRewriteData::URL_REWRITE_ID])) {
$urlConflicted[$urlFound[UrlRewriteData::URL_REWRITE_ID]] = $url->toArray();
}
}
if ($urlConflicted) {
throw new \Magento\UrlRewrite\Model\Exception\UrlAlreadyExistsException(
__('URL key for specified store already exists.'),
$e,
$e->getCode(),
$urlConflicted
);
} else {
throw $e->getPrevious() ?: $e;
}
}
return $urls;
}
/**
* @param UrlRewrite[] $urls
*
* @return void
*/
public function deleteOld(array $urls)
{
$oldUrlsSelect = $this->connection->select();
$oldUrlsSelect->from(
$this->resource->getTableName(self::TABLE_NAME)
);
/** @var UrlRewrite $url */
foreach ($urls as $url) {
$oldUrlsSelect->orWhere(
$this->connection->quoteIdentifier(
UrlRewrite::ENTITY_TYPE
) . ' = ?',
$url->getEntityType()
);
$oldUrlsSelect->where(
$this->connection->quoteIdentifier(
UrlRewrite::ENTITY_ID
) . ' = ?',
$url->getEntityId()
);
$oldUrlsSelect->where(
$this->connection->quoteIdentifier(
UrlRewrite::STORE_ID
) . ' = ?',
$url->getStoreId()
);
}
// prevent query locking in a case when nothing to delete
$checkOldUrlsSelect = clone $oldUrlsSelect;
$checkOldUrlsSelect->reset(Select::COLUMNS);
$checkOldUrlsSelect->columns('count(*)');
$hasOldUrls = (bool) $this->connection->fetchOne($checkOldUrlsSelect);
if ($hasOldUrls) {
$this->connection->query(
$oldUrlsSelect->deleteFromSelect(
$this->resource->getTableName(self::TABLE_NAME)
)
);
}
}