web-dev-qa-db-ja.com

PHP CURLがデータを送受信していません-未定義のシンボル:PR_GetEnvSecure

Curlが機能しなくなりました。

昨日AWSEC2サーバーでいくつかのアップデートを実行したので、それが原因だと感じていますが、理解できません。

私は主に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);

ここに画像の説明を入力してください

2
Danny Browne

どうやら問題は、Aacheエラーを引き起こしていたCentOS7システム用のNSSパッケージへの最近公開されたアップデートでした

/ usr/sbin/httpd:シンボルルックアップエラー:/lib64/libnsssysinit.so:未定義のシンボル:PR_GetEnvSecure

この問題は、ApacheおよびFPMサービスを再起動することで解決されました。

EC2インスタンスを再起動して問題を解決しました。

4
Danny Browne