<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=utf-8">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    FYI - FP on Linux<br>
    <br>
    As of Feb 28, 2018 Authorize.net is moving from TLS 1.1 to TLS 2.1.<br>
    <br>
    If you are using a curl script inside filepro, you must make sure
    you have the most recent version of curl. (yum update curl)<br>
    <br>
    Then just add <b><font color="#cc0000">--tlsv1.2</font></b><font
      color="#cc0000"><font color="#000000"> to your script.<br>
        <br>
        To check the curl version;<br>
        <br>
        <?php<br>
        $curl_info = curl_version();<br>
        echo $curl_info['ssl_version'];<br>
        ?><br>
        <br>
        To test your connection;<br>
        <br>
        <?php<br>
        $ch =
        curl_init('<a class="moz-txt-link-freetext" href="https://secure2.authorize.net/gateway/transact.dll">https://secure2.authorize.net/gateway/transact.dll</a>');<br>
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);<br>
      </font></font><font color="#cc0000"><font color="#000000"><span
          class="nroffip">curl_setopt($ch,CURL_SSLVERSION_TLSv1_2,true);<br>
        </span>curl_setopt($ch, CURLOPT_VERBOSE, true);<br>
        $data = curl_exec($ch);<br>
        curl_close($ch);<br>
        ?><br>
        <br>
        Hope this helps somebody,<br>
        <br>
        Richard D. Williams<br>
        <br>
      </font></font>
  </body>
</html>