Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note
titleAre you receiving a '-1' error?

This may be because PostalMethods only supports old SSL protocols and ciphers which may not be disabled on your server. You can force the use of SSL3 by adding this line of code:

$this->Http->setOption(CURLOPT_SSLVERSION, 3);

To components/delivery/postal_methods/postal_methods.php on line 233 just before:

$response = $this->Http->post(self::$url, $xml);

...