Php Magento cron试图联系Paypal?

Php Magento cron试图联系Paypal?,php,magento,paypal,cron,Php,Magento,Paypal,Cron,一个客户端移动了服务器,并且magento cron.php从未设置。当我启用它们时,我发现Magento正在向paypal发布: Cron/usr/bin/php-q/home/dev/public_html/Cron.php * About to connect() to api-3t.paypal.com port 443 (#0) * Trying 173.0.88.69... * connected * Connected to api-3t.paypal.com (173.0.8

一个客户端移动了服务器,并且magento cron.php从未设置。当我启用它们时,我发现Magento正在向paypal发布:

Cron/usr/bin/php-q/home/dev/public_html/Cron.php

* About to connect() to api-3t.paypal.com port 443 (#0)
*   Trying 173.0.88.69...
* connected
* Connected to api-3t.paypal.com (173.0.88.69) port 443 (#0)
* successfully set certificate verify locations:
*   CAfile: /etc/pki/tls/certs/ca-bundle.crt
  CApath: none
* SSL connection using DES-CBC3-SHA
* Server certificate:
*        subject: C=US; ST=California; L=San Jose; O=PayPal, Inc.; OU=PayPal Production; CN=api-3t.paypal.com
*        start date: 2013-07-03 00:00:00 GMT
*        expire date: 2015-09-18 23:59:59 GMT
*        subjectAltName: api-3t.paypal.com matched
*        issuer: C=US; O=VeriSign, Inc.; OU=VeriSign Trust Network; OU=Terms of use at https://www.verisign.com/rpa (c)10; CN=VeriSign Class 3 Secure Server CA - G3
*        SSL certificate verify ok.
> POST /nvp HTTP/1.1
Host: api-3t.paypal.com
Accept: */*
Content-Length: 225
Content-Type: application/x-www-form-urlencoded

* upload completely sent off: 225 out of 225 bytes
< HTTP/1.1 200 OK
< Date: Tue, 25 Mar 2014 01:45:04 GMT
< Server: Apache
< Content-Length: 240
< Connection: close
< Content-Type: text/plain; charset=utf-8
<
* Closing connection #0
*即将()连接到api-3t.paypal.com端口443(#0)
*正在尝试173.0.88.69。。。
*连接的
*已连接到api-3t.paypal.com(173.0.88.69)端口443(#0)
*已成功设置证书验证位置:
*CAfile:/etc/pki/tls/certs/ca-bundle.crt
卡帕斯:没有
*使用DES-CBC3-SHA的SSL连接
*服务器证书:
*主题:C=美国;ST=加利福尼亚州;L=圣何塞;O=贝宝公司。;OU=贝宝生产;CN=api-3t.paypal.com
*开始日期:2013-07-03 00:00:00 GMT
*过期日期:2015-09-18 23:59:59 GMT
*主题名称:api-3t.paypal.com匹配
*发行人:C=美国;O=VeriSign公司。;OU=VeriSign信任网络;OU=使用条款https://www.verisign.com/rpa (c) 十,;CN=VeriSign 3级安全服务器CA-G3
*SSL证书验证正常。
>POST/nvp HTTP/1.1
主持人:api-3t.paypal.com
接受:*/*
内容长度:225
内容类型:application/x-www-form-urlencoded
*完全发送的上载:225字节中的225字节
有一堆是cron作业输出的。我立即禁用了cron

就我个人而言,我找不到: 1:magento联系paypal的任何原因(这是一个自设置以来没有完整订单的开发服务器[从生产服务器的副本]) 2:Magento或Payal中的任何日志都可以告诉我它到底发布了什么

有人能解释一下吗?我们真的需要让cron工作起来,这样我们就可以运行站点地图生成,但我不愿意让它无缘无故地与Paypal对话

我们目前正在使用Paypal Payments Pro和Express Checkout

谢谢,
Mike

这是从paypal获取报告的标准Magento cron作业,不用担心。你是对的,这是贝宝的工作。它放在app/code/core/Mage/Paypal/etc/config.xml中:

<crontab>
   <jobs>
      <paypal_fetch_settlement_reports>
         <run>
            <model>paypal/observer::fetchReports</model>
         </run>
      </paypal_fetch_settlement_reports>
   </jobs>
</crontab>

paypal/observer::fetchReports

启用定期收费?我们不出售任何基于订阅的产品。在哪里可以找到该设置?可能是一个具有自己的cron的模块。您可以添加Aoe调度程序,快速查看正在运行的内容以及何时保存您禁用整个cron-感谢McNab,在与Magento Connect发生冲突并失败后,我终于加载了该扩展,这非常棒。有一个“paypal\u fetch\u settlement\u reports”cron,但由于paypal设置中未启用该选项,因此不确定它是否正在连接。但我将禁用任何可疑的cron,并让它们一个接一个地查看是哪一个在这么做。谢谢