Add documentation about SSL on PPT2LP remote server

remotes/angel/1.11.x
Yannick Warnier 8 years ago
parent 99ea04106e
commit 21d485eeb0
  1. 4
      main/lp/openoffice_document.class.php

@ -219,6 +219,10 @@ abstract class OpenofficeDocument extends learnpath
); );
if (substr($ppt2lp_host, 0, 5) === 'https') { if (substr($ppt2lp_host, 0, 5) === 'https') {
$options['ssl_method'] = SOAP_SSL_METHOD_TLS; $options['ssl_method'] = SOAP_SSL_METHOD_TLS;
// If using SSL, please note that *not* supporting the SSLv2
// (broken in terms of security), the server tends to generate
// the following issue:
// SoapClient::__doRequest(): SSL: Connection reset by peer
} }
$client = new SoapClient(null, $options); $client = new SoapClient(null, $options);
$result = ''; $result = '';

Loading…
Cancel
Save