Einzelnen Beitrag anzeigen
  #3 (permalink)  
Alt 31.01.2009, 11:07
moebelcom moebelcom ist offline
xt:Commerce Support Kunde
 
Registriert seit: 03.11.2008
Beiträge: 4
Standard

hallo, danke für die schnelle Antwort.
Habe mich genau an die Anleitung gehalten, kann auch im Admin alles beinstellen, bekomme auch die Meldung das moeybookers ok ist.

habe nur die includes/classes/payment.php am schluß abgeändert wegen paypal schaut nun so aus

// PayPal Express Giropay
function giropay_process() {
if (is_array($this->modules)) {
if (is_object($GLOBALS[$this->selected_module]) && ($GLOBALS[$this->selected_module]->enabled) ) {
return $GLOBALS[$this->selected_module]->giropay_process();
}
}
}

function get_error() {
if (is_array($this->modules)) {
if (is_object($GLOBALS[$this->selected_module]) && ($GLOBALS[$this->selected_module]->enabled) ) {
return $GLOBALS[$this->selected_module]->get_error();
}
}
}

function iframeAction() {
if (is_array($this->modules)) {
if (is_object($GLOBALS[$this->selected_module]) && ($GLOBALS[$this->selected_module]->enabled) ) {
return $GLOBALS[$this->selected_module]->iframeAction();
}
}
}
}
?>

kann da der Fehler liegen?
Mit Zitat antworten