From a72ea747457f792b7308e7ba8cfd082ceb5240d3 Mon Sep 17 00:00:00 2001 From: Pinga <121483313+getpinga@users.noreply.github.com> Date: Wed, 8 Mar 2023 18:44:23 +0200 Subject: [PATCH] bugfix --- epp.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/epp.php b/epp.php index 7b652e7..de3c9e6 100644 --- a/epp.php +++ b/epp.php @@ -1882,9 +1882,9 @@ function connect($host, $port = 700, $ssl, $timeout = 30) 'verify_peer' => $ssl['verify_peer'], 'verify_peer_name' => false, 'verify_host' => false, - //'cafile' => __DIR__ . '/cafile/' . $ssl['cafile'], - 'local_cert' => __DIR__ . '/local_cert/' . $ssl['local_cert'], - 'local_pk' => __DIR__ . '/local_pk/' . $ssl['local_pk'], + //'cafile' => __DIR__ . '/' . $ssl['cafile'], + 'local_cert' => __DIR__ . '/' . $ssl['local_cert'], + 'local_pk' => __DIR__ . '/' . $ssl['local_pk'], //'passphrase' => $ssl['passphrase'], 'allow_self_signed' => true )