PHP CURL 未发送/接收任何数据-未定义符号:PR_GetEnvSecure

PHP CURL 未发送/接收任何数据-未定义符号:PR_GetEnvSecure

对于我来说,Curl 已经停止工作了。

我昨天在我的 AWS EC2 服务器上运行了一些更新,所以我觉得这就是原因,但我无法弄清楚。

我主要使用 Curl 将人员添加到各种 mailchimp 列表中。这些脚本现在都不起作用,并且我收到有关连接不安全的浏览器错误:

“无法显示您尝试查看的页面,因为无法验证所接收数据的真实性。”

我的 Apache 错误日志中也出现了以下看起来相关的错误:

/usr/sbin/httpd:符号查找错误:/usr/lib64/libnsssysinit.so:未定义符号:PR_GetEnvSecure

CURL 已安装等(见屏幕截图),当我从 Web 服务器上的命令行使用 curl 时,远程服务器会回复我...所以那里没有问题。

任何帮助都非常感谢。

丹尼。

  // Set API Key and list ID to add a subscriber
  $api_key = 'api key';
  $list_id = 'our list id';
  $dc = 'data center';

  /* ================
   * DESTINATION URL
   * ================
   */

  $url = 'https://' . $dc . '.api.mailchimp.com/3.0/lists/' . $list_id . '/members/';

  /* ================
   * DATA SETUP
   * ================
   */

  $pfb_data = array(
    'email_address' => '[email protected]',
    'status'        => 'pending',
    'merge_fields'  => array(
      'FNAME'       => 'First Name',
      'LNAME'       => 'Last Name',
    ),
    'interests' => array( 'Interest List ID' => true )
  );

  // Encode the data
  $encoded_pfb_data = json_encode($pfb_data);

  // Setup cURL sequence
  $ch = curl_init();

  /* ================
   * cURL OPTIONS
   * The tricky one here is the _USERPWD - this is how you transfer the API key over
   * _RETURNTRANSFER allows us to get the response into a variable which is nice
   * This example just POSTs, we don't edit/modify - just a simple add to a list
   * _POSTFIELDS does the heavy lifting
   * _SSL_VERIFYPEER should probably be set but I didn't do it here
   * ================
   */
  curl_setopt($ch, CURLOPT_URL, $url);
  curl_setopt($ch, CURLOPT_USERPWD, 'user:' . $api_key);
  curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  curl_setopt($ch, CURLOPT_TIMEOUT, 10);
  curl_setopt($ch, CURLOPT_POST, 1);
  curl_setopt($ch, CURLOPT_POSTFIELDS, $encoded_pfb_data);
  curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

  $results = curl_exec($ch); // store response
  $response = curl_getinfo($ch, CURLINFO_HTTP_CODE); // get HTTP CODE
  $errors = curl_error($ch); // store errors

  curl_close($ch);

  // Returns info back to jQuery .ajax or just outputs onto the page

  $results = array(
    'results' => $result_info,
    'response' => $response,
    'errors' => $errors
  );

  // Sends data back to the page OR the ajax() in your JS
  echo json_encode($results);

在此处输入图片描述

答案1

显然,问题出在最近发布的 CentOS 7 系统 NSS 软件包更新,导致出现 Aache 错误

/usr/sbin/httpd:符号查找错误:/lib64/libnsssysinit.so:未定义符号:PR_GetEnvSecure

通过重新启动 Apache 和 FPM 服务解决了该问题。

我通过重新启动 EC2 实例解决了该问题。

相关内容