简体   繁体   English

Magento 1.7,Google购物/产品/内容

[英]Magento 1.7, Google Shopping / Products / Content

I have this problem: 我有这个问题:

I'm using this Google Content API for Shopping 1.7.0.0 (http://www.magentocommerce.com/magento-connect/Magento+Core/extension/6887/mage_googleshopping) on Magento 1.7.0.2 but when I submit products it stuck after first one. 我在Magento 1.7.0.2上使用这个Google Content API for Shopping 1.7.0.0(http://www.magentocommerce.com/magento-connect/Magento+Core/extension/6887/mage_googleshopping)但是当我提交产品时它卡住了在第一个之后。

All options and attributes are set and its all fine. 所有选项和属性都已设置,并且一切正常。 I even get first of products in Google Merchant Products list but script stops after first one and I get this massage: 我甚至在Google Merchant Products列表中获得了第一个产品,但是在第一个产品之后脚本停止了,我得到了这个按摩:

Google Shopping synchronization process is running with a rotating loading icon on the submit button and that could run all day long. Google购物同步过程正在运行 ,并且提交按钮有一个旋转加载图标,可以全天运行。

I can reset this process with: 我可以用以下方法重置此过程:

update core_flag set state='0' where flag_code='googleshopping'; 

PHP memory limit, execution time and max post are highest possible values, I don't think that's the problem because this happen even if I try to submit 1 or 2 items. PHP内存限制,执行时间和最大发布是最高可能的值,我不认为这是问题因为即使我尝试提交1或2项也会发生这种情况。

Since last week, I've been seeing the same problem on Magento Enterprise 1.12.0.2 with the same Google Content API for Shopping installed. 从上周开始,我在Magento Enterprise 1.12.0.2上看到了相同的问题,安装了相同的Google Content API for Shopping。 It's been working fine for product sets in three stores for many months. 三个商店的产品套装已经好几个月了。 Now, I was able to complete a synchronize to delete some expired products, but any attempt to add products produces the same Google Shopping synchronization process is running with a rotating loading icon that you're seeing. 现在,我能够完成同步以删除一些过期的产品,但任何添加产品的尝试都会产生相同的Google购物同步过程,并且正在运行您正在看到的旋转加载图标。 We've had similar non-productive results from increasing memory limits etc. The problem seems to occur whether 1 or many items get submitted. 我们从增加内存限制等方面得到了类似的非生产性结果。无论是提交1个还是多个项目,似乎都会出现问题。 I've been using the same process reset you have. 我一直在使用相同的过程重置。 I was able to add one product last week that had Type set. 我上周能够添加一个具有Type set的产品。 Although the Summary of Product Attributes http://support.google.com/merchants/bin/answer.py?hl=en&answer=1344057#US shows Product type as optional for non-apparel products, could they have changed this to required without telling us all? 虽然产品属性摘要http://support.google.com/merchants/bin/answer.py?hl=zh-CN&answer=1344057#US将产品类型显示为非服装产品的可选产品,但是他们是否可以将此更改为告诉我们所有人?

Good news - per thread http://www.magentocommerce.com/boards/viewthread/303448/#t421584 好消息 - 每个主题http://www.magentocommerce.com/boards/viewthread/303448/#t421584

made the change to GoogleShopping/Model/Service/Item.php from line 64: which was: 从第64行更改为GoogleShopping / Model / Service / Item.php:这是:

$published = $this->convertContentDateToTimestamp($entry->getPublished()->getText());

and per the thread is now: 并且每个线程现在是:

$published = date(); $ published = date();

and our products now add into GoogleShopping again, en masse. 现在,我们的产品再次加入到GoogleShopping中。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM