我知道有关于此的问题,但到目前为止,没有人帮助我解决我的问题。
我有一个PHP脚本,其工作是发送预定的电子邮件。它是通过调用我通过cURL控制的Web服务来实现的。
在浏览器中运行,它运行正常。通过CRON运行,cURL响应为空。它永远不会到达Web服务;我知道这是因为我联系了WS后写了一个文本文件。如果您通过浏览器访问,而不是通过CRON访问它。
我知道CRON在不同的环境中运行,而且我不依赖任何环境变量,例如$_SERVER
。 require()
的路径也不是问题,因为它成功地从该文件中获取数据以连接到数据库。
This question建议添加以下cURL选项,我已经完成,但没有骰子:
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
这是我的PHP脚本:
//prep
define('WS_URL', 'http://mywebservicedomain.com/index.php/web_service');
require '../application/config/database.php';
$db = new mysqli($db['default']['hostname'], $db['default']['username'], $db['default']['password'], $db['default']['database']) or die('failed to connect to DB');
//get scheduled e-mails
$res = $db->query('SELECT * FROM _cron_emails WHERE send_when < NOW()');
//process each...
while ($email_arr = $res->fetch_assoc()) {
//...get API connection info
$api_accnt = $db->query($sql = 'SELECT id, secret FROM _api_accounts WHERE project = "'.$email_arr['project'].'"');
$api_accnt = $api_accnt->fetch_assoc();
//...recreate $_POST env
$tmp = json_decode($email_arr['post_vars'], 1);
$_POST = array();
foreach($tmp as $key => $val) $_POST[$key] = !is_array($val) ? $val : implode(',', $val);
//...call API to send e-mail
$ch = curl_init($url = WS_URL.'/send_scheduled_email/'.$email_arr['email_id'].'/'.$email_arr['store_id'].'/'.$email_arr['item_id']);
curl_setopt_array($ch, array(
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POST => true,
CURLOPT_SAFE_UPLOAD => true,
CURLOPT_SSL_VERIFYHOST => 1, //<-- tried adding this
CURLOPT_SSL_VERIFYPEER => 1, //<-- ditto
CURLOPT_POSTFIELDS => array_merge($_POST, array(
'api_key' => $api_accnt['id'],
'api_secret' => $api_accnt['secret'],
))
));
$resp = curl_exec($ch); //<-- empty when CRON
//if e-mail was sent OK, or decider script said it was ineligible, delete it from the queue
if (($resp == 'ok' || $resp == 'ineligible'))
$db->query('DELETE FROM _cron_emails WHERE id = '.$email_arr['id'].' LIMIT 1');
}
有没有人知道为什么只有在CRON中运行时才能通过cURL连接到我的网络服务?
以下是CRON的工作:
/usr/bin/php /home/desyn/public_html/cron/send_scheduled_emails.php
答案 0 :(得分:0)
最后,结果证明这是一个非常特别的问题。我怀疑它会给别人带来太多帮助,但我把它留在这里以防万一。
基本上,我的服务器不喜欢cURL自己,通过域名。
CRON脚本中cURL调用的服务器与运行CRON任务的服务器相同(但是不同的帐户和网站。)
通过浏览器证明这不是一个问题;只能通过CRON。
更改cURL请求以使用服务器的本地IP而不是使用域,解决了这个问题。