From 357513d83dace491090fcb908d096ab390b6e49e Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Wed, 8 Apr 2015 14:44:34 -0400 Subject: [PATCH] Turn off ssl verification To work on ws6 --- Toolkit/Contacts/PassPort.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Toolkit/Contacts/PassPort.php b/Toolkit/Contacts/PassPort.php index 06d0cd0..9a4b7e0 100755 --- a/Toolkit/Contacts/PassPort.php +++ b/Toolkit/Contacts/PassPort.php @@ -634,9 +634,9 @@ class Toolkit_Contacts_PassPort // Returns response data instead of TRUE(1) curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // Use HTTP POST to send form data - curl_setopt($ch, CURLOPT_POSTFIELDS, rtrim($fields, "& ")); + curl_setopt($ch, CURLOPT_POSTFIELDS, rtrim($fields, "& ")); // Uncomment this line if you get no gateway response. ### - // curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); + curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); // Execute post and get results $resp = curl_exec($ch); curl_close($ch); -- 2.17.1