Moin zusammen,
wir nutzen das Billsafe Plugin vomn Ruhrmedia in der Version 101
Soweit klappt auch alles gut, allerdings will uns Google nicht Zertifizieren weil wohl das Plugin unverschlüsselt Daten überträgt.
Hat jemand eine Idee wie man das einstellen kann?
Habe ich Plugin die Datei HttpClient.php gefunden, da steht drin:
/**
* Set URL the client connects to.
* SSL, port and authentication can be set in the URL.
*
* examples:
* dummy.com - Informationen zum Thema dummy. Diese Website steht zum Verkauf!
* https://www.dummy.com/index.php
* dummy.com - Informationen zum Thema dummy. Diese Website steht zum Verkauf!
* dummy.com - Informationen zum Thema dummy. Diese Website steht zum Verkauf!
*
* @param string $url
* @throws Billsafe_Exception
*/
public function __construct($url)
{
$parsedUrl = parse_url($url);
if ( !is_array($parsedUrl)
|| !isset($parsedUrl['host']))
{
throw new Billsafe_Exception('Invalid url specified');
}
$this->_host = $parsedUrl['host'];
Kann das damit zu tun haben?
Würd mich riesig über jede Hilfe freuen
Lg
Sascha
wir nutzen das Billsafe Plugin vomn Ruhrmedia in der Version 101
Soweit klappt auch alles gut, allerdings will uns Google nicht Zertifizieren weil wohl das Plugin unverschlüsselt Daten überträgt.
Hat jemand eine Idee wie man das einstellen kann?
Habe ich Plugin die Datei HttpClient.php gefunden, da steht drin:
/**
* Set URL the client connects to.
* SSL, port and authentication can be set in the URL.
*
* examples:
* dummy.com - Informationen zum Thema dummy. Diese Website steht zum Verkauf!
* https://www.dummy.com/index.php
* dummy.com - Informationen zum Thema dummy. Diese Website steht zum Verkauf!
* dummy.com - Informationen zum Thema dummy. Diese Website steht zum Verkauf!
*
* @param string $url
* @throws Billsafe_Exception
*/
public function __construct($url)
{
$parsedUrl = parse_url($url);
if ( !is_array($parsedUrl)
|| !isset($parsedUrl['host']))
{
throw new Billsafe_Exception('Invalid url specified');
}
$this->_host = $parsedUrl['host'];
Kann das damit zu tun haben?
Würd mich riesig über jede Hilfe freuen
Lg
Sascha